/**
 * CardVerse — Ranking competitivo de jugadores (estilo eSports).
 */

.page-jugadores .store-main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    background: #f5f5f7;
}

.page-jugadores .cv-container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.jugadores-main {
    overflow-x: hidden;
}

.jugadores-main .jug-hero,
.jugadores-main .jug-ranking-section {
    scroll-margin-top: calc(var(--store-header-h, 120px) + 16px);
}

/* ——— HERO ——— */
.jug-hero {
    position: relative;
    max-height: 430px;
    min-height: 320px;
    background: #fff;
    overflow: hidden;
}

.jug-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, transparent 38%, rgba(124, 58, 237, 0.06) 38%, rgba(124, 58, 237, 0.06) 42%, transparent 42%),
        linear-gradient(135deg, #f5f5f7 0%, #fff 50%, #ede9fe 100%);
}

.jug-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 88%, rgba(124, 58, 237, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(250, 204, 21, 0.1) 0%, transparent 35%);
}

.jug-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: linear-gradient(155deg, #2e1065 0%, #09090b 52%, #7c3aed 140%);
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.96;
}

.jug-hero-bg {
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.jug-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    min-height: 320px;
    max-height: 430px;
    padding: 1.75rem 0 2.25rem;
}

.jug-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.jug-hero-title {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #09090b;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

.jug-hero-title-accent {
    color: #7c3aed;
    display: block;
}

.jug-hero-sub {
    font-size: 0.95rem;
    color: #555;
    max-width: 26rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.jug-btn-my-pos {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #09090b;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    min-height: 44px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.jug-btn-my-pos:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.jug-my-pos-result {
    margin-top: 0.65rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: #7c3aed;
}

.jug-my-pos-result.is-muted {
    color: #666;
    font-weight: 500;
}

/* Top 1 compact card */
.jug-hero-top1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.jug-top1-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    background: rgba(9, 9, 11, 0.92);
    border: 2px solid #facc15;
    border-radius: 18px;
    padding: 1rem 1.1rem 1.1rem;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 48px rgba(250, 204, 21, 0.12);
}

.jug-top1-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.jug-top1-card > *:not(.jug-top1-card-glow) {
    position: relative;
    z-index: 1;
}

.jug-top1-card-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.jug-top1-card-rank {
    font-size: 1.5rem;
    font-weight: 900;
    color: #facc15;
    line-height: 1;
}

.jug-top1-crown {
    color: #facc15;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.6));
}

.jug-top1-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #facc15;
    margin: 0 auto 0.5rem;
    display: block;
}

.jug-top1-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.2rem;
    line-height: 1.2;
}

.jug-top1-city,
.jug-top1-store {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    margin: 0 0 0.15rem;
}

.jug-top1-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin: 0.55rem 0 0.65rem;
}

.jug-top1-tcg,
.jug-top1-formato {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
}

.jug-top1-tcg {
    background: rgba(124, 58, 237, 0.35);
    color: #e9d5ff;
}

.jug-top1-formato {
    background: var(--badge-color, #7c3aed);
    color: #111;
}

.jug-top1-score {
    background: #09090b;
    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
}

.jug-top1-score-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.jug-top1-score-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #facc15;
    line-height: 1.1;
}

/* ——— FILTROS flotantes ——— */
.jug-filters-wrap {
    margin-top: -28px;
    position: relative;
    z-index: 8;
    padding-bottom: 1.5rem;
}

