/*
Theme Name: AquaMiracle
Theme URI: https://aquamiracle.example
Author: AquaMiracle
Author URI: https://aquamiracle.example
Description: Custom company homepage theme for AquaMiracle (V7 brand-aligned).
Version: 0.2.0
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: aquamiracle
*/

/* ----------------------------------------
   V7 Design Tokens
   ---------------------------------------- */
:root {
    --brand-deep: #0E3A4D;
    --brand-darker: #0A2A38;
    --bg-base: #FBFCFD;
    --bg-band: #F2F8FA;
    --stroke: #E0EBEE;
    --ink: #1F2A2F;
    --muted: #5B6A70;
    --on-dark: #FBFCFD;
    --on-dark-muted: #C9D7DC;

    --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background: var(--bg-base);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* ----------------------------------------
   1. banner7 — top trust bar (#0E3A4D)
   ---------------------------------------- */
.banner7 {
    background: var(--brand-deep);
    color: var(--on-dark);
    padding: 8px 40px;
    font-size: 12px;
    letter-spacing: 0.06em;
}
.banner7-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.banner7-item { color: var(--on-dark); opacity: 0.92; }
.banner7-divider {
    width: 1px; height: 12px;
    background: rgba(251, 252, 253, 0.28);
}

/* ----------------------------------------
   2. nav7 — light nav (#FBFCFD)
   ---------------------------------------- */
.nav7 {
    background: var(--bg-base);
    border-bottom: 1px solid var(--stroke);
    padding: 18px 44px;
    position: sticky;
    top: 0;
    z-index: 20;
}
.nav7-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.nav7 .brand {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
}
.site-logo {
    height: 40px;
    width: auto;
    display: block;
}
.nav7 nav ul,
.nav7 .menu {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav7 nav a,
.nav7 .menu a {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 200ms;
}
.nav7 nav a:hover,
.nav7 .menu a:hover { color: var(--brand-deep); }
.nav7 .nav-cta {
    padding: 10px 18px;
    background: var(--brand-deep);
    color: var(--on-dark);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.nav7 .nav-cta:hover { background: var(--brand-darker); color: var(--on-dark); }
.nav7 .nav-cta.btn-amazon {
    background: #F2A93B;
    color: #0A2A38;
}
.nav7 .nav-cta.btn-amazon:hover {
    background: #E69A2D;
    color: #0A2A38;
}

/* ----------------------------------------
   Common section primitives
   ---------------------------------------- */
.section-band-light { background: var(--bg-base); }
.section-band-tint  { background: var(--bg-band); }
.section-band-dark  { background: var(--brand-deep); color: var(--on-dark); }

.section-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-deep);
    font-style: normal;
    margin-bottom: 12px;
}
.section-band-dark .eyebrow,
.amazon-cta .eyebrow { color: var(--on-dark); opacity: 0.85; }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--brand-deep);
    letter-spacing: -0.015em;
    line-height: 1.1;
}
.section-band-dark h1,
.section-band-dark h2,
.section-band-dark h3,
.amazon-cta h1,
.amazon-cta h2,
.amazon-cta h3 { color: var(--on-dark); }

p { color: var(--muted); }
.section-band-dark p,
.amazon-cta p { color: var(--on-dark-muted); }

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--brand-deep);
    color: var(--on-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: transform 200ms, background 200ms;
}
.btn:hover { background: var(--brand-darker); transform: translateY(-1px); color: var(--on-dark); }
.btn-outline {
    background: transparent;
    color: var(--on-dark);
    border: 1px solid rgba(251, 252, 253, 0.6);
}
.btn-outline:hover { background: rgba(251, 252, 253, 0.1); }

.btn-ghost-on-dark {
    background: transparent;
    color: var(--on-dark);
    border: 1px solid rgba(251, 252, 253, 0.6);
}
.btn-ghost-on-dark:hover {
    background: rgba(251, 252, 253, 0.1);
    color: var(--on-dark);
}

/* ----------------------------------------
   3. Hero (680px, hero.png + vertical teal gradient)
   ---------------------------------------- */
