
.eftc-cloud {
    --eftc-accent: #d4af37;
    --eftc-text: #ffffff;
    --eftc-bg: transparent;
    color: var(--eftc-text);
    background: var(--eftc-bg);
    width: 100%;
    box-sizing: border-box;
}

.eftc-heading-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.eftc-heading {
    margin: 0;
    color: var(--eftc-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.eftc-heading-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, var(--eftc-accent), transparent);
    opacity: .9;
}

.eftc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.eftc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}

.eftc-tag:hover,
.eftc-tag:focus {
    transform: translateY(-2px);
}

.eftc-count {
    min-width: 20px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: .72em;
    font-weight: 700;
    text-align: center;
}

/* Outline */
.eftc-style-outline .eftc-tag {
    padding: 8px 13px;
    border: 1px solid color-mix(in srgb, var(--eftc-accent) 75%, transparent);
    border-radius: 999px;
    color: var(--eftc-text);
    background: transparent;
}

.eftc-style-outline .eftc-tag:hover,
.eftc-style-outline .eftc-tag:focus {
    color: #111;
    background: var(--eftc-accent);
    border-color: var(--eftc-accent);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.eftc-style-outline .eftc-count {
    background: color-mix(in srgb, var(--eftc-accent) 18%, transparent);
}

/* Filled */
.eftc-style-filled .eftc-tag {
    padding: 9px 14px;
    border-radius: 10px;
    color: #111;
    background: var(--eftc-accent);
    box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.eftc-style-filled .eftc-tag:hover,
.eftc-style-filled .eftc-tag:focus {
    filter: brightness(1.08);
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.eftc-style-filled .eftc-count {
    background: rgba(0,0,0,.12);
}

/* Minimal */
.eftc-style-minimal .eftc-tags {
    gap: 8px 18px;
}

.eftc-style-minimal .eftc-tag {
    position: relative;
    padding: 5px 0;
    color: var(--eftc-text);
}

.eftc-style-minimal .eftc-tag::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--eftc-accent);
    transition: right .2s ease;
}

.eftc-style-minimal .eftc-tag:hover::after,
.eftc-style-minimal .eftc-tag:focus::after {
    right: 0;
}

.eftc-style-minimal .eftc-count {
    color: var(--eftc-accent);
}

/* Glass */
.eftc-style-glass .eftc-tag {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    color: var(--eftc-text);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.eftc-style-glass .eftc-tag:hover,
.eftc-style-glass .eftc-tag:focus {
    border-color: var(--eftc-accent);
    background: color-mix(in srgb, var(--eftc-accent) 16%, transparent);
}

.eftc-style-glass .eftc-count {
    background: rgba(255,255,255,.12);
}

.eftc-empty {
    opacity: .75;
    font-size: .95rem;
}

@media (max-width: 600px) {
    .eftc-heading {
        font-size: 1.15rem;
    }

    .eftc-tags {
        gap: 8px;
    }

    .eftc-tag {
        max-width: 100%;
    }
}

.eftc-align-left .eftc-tags {
    justify-content: flex-start;
}

.eftc-align-center .eftc-tags {
    justify-content: center;
}

.eftc-align-right .eftc-tags {
    justify-content: flex-end;
}