.jug-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 0.65rem 0.75rem;
    min-height: 72px;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.jug-filter-field {
    flex: 1 1 140px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.jug-filter-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.jug-filter-field .form-select {
    border: 1px solid #e8e8ec;
    background: #f8f8fa;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    min-height: 44px;
    height: 44px;
}

.jug-btn-filter {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #09090b, #2e1065);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 1.15rem;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-height: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.jug-btn-filter:hover {
    background: linear-gradient(135deg, #2e1065, #7c3aed);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

/* ——— RANKING ——— */
.jug-ranking-section {
    padding-bottom: 2rem;
}

.jug-ranking-empty {
    text-align: center;
    color: #777;
    padding: 2.5rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px dashed #ddd;
    margin: 0;
}

.jug-ranking-head {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
}

.jug-ranking-head-slash {
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 4px;
    height: calc(100% - 0.35rem);
    min-height: 40px;
    background: #7c3aed;
    border-radius: 2px;
}

.jug-ranking-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #09090b;
    margin: 0 0 0.2rem;
}

.jug-ranking-sub {
    margin: 0;
    font-size: 0.82rem;
    color: #777;
}

.jug-ranking-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

/* Skeleton */
.jug-ranking-skeleton {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.jug-ranking-skeleton-row {
    height: 88px;
    border-radius: 14px;
    background: linear-gradient(90deg, #ececf0 25%, #f5f5f7 50%, #ececf0 75%);
    background-size: 200% 100%;
    animation: jugShimmer 1.2s infinite;
}

@keyframes jugShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Ranking card */
.ranking-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr auto auto;
    align-items: center;
    gap: 0.75rem 1rem;
    min-height: 88px;
    background: #fff;
    border-radius: 14px;
    padding: 0.65rem 1rem;
    border: 2px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

.ranking-card:hover,
.ranking-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.14);
    border-color: #7c3aed;
    outline: none;
}

.ranking-card-pos {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    color: #444;
    text-align: center;
    position: relative;
}

.ranking-card--gold {
    border-color: #facc15;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.18);
}

.ranking-card--gold .ranking-card-pos { color: #ca8a04; }

.ranking-card--silver {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(203, 213, 225, 0.35);
}

.ranking-card--silver .ranking-card-pos { color: #64748b; }

.ranking-card--bronze {
    border-color: #c2410c;
    box-shadow: 0 4px 16px rgba(194, 65, 12, 0.12);
}

.ranking-card--bronze .ranking-card-pos { color: #c2410c; }

.ranking-crown {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #facc15;
}

.ranking-card-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.ranking-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8e8ec;
    flex-shrink: 0;
}

.ranking-card--gold .ranking-card-avatar { border-color: #facc15; }
.ranking-card--silver .ranking-card-avatar { border-color: #cbd5e1; }
.ranking-card--bronze .ranking-card-avatar { border-color: #c2410c; }

.ranking-card-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #09090b;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-card-city,
.ranking-card-store {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.75rem;
    color: #777;
}

.ranking-card-store {
    color: #999;
    font-size: 0.72rem;
}

.ranking-card-pozo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    margin-top: 0.15rem;
}

.ranking-card-pozo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    padding: 0.14rem 0.45rem;
    border-radius: 5px;
}

.ranking-card-pozo-item i {
    font-size: 0.62rem;
    opacity: 0.85;
}

.jug-modal-pozo {
    margin-top: 0.75rem;
    width: 100%;
}

.jug-modal-pozo .ranking-card-pozo {
    justify-content: center;
}

.ranking-card-tcg-badge {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
}

.ranking-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    background: var(--badge-color, #7c3aed);
    white-space: nowrap;
}

.ranking-card-score {
    background: #09090b;
    color: #fff;
    padding: 0.45rem 0.85rem;
    min-width: 88px;
    text-align: center;
    border-radius: 10px;
}

.ranking-card-score-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.1rem;
}

.ranking-card-score-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    color: #facc15;
    line-height: 1;
}

.ranking-card-profile {
    position: absolute;
    right: 1rem;
    bottom: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.55rem;
    border: none;
    border-radius: 8px;
    background: #7c3aed;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    z-index: 2;
}

.ranking-card:hover .ranking-card-profile,
.ranking-card:focus-within .ranking-card-profile {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.jug-demo-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ——— MODAL ——— */
.jug-player-modal-dialog {
    max-width: 440px;
}

.jug-player-modal {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.jug-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
}

.jug-modal-profile {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, #ede9fe 0%, #fff 40%);
}

.jug-modal-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7c3aed;
    margin-bottom: 0.75rem;
}

.jug-modal-name {
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
}

.jug-modal-city {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jug-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.jug-modal-stat {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.jug-modal-stat span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.jug-modal-stat strong {
    font-size: 1.25rem;
    font-weight: 900;
    color: #111;
}

.jug-modal-stat strong.is-gold {
    color: #ca8a04;
}

.jug-modal-tops {
    padding: 0 1.5rem 1.5rem;
}

.jug-modal-tops h3 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 0.65rem;
}

.jug-modal-tops ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jug-modal-tops li {
    padding: 0;
    border-bottom: none;
}

.jug-modal-top-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.jug-modal-top-item:last-child {
    border-bottom: none;
}

.jug-modal-top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.jug-modal-top-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
}

.jug-modal-top-date {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
}

.jug-modal-top-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
    font-size: 0.74rem;
    color: #666;
}

.jug-modal-top-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.jug-modal-top-format,
.jug-modal-top-tcg {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.jug-modal-top-points {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ca8a04;
}

.jug-modal-tops-empty {
    padding: 0 1.5rem 1rem;
}

.jug-modal-top-pos {
    font-weight: 800;
    color: #7c3aed;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 991.98px) {
    .jug-hero {
        max-height: none;
    }

    .jug-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        max-height: none;
        padding-bottom: 2.75rem;
    }

    .jug-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .jug-hero-top1 {
        justify-content: center;
    }

    .jug-top1-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .jug-filters {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ranking-card {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.5rem 0.75rem;
        min-height: auto;
        padding: 0.85rem;
    }

    .ranking-card-pos {
        grid-row: 1 / 3;
        align-self: start;
        font-size: 1.5rem;
    }

    .ranking-card-player {
        grid-column: 2;
    }

    .ranking-card-badge {
        grid-column: 2;
        justify-self: start;
    }

    .ranking-card-score {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .ranking-card-score-label {
        margin: 0;
    }

    .ranking-card-score-value {
        font-size: 1.35rem;
    }

    .ranking-card-profile {
        position: static;
        grid-column: 1 / -1;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        justify-content: center;
        width: 100%;
        padding: 0.45rem;
    }
}

@media (max-width: 575.98px) {
    .jug-hero-bg::after {
        width: 100%;
        clip-path: polygon(0 62%, 100% 48%, 100% 100%, 0 100%);
        height: 50%;
        top: auto;
        bottom: 0;
    }
}

/* ——— BENEFICIOS ——— */
.jug-benefits {
    padding: 0 1rem 2.5rem;
}

.jug-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.jug-benefit-card {
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.jug-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.1);
}

.jug-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.jug-benefit-card h3 {
    font-size: 0.92rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #09090b;
}

.jug-benefit-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
    line-height: 1.45;
}

/* ——— FOOTER ——— */
.jug-site-footer {
    background: linear-gradient(180deg, #0f0f12 0%, #09090b 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 1.5rem;
    margin-top: 0.5rem;
}

.jug-footer-inner {
    display: grid;
    gap: 1.5rem;
}

.jug-footer-brand strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.jug-footer-brand p {
    margin: 0;
    font-size: 0.85rem;
    max-width: 280px;
}

.jug-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.jug-footer-links h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.5rem;
}

.jug-footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.84rem;
    padding: 0.2rem 0;
    transition: color 0.15s;
}

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

.jug-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.jug-footer-social {
    display: flex;
    gap: 0.45rem;
}

.jug-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.25);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.jug-footer-social a:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .jug-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .jug-benefits-grid {
        grid-template-columns: 1fr;
    }

    .jug-footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .jug-footer-links {
        grid-template-columns: 1fr;
    }
}