.hero {
    position: relative;
    height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--on-dark);
    background: var(--brand-deep);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(14,58,77,0) 0%, rgba(14,58,77,0.5) 50%, rgba(14,58,77,0.8) 100%);
    z-index: 2;
}
.hero img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 3;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 80px;
    max-width: 760px;
}
.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(251,252,253,0.45);
    border-radius: 999px;
    color: var(--on-dark);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(14,58,77,0.25);
}
.hero h1 {
    color: var(--on-dark);
    font-size: clamp(44px, 6.5vw, 76px);
    line-height: 1.04;
    margin-bottom: 20px;
    max-width: 720px;
}
.hero p {
    color: var(--on-dark-muted);
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    letter-spacing: 0.02em;
}
.hero-rating .stars {
    color: #F2A93B;
    letter-spacing: 2px;
    font-size: 15px;
}

/* ----------------------------------------
   4. Values — band-tint, 3-col narrative props
   ---------------------------------------- */
.values {
    background: var(--bg-band);
    padding: 56px 64px;
}
.values-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}
.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.value-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--brand-deep);
    margin-bottom: 20px;
}
.value-pill-text {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    color: #7dd3db;
    letter-spacing: 0.02em;
}
.value-pill-glyph {
    width: 18px;
    height: 18px;
    display: block;
}
.value-item h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-deep);
    margin: 0;
}
.value-item p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* ----------------------------------------
   5. Ecosystem — bg-base, padding 56/80, gap 40
   ---------------------------------------- */
.ecosystem {
    background: var(--bg-base);
    padding: 56px 80px;
}
.ecosystem-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ecosystem-header { max-width: 720px; }
.ecosystem-header-centered {
    text-align: center;
    margin: 0 auto;
}
.ecosystem-header h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    margin-bottom: 12px;
}
.ecosystem-header p { font-size: 16px; max-width: 600px; }
.ecosystem-header-centered p { margin-left: auto; margin-right: auto; }

.eco-subdivider {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-deep);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--stroke);
    margin-top: 8px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ecosystem-grid.eco-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.eco-card {
    position: relative;
    display: block;
    min-height: 280px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--brand-deep);
    background-size: cover;
    background-position: center;
    color: var(--on-dark);
    transition: transform 220ms, box-shadow 220ms;
    isolation: isolate;
}
.eco-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}
.eco-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(14,58,77,0.20);
}
.eco-card-eyebrow {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 2;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
}
.eco-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--on-dark);
    font-size: 13px;
    backdrop-filter: blur(2px);
}
.eco-card-text {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.eco-card-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--on-dark);
    line-height: 1.15;
}
.eco-card-sub {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* ----------------------------------------
   6. Featured Products — band-tint, padding 56/80, gap 32
   ---------------------------------------- */
.featured {
    background: var(--bg-band);
    padding: 56px 80px;
}
.featured-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.featured-header { max-width: 100%; }
.featured-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.featured-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}
.featured-storefront-link {
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.featured-storefront-link:hover { color: var(--brand-darker); text-decoration: underline; }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.featured-grid.featured-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.product-card {
    background: var(--bg-base);
    border: 1px solid var(--stroke);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms, box-shadow 220ms;
}
.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(14,58,77,0.12);
}
.product-card .img {
    background: var(--bg-base);
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.product-card .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card .body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card .product-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-deep);
}
.product-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--brand-deep);
}
.product-card .product-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}
.product-card .product-stars span[aria-hidden="true"] {
    color: #F2A93B;
    font-size: 14px;
}
.product-card .amazon-link {
    display: block;
    padding: 14px 20px;
    border-top: 1px solid var(--stroke);
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.product-card .amazon-link:hover { background: rgba(14,58,77,0.04); }

/* ----------------------------------------
   7. About — dark teal section, padding 56/80, gap 48
   ---------------------------------------- */
.about {
    background: var(--brand-deep);
    color: var(--on-dark);
    padding: 56px 80px;
}
.about-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-media {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 18px;
    color: var(--on-dark);
}
.about-copy p {
    color: var(--on-dark-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 520px;
}
.about-copy .about-secondary {
    font-size: 14px;
    color: rgba(251, 252, 253, 0.65);
}
/* ----------------------------------------
   8. Reviews — bg-base, padding 56/80, gap 32
   ---------------------------------------- */
.reviews {
    background: var(--bg-base);
    padding: 56px 80px;
}
.reviews-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.reviews-header { text-align: left; }
.reviews-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-base);
    border: 1px solid var(--stroke);
    padding: 28px 26px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.review-stars {
    color: #F2A93B;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-size: 14px;
}
.review-card blockquote {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 18px;
    flex: 1;
}
.review-meta {
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--stroke);
    padding-top: 14px;
}
.review-meta .name { color: var(--brand-deep); font-weight: 600; }

