/* ═══════════════════════════════════════════
   CLICKIMP — style.css
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #FEFEFE;
    --bg-card: #ffffff;
    --black: #0f0f0f;
    --gray-dark: #444;
    --gray: #888;
    --gray-light: #d8d8d5;
    --border: #e2e2df;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 0.2s ease;
    --section-pad: 165px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 3px;
}

/* ─── SELECTION ─── */
::selection {
    background: var(--black);
    color: #fff;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 102px;
    padding: 0 165px 16px;
}

.nav.scrolled {
    border-color: var(--border);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    width: 146px;
    height: 38.4px;
    display: block;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-item a {
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-item a:hover {
    color: var(--black);
}

.nav-item.active {
    position: relative;
}

.nav-item.active a {
    color: var(--black);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
    text-align: center;
    padding: 40px 48px 124px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #939393;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Inter', var(--sans);
    font-size: clamp(38px, 6.2vw, 5.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 27px;
}

.hero-title em {
    font-family: 'Instrument Serif', var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0px;
}

.hero-sub {
    font-family: 'Inter', var(--sans);
    font-size: 22px;
    font-weight: 300;
    color: #939393;
    line-height: 1.23;
    letter-spacing: -0.001em;
    margin-bottom: 28px;
    max-width: 618px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── EXTRACTOR BAR ─── */
.extractor-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    gap: 16px;
    width: 100%;
    max-width: 1047px;
    height: 87px;
    margin: 0 auto 32px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.extractor-bar:focus-within {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.08);
}

.yt-icon-wrapper {
    width: 65px;
    height: 55px;
    background: #FEFEFE;
    border-radius: 16px;
    box-shadow: 0px 0px 3.6px 0px rgba(0, 0, 0, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-icon {
    width: 46px;
    height: 32px;
    color: var(--black);
}

.url-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', var(--sans);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--black);
    min-width: 0;
}

.url-input::placeholder {
    color: #b0b0ac;
}

.extract-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    gap: 10px;
    background: #181818;
    color: #D9D9D9;
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    box-shadow: 0px 0px 3.6px 0px rgba(0, 0, 0, 0.11);
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--transition), transform var(--transition);
}

.extract-btn:hover {
    opacity: 0.86;
}

.extract-btn:active {
    transform: scale(0.97);
}

.extract-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.disclaimer {
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #939393;
    margin-bottom: 33px;
}

/* ─── QUALITY ROW ─── */
.quality-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.q-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #FEFEFE;
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
}

.q-btn:hover {
    border-color: var(--gray);
    color: var(--black);
    box-shadow: 0px 0px 3.6px 0px rgba(0, 0, 0, 0.11);
}

.q-btn.active {
    background: #181818;
    color: #D9D9D9;
    border-color: #181818;
}

/* ══════════════════════════════
   RESULT SECTION
══════════════════════════════ */
.result-section {
    display: none;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 0 48px;
    animation: fadeUp 0.4s ease both;
}

.result-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.result-img-wrap {
    position: relative;
    overflow: hidden;
}

.result-img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    gap: 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity var(--transition);
}

.result-img-wrap:hover .result-overlay {
    opacity: 1;
}

.dl-btn,
.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition);
    text-decoration: none;
}

.dl-btn {
    background: #fff;
    color: var(--black);
    border: none;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.dl-btn:hover,
.copy-btn:hover {
    opacity: 0.85;
}

.result-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.result-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.result-quality {
    font-size: 12px;
    font-weight: 700;
    background: var(--bg);
    color: var(--gray-dark);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.trends-section,
.library-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-pad) 56px;
}

.about-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 56px var(--section-pad);
    border-top: 1px solid var(--border);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--black);
}

.view-all-link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--black);
    text-decoration: none;
    transition: opacity var(--transition);
}

.view-all-link:hover {
    opacity: 0.6;
}

/* ══════════════════════════════
   TRENDS GRID
══════════════════════════════ */
.trends-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 14px;
    align-items: start;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 290px;
    gap: 14px;
    transition: box-shadow var(--transition);
}

.feature-card:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
}

.feature-flame {
    font-size: 52px;
    line-height: 1;
}

.feature-label {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.feature-label em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

.trends-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ─── THUMB CARD ─── */
.thumb-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--gray-light);
    cursor: pointer;
    position: relative;
    transition: transform var(--transition);
}

.thumb-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition);
    border-radius: var(--radius-md);
}

.thumb-card:hover {
    transform: translateY(-3px);
}

.thumb-card:hover::after {
    background: rgba(0, 0, 0, 0.08);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.thumb-card:hover img {
    transform: scale(1.03);
}

/* ══════════════════════════════
   LIBRARY
══════════════════════════════ */
.pill-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #FEFEFE;
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
}

.pill:hover {
    border-color: var(--gray);
    color: var(--black);
    box-shadow: 0px 0px 3.6px 0px rgba(0, 0, 0, 0.11);
}

.pill.active {
    background: #181818;
    color: #D9D9D9;
    border-color: #181818;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-inner {
    max-width: 580px;
}

.about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 16px 0 20px;
}

.about-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0px;
}

