/**
 * Flavor Affiliate — Dark Theme Override v2
 * Premium dark design inspired by Candy AI / modern SaaS
 * Applied ON TOP of GeneratePerf / GeneratePress.
 */

/* ─── CSS Variables ─── */
:root {
    --flavor-bg: #0c0c14;
    --flavor-bg-elevated: #13131f;
    --flavor-bg-card: rgba(255, 255, 255, 0.04);
    --flavor-border: rgba(255, 255, 255, 0.07);
    --flavor-border-hover: rgba(255, 255, 255, 0.15);
    --flavor-text: #c8cdd5;
    --flavor-text-muted: #6b7280;
    --flavor-text-heading: #f0f2f5;
    --flavor-glow: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.12);
}

/* ─── Base ─── */
body {
    background-color: var(--flavor-bg);
    color: var(--flavor-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Header ─── */
.site-header {
    background-color: rgba(12, 12, 20, 0.85) !important;
    border-bottom: 1px solid var(--flavor-border);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

.site-header a,
.main-navigation a {
    color: var(--flavor-text);
    transition: color 0.2s;
}

.main-navigation a:hover {
    color: var(--flavor-accent, #E91E8C);
}

/* ─── Footer ─── */
.site-footer {
    background-color: #08080e !important;
    color: var(--flavor-text-muted);
    border-top: 1px solid var(--flavor-border);
}

.site-footer a { color: var(--flavor-text); }
.site-footer a:hover { color: var(--flavor-accent, #E91E8C); }

.site-info, .site-info a, .footer-bar {
    background-color: #08080e !important;
    color: var(--flavor-text-muted) !important;
}

.site-info a[href*="generatepress"] { display: none !important; }

/* ─── Content Area ─── */
.inside-article,
.inside-page-header,
.sidebar .inside-right-sidebar,
.inside-footer-widgets,
article,
.page-header {
    background-color: var(--flavor-bg) !important;
    color: var(--flavor-text) !important;
}

.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.separate-containers .paging-navigation,
.one-container .site-content {
    background-color: var(--flavor-bg-elevated) !important;
    color: var(--flavor-text) !important;
    border: 1px solid var(--flavor-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

/* ─── Typography ─── */
.entry-content,
.entry-content p,
.entry-content li {
    color: var(--flavor-text);
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--flavor-text-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.entry-content {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.entry-content h2 {
    margin-top: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--flavor-border);
    font-size: 1.5rem;
}

.entry-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* ─── Links ─── */
.entry-content a {
    color: var(--flavor-accent, #E91E8C);
    text-decoration: none;
    border-bottom: 1px solid rgba(233, 30, 140, 0.25);
    transition: border-color 0.2s, color 0.2s;
}

.entry-content a:hover {
    border-bottom-color: var(--flavor-accent, #E91E8C);
}

/* Exclude CTA buttons from link styling */
.entry-content a.flavor-cta__btn,
.entry-content .flavor-cta a,
.entry-content a.flavor-cta--compact,
.entry-content a.flavor-aff-link {
    border-bottom: none !important;
}

.entry-content .flavor-cta a {
    color: #0c0c14 !important;
}

/* ─── Lists ─── */
.entry-content ul { padding-left: 0; list-style: none; }

.entry-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.entry-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--flavor-accent, #E91E8C);
}

.entry-content ol { padding-left: 1.25rem; }

/* ─── Images ─── */
.entry-content img {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    margin: 1.5rem 0;
}

/* ─── Blockquote ─── */
.entry-content blockquote {
    border-left: 3px solid var(--flavor-accent, #E91E8C);
    background: var(--flavor-bg-card);
    padding: 1.25rem 1.5rem;
    color: var(--flavor-text);
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

/* ─── Code ─── */
.entry-content code {
    background: rgba(255, 255, 255, 0.06);
    color: var(--flavor-accent, #E91E8C);
    padding: 0.15em 0.45em;
    border-radius: 5px;
    font-size: 0.9em;
}

.entry-content pre {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 12px;
    padding: 1.25rem;
}

/* ─── Tables ─── */
.entry-content table { border-collapse: collapse; width: 100%; }

.entry-content th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--flavor-text-heading);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.entry-content td {
    border-bottom: 1px solid var(--flavor-border);
    padding: 0.75rem 1rem;
    color: var(--flavor-text);
}

.entry-content tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ─── Glass Cards (shared) ─── */
.flavor-review-header,
.flavor-comparison-cards,
.flavor-listicle-item,
.flavor-alternative-card {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.flavor-review-header:hover,
.flavor-listicle-item:hover,
.flavor-alternative-card:hover {
    border-color: var(--flavor-border-hover);
    box-shadow: 0 0 30px var(--flavor-glow);
}

/* ─── Sidebar ─── */
.widget {
    background: var(--flavor-bg-card) !important;
    border: 1px solid var(--flavor-border) !important;
    border-radius: 12px;
    padding: 1.25rem;
    color: var(--flavor-text) !important;
}

.widget-title { color: var(--flavor-text-heading) !important; }
.widget a, .widget li, .widget li a { color: var(--flavor-text) !important; }
.widget a:hover, .widget li a:hover { color: var(--flavor-accent, #E91E8C) !important; }

.inside-right-sidebar .widget,
.inside-left-sidebar .widget {
    background-color: var(--flavor-bg-card) !important;
}

/* ─── Search ─── */
.search-field,
.search-form .search-field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--flavor-border) !important;
    color: var(--flavor-text) !important;
    border-radius: 8px !important;
}

.search-form .search-submit,
button.search-submit {
    background: var(--flavor-gradient, linear-gradient(135deg, #E91E8C, #9333EA)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
}

/* ─── Forms ─── */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--flavor-border);
    color: var(--flavor-text);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--flavor-accent, #E91E8C);
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

/* ─── Disclosure ─── */
.flavor-disclosure {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--flavor-text-muted);
    margin-bottom: 1.5rem;
}

/* ─── Network Footer ─── */
.flavor-network-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.78rem;
    color: var(--flavor-text-muted);
}

.flavor-network-footer a { color: var(--flavor-text-muted); }
.flavor-network-footer a:hover { color: var(--flavor-accent, #E91E8C); }

.flavor-network-link {
    font-size: 0.88rem;
    color: var(--flavor-text-muted);
}

/* ─── Breadcrumbs / Meta ─── */
.rank-math-breadcrumb,
.entry-meta { color: var(--flavor-text-muted); }

.rank-math-breadcrumb a,
.entry-meta a { color: var(--flavor-text); }

/* ─── Comments ─── */
.comment-body {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 12px;
    padding: 1rem;
}

.comment-author { color: var(--flavor-text-heading); }

/* ─── Related Posts ─── */
.flavor-related-posts {
    margin: 3rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--flavor-border);
}

.flavor-related-posts__title {
    color: var(--flavor-text-heading);
    font-size: 1.3rem;
    margin: 0 0 1rem;
}

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

.flavor-related-card {
    display: block;
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 14px;
    padding: 1.25rem;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.flavor-related-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px var(--flavor-glow);
}

.flavor-related-card__title {
    color: var(--flavor-text-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.flavor-related-card__excerpt {
    color: var(--flavor-text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.flavor-related-card__link {
    color: var(--flavor-accent, #E91E8C);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ─── Contextual Link ─── */
.flavor-contextual-link {
    background: var(--flavor-bg-card);
    border-left: 3px solid var(--flavor-accent, #E91E8C);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    border-radius: 0 10px 10px 0;
}

.flavor-contextual-link a {
    color: var(--flavor-accent, #E91E8C);
    font-weight: 600;
}

/* ─── Homepage Hero ─── */
@keyframes flavor-fadein {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.flavor-hero {
    text-align: center;
    padding: 4rem 1.5rem 4.5rem;
    background:
        radial-gradient(ellipse at 50% -20%, rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    animation: flavor-fadein 0.7s ease-out;
    position: relative;
}

.flavor-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.flavor-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--flavor-text-heading);
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.flavor-hero__subtitle {
    color: var(--flavor-text-muted);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.flavor-hero__cta { margin-bottom: 1.25rem; }

.flavor-cta__btn--hero {
    font-size: 1.1rem;
    padding: 0.95rem 2.5rem;
}

.flavor-hero__trust {
    color: var(--flavor-text-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* ─── Trust / E-E-A-T ─── */
.flavor-trust {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 16px;
}

.flavor-trust__author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.flavor-trust__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--flavor-glow);
}

.flavor-trust__info h3 {
    color: var(--flavor-text-heading);
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.flavor-trust__info p {
    color: var(--flavor-text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flavor-trust__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.flavor-trust__stat strong {
    display: block;
    color: var(--flavor-accent, #E91E8C);
    font-size: 1.4rem;
    font-weight: 800;
}

.flavor-trust__stat span {
    color: var(--flavor-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Section Titles ─── */
.flavor-section-title {
    color: var(--flavor-text-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

/* ─── Featured Posts Grid ─── */
.flavor-featured-section { margin: 2.5rem 0; }

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

.flavor-featured-card {
    display: block;
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.flavor-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--flavor-glow);
}

.flavor-featured-card__img {
    height: 170px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.06);
}

.flavor-featured-card__body { padding: 1.25rem; }

.flavor-featured-card__title {
    color: var(--flavor-text-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.flavor-featured-card__excerpt {
    color: var(--flavor-text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.flavor-featured-card__rating {
    color: #facc15;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ─── Top Picks ─── */
.flavor-top-picks { margin: 2.5rem 0; }

.flavor-top-picks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.flavor-top-pick-card {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}

.flavor-top-pick-card:hover {
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.35);
    box-shadow: 0 0 30px var(--flavor-glow);
    transform: translateY(-2px);
}

.flavor-top-pick-card__rank {
    display: inline-block;
    background: var(--flavor-gradient, linear-gradient(135deg, #E91E8C, #9333EA));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.flavor-top-pick-card__name {
    color: var(--flavor-text-heading);
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
}

.flavor-top-pick-card__badge {
    display: inline-block;
    background: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.12);
    color: var(--flavor-accent, #E91E8C);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.flavor-top-pick-card__payout {
    color: var(--flavor-text-muted);
    font-size: 0.82rem;
    display: block;
    margin-bottom: 1rem;
}

/* ─── Categories Grid ─── */
.flavor-categories-section { margin: 2.5rem 0; }

.flavor-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.flavor-category-card {
    display: block;
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.flavor-category-card:hover {
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.35);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 24px var(--flavor-glow);
}

.flavor-category-card h3 {
    color: var(--flavor-text-heading);
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.flavor-category-card span {
    color: var(--flavor-text-muted);
    font-size: 0.8rem;
}

/* ─── FAQ Accordion ─── */
.flavor-faq { margin: 3rem 0; }

.flavor-faq__item {
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color 0.25s;
}

.flavor-faq__item[open] {
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.3);
}

.flavor-faq__question {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    color: var(--flavor-text-heading);
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flavor-faq__question::-webkit-details-marker { display: none; }
.flavor-faq__question::marker { display: none; content: ""; }

.flavor-faq__question::after {
    content: "\25BC";
    font-size: 0.65rem;
    color: var(--flavor-text-muted);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.flavor-faq__item[open] .flavor-faq__question::after {
    transform: rotate(180deg);
    color: var(--flavor-accent, #E91E8C);
}

.flavor-faq__answer { padding: 0 1.25rem 1.1rem; }

.flavor-faq__answer p {
    color: var(--flavor-text);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--flavor-bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.22); }

/* ─── Latest Cards Grid ─── */
.flavor-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.flavor-card {
    display: block;
    background: var(--flavor-bg-card);
    border: 1px solid var(--flavor-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.flavor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--flavor-accent-rgb, 233, 30, 140), 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--flavor-glow);
}

.flavor-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-card__placeholder {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--flavor-accent, #E91E8C);
    opacity: 0.5;
}

.flavor-card__title {
    color: var(--flavor-text-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1rem;
    margin: 0;
    line-height: 1.35;
}

.entry-content a.flavor-card,
.entry-content a.flavor-card:hover {
    border-bottom: none !important;
    color: inherit !important;
}

@media (max-width: 480px) {
    .flavor-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .flavor-card__title {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem;
    }
}

/* ─── Smooth scroll + transitions ─── */
* { scroll-behavior: smooth; }
a { transition: color 0.2s, border-color 0.2s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .site-content { padding: 0 0.75rem; }
    .entry-content h2 { font-size: 1.35rem; }
    .entry-content h3 { font-size: 1.15rem; }
    .flavor-hero { padding: 2.5rem 1rem 3rem; }

    .flavor-related-posts__grid,
    .flavor-top-picks__grid { grid-template-columns: 1fr; }

    .flavor-trust__author { flex-direction: column; text-align: center; }
    .flavor-trust__stats { gap: 0.5rem; }

    .flavor-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .flavor-categories-grid { grid-template-columns: repeat(2, 1fr); }

    .separate-containers .inside-article {
        border-radius: 12px !important;
        margin: 0 0.25rem !important;
    }
}

@media (max-width: 480px) {
    .flavor-featured-grid { grid-template-columns: 1fr; }
}

/* ─── Social Share Buttons — Compact Inline Style ─── */
.social-share {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 2em 0 !important;
    justify-content: center !important;
}

.social-share > .button {
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
    font-size: 0.8em !important;
    background: var(--flavor-bg-elevated, #13131f) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex: none !important;
}

.social-share > .button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

.social-share > .button svg {
    width: 16px !important;
    height: 16px !important;
}

/* Hide less useful share buttons on dark theme */
.social-share .button-snapchat {
    display: none !important;
}

/* Specific hover colors per platform */
.social-share .button-facebook:hover { background: rgba(23, 119, 242, 0.15) !important; }
.social-share .button-twitter:hover { background: rgba(29, 161, 242, 0.15) !important; }
.social-share .button-pinterest:hover { background: rgba(230, 0, 35, 0.15) !important; }
.social-share .button-whatsapp:hover { background: rgba(5, 205, 81, 0.15) !important; }
.social-share .button-linkedin:hover { background: rgba(10, 102, 194, 0.15) !important; }
.social-share .button-telegram:hover { background: rgba(36, 161, 222, 0.15) !important; }
.social-share .button-copy-link:hover { background: rgba(255, 255, 255, 0.15) !important; }

/* Fix snapchat icon visibility on dark bg */
.button-snapchat .icon { fill: #fffc00 !important; }