/* ----------------------------------------
   9. Support Path — band-tint, padding 56/80, gap 48
   ---------------------------------------- */
.support {
    background: var(--bg-band);
    padding: 56px 80px;
}
.support-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.support-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: center;
}
.support-copy h2 {
    font-size: clamp(30px, 3.6vw, 42px);
    margin-bottom: 16px;
    max-width: 520px;
}
.support-copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
}
.support-spec-card {
    background: var(--bg-base);
    border: 1px solid var(--stroke);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--stroke);
    gap: 16px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.spec-value {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-deep);
}

/* ----------------------------------------
   10. Amazon CTA — image bg + teal gradient overlay
   ---------------------------------------- */
.amazon-cta {
    position: relative;
    padding: 56px 100px;
    color: var(--on-dark);
    overflow: hidden;
    text-align: center;
}
.amazon-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, rgba(14,58,77,0.85), rgba(14,58,77,0.75));
    z-index: 2;
}
.amazon-cta .cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.amazon-cta-inner {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.amazon-cta h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    color: var(--on-dark);
    margin-bottom: 6px;
}
.amazon-cta p { color: var(--on-dark-muted); font-size: 17px; max-width: 540px; }

.btn-amazon {
    background: #F2A93B;
    color: #0A2A38;
}
.btn-amazon:hover { background: #E69A2D; color: #0A2A38; }

/* ----------------------------------------
   11. Footer — #0A2A38, padding 56/40, gap 24
   ---------------------------------------- */
.site-footer {
    background: var(--brand-darker);
    color: var(--on-dark);
    padding: 56px 40px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.footer-brand {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--on-dark);
    margin-bottom: 10px;
}
.footer-tag { color: var(--on-dark-muted); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
    color: var(--on-dark);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--sans);
    font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    color: var(--on-dark-muted);
    font-size: 14px;
    transition: color 200ms;
}
.footer-col a:hover { color: var(--on-dark); }

.footer-legal {
    border-top: 1px solid rgba(251,252,253,0.12);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--on-dark-muted);
}

/* ----------------------------------------
   Responsive — 768px breakpoint
   ---------------------------------------- */
@media (max-width: 768px) {
    .banner7 { padding: 8px 16px; font-size: 11px; }
    .banner7-inner { gap: 12px; }
    .banner7-divider { display: none; }

    .nav7 { padding: 14px 16px; }
    .nav7-inner { flex-wrap: wrap; gap: 12px; }
    .nav7 nav ul, .nav7 .menu { gap: 14px; flex-wrap: wrap; justify-content: center; }

    .hero { height: 560px; }
    .hero-inner { padding: 0 24px 56px; }
    .hero h1 { font-size: clamp(36px, 9vw, 52px); }

    .values, .ecosystem, .featured, .about, .reviews, .support, .amazon-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .values-grid,
    .ecosystem-grid,
    .ecosystem-grid.eco-grid-3,
    .featured-grid,
    .featured-grid.featured-grid-4,
    .reviews-grid,
    .support-grid,
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-inner { grid-template-columns: 1fr; gap: 28px; }
    .featured-header-row { flex-direction: column; align-items: flex-start; }

    .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------
   Reviews marquee — horizontal infinite scroll
   ---------------------------------------- */
.reviews-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    padding: 8px 0;
}
.reviews-track-inner {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: am-reviews-scroll 60s linear infinite;
}
.reviews-track:hover .reviews-track-inner {
    animation-play-state: paused;
}
.reviews-track .review-card {
    flex: 0 0 360px;
    max-width: 360px;
}
.review-verified {
    font-size: 0.78rem;
    color: #1f7a3d;
    margin-top: 10px;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.review-source {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--brand-deep);
    font-weight: 600;
}
.review-source:hover { color: var(--brand-darker); text-decoration: underline; }

@keyframes am-reviews-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track {
        -webkit-mask-image: none;
                mask-image: none;
    }
    .reviews-track-inner {
        animation-duration: 180s;
    }
}

/* Support Path — contact icon row (email + socials) */
.support-social {
    margin-top: 32px;
}
.support-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}
.support-social-icons a {
    color: var(--brand-deep);
    line-height: 0;
    transition: color 200ms ease, transform 200ms ease;
}
.support-social-icons a:hover {
    color: var(--brand-darker);
    transform: translateY(-1px);
}
.support-social-icons svg {
    width: 22px;
    height: 22px;
    display: block;
}