.about-body {
    font-size: 15.5px;
    color: var(--gray-dark);
    line-height: 1.7;
    max-width: 480px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px var(--section-pad);
    max-width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.footer-logo .logo-svg {
    height: 22px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--black);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-tagline {
    font-size: 13px;
    color: var(--gray);
}

.footer-tagline em {
    font-family: var(--serif);
    font-style: italic;
}

.footer-copy {
    font-size: 12px;
    color: var(--gray-light);
}

/* ══════════════════════════════
   TOAST
══════════════════════════════ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--black);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════
   EMPTY STATE
══════════════════════════════ */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--gray);
    font-size: 14px;
}

/* ══════════════════════════════
   SKELETON LOADER
══════════════════════════════ */
.skeleton {
    background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
}

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

    100% {
        background-position: -200% 0;
    }
}

/* ══════════════════════════════
   BROWSER PAGE
══════════════════════════════ */
.filters-container {
    display: flex;
    gap: 24px;
    padding: 24px var(--section-pad);
    max-width: 100%;
    flex-wrap: wrap;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #FEFEFE;
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--gray);
    cursor: pointer;
    gap: 6px;
    transition: all var(--transition);
}

.filter-pill:hover {
    border-color: var(--gray);
    color: var(--black);
    box-shadow: 0px 0px 3.6px 0px rgba(0, 0, 0, 0.11);
}

.filter-pill.active {
    background: #181818;
    color: #D9D9D9;
    border-color: #181818;
}

.filter-pill svg {
    margin-top: 1px;
}

.browser-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 280px;
    gap: 0px;
    max-width: 100%;
    margin: 0 auto 48px;
    padding: 0 var(--section-pad);
    align-items: start;
}

@media (max-width: 1024px) {
    .browser-layout {
        grid-template-columns: 1fr;
    }
}

.anatomy-card-bg {
    background: #f5f5f5;
    border-radius: 49px;
    border: 0.5px solid #ffffff;
    box-shadow: 0 4px 20.6px 3px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 24px;
}

.anatomy-card-thumb {
    border-radius: 36px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 733 / 379;
    background: var(--gray-light);
}

.anatomy-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anatomy-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px 12px;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yt-icon-sm {
    width: 32px;
    height: 32px;
}

#videoTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
}

.video-channel {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

#channelName {
    font-weight: 600;
    color: var(--black);
}

.extract-mini-btn {
    padding: 15px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: 'Inter', var(--sans);
    font-size: 18px;
    font-weight: 500;

    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #939393;
    transition: all var(--transition);
}

.extract-mini-btn:hover {
    background: var(--bg);
}

.browser-desc-col {
    padding: 0px 32px 32px;
    align-self: start;
}

.browser-headline {
    font-family: 'Inter', var(--sans);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.browser-headline em {
    font-family: 'Instrument Serif', var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: 42px;
    letter-spacing: -1.5px;
}

.browser-desc-text {
    font-family: 'Inter', var(--sans);
    font-size: 16px;
    line-height: 22px;
    max-width: 494px;
    color: #939393;
    font-weight: 100;
    letter-spacing: -.2px;
    margin-bottom: 32px;
}

.browser-tags-grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 16px;
    margin-bottom: 32px;
}

.tag-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tag-badge {
    font-family: 'Inter', var(--sans);
    align-self: flex-start;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 6px;
    border-radius: 6px;
    letter-spacing: 0px;
}

.bg-yellow {
    background: #F2D265;
    color: #000;
}

.bg-gray {
    background: #F68351;
    color: #FEFEFF;
}

.bg-green {
    background: #A5D6A7;
    color: #000;
}

.bg-blue {
    background: #4FC3F7;
    color: #000;
}

.bg-dark {
    background: #212121;
    color: #fff;
}

.bg-orange {
    background: #FF8A65;
    color: #000;
}

.tag-val {
    font-family: 'Inter', var(--sans);
    font-size: 14px;
    font-weight: 100;
    color: #939393;
    line-height: 1.2;
    max-width: 88px;
}

.why-it-works {
    margin-bottom: 32px;
}

.why-it-works p {
    font-family: 'Inter', var(--sans);
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.metrics-grid {
    display: flex;
    gap: 24px;
}

.metric {
    flex: 1;
}

.metric-val {
    font-family: 'Inter', var(--sans);
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0 4px;
}

.metric-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.metric-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, #d4d0c8, #c8b88a);
    border-radius: 2px;
}

.browser-sidebar {
    background: #fdfdfd;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: start;
}

.sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.sidebar-head h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.sidebar-head h3 em {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
}

.sidebar-head a {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.sidebar-item img {
    width: 80px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.match-score {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

/* ══════════════════════════════
   RESPONSIVE DESIGN SYSTEM
══════════════════════════════ */

@media (max-width: 1024px) {
    :root {
        --section-pad: 48px;
    }

    .library-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 24px;
    }

    .nav-inner {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
        padding: 8px var(--section-pad);
    }

    .logo-svg {
        height: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 32px 20px 24px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 24px;
    }

    .extractor-bar {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }

    .url-input {
        width: 100%;
        text-align: center;
    }

    .extract-btn {
        width: 100%;
        justify-content: center;
    }

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

    .trends-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .browser-tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad: 16px;
    }

    .trends-thumbs,
    .library-grid,
    .browser-tags-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.25;
    }

    .q-btn {
        padding: 8px 14px;
        font-size: 12.5px;
    }
}