/* ================================================
   FABYUTI HOMEPAGE - NEW TEMPLATE STYLES
   Inspired by SAADAA design
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --fb-primary: #222222;
    --fb-accent: #e8c840;
    --fb-accent-hover: #d4b430;
    --fb-text: #333333;
    --fb-text-light: #777777;
    --fb-bg: #ffffff;
    --fb-bg-cream: #f9f6f0;
    --fb-bg-warm: #f5f0e8;
    --fb-border: #e5e5e5;
    --fb-red: #d32f2f;
    --fb-green: #2e7d32;
    --fb-radius: 8px;
    --fb-transition: all 0.3s ease;
}

.fabyuti-home {
    background-color: var(--fb-bg);
}

/* ================================================
   CATEGORY NAVIGATION BAR
   ================================================ */
.fb-category-nav {
    padding: 15px 0;
    border-bottom: 1px solid var(--fb-border);
    background: var(--fb-bg);
    z-index: 89;
}

/* --- Make main navbar always sticky at top --- */
.fabyuti-home-body #header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    animation: none !important;
}

.fabyuti-home-body .header-mobile.header_sticky {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Remove left padding from header container for flush alignment */
.fabyuti-home-body #header .container {
    padding-left: 0 !important;
}

.fabyuti-home-body .header-desk_type_1 {
    padding-left: 0 !important;
}

.fb-category-nav__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
    justify-content: center;
}

.fb-category-nav__scroll::-webkit-scrollbar {
    display: none;
}

.fb-category-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    min-width: 70px;
    flex-shrink: 0;
    transition: var(--fb-transition);
}

.fb-category-nav__item:hover {
    transform: translateY(-2px);
}

.fb-category-nav__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--fb-border);
    margin-bottom: 6px;
    transition: var(--fb-transition);
    background: #f5f5f5;
}

.fb-category-nav__item:hover .fb-category-nav__icon {
    border-color: var(--fb-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.fb-category-nav__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-category-nav__label {
    font-size: 11px;
    color: var(--fb-text);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    max-width: 75px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================================
   HERO BANNER
   ================================================ */
.fb-hero {
    padding: 15px 0;
}

.fb-hero__slider {
    border-radius: 12px;
    overflow: hidden;
}

.fb-hero__slide {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.fb-hero__link {
    display: block;
    width: 100%;
    height: 100%;
}

.fb-hero__img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fb-hero__link:hover .fb-hero__img {
    transform: scale(1.02);
}

.fb-hero__pagination {
    text-align: center;
    margin-top: 12px;
}

.fb-hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 4px;
}

.fb-hero__pagination .swiper-pagination-bullet-active {
    background: var(--fb-primary);
}

/* ================================================
   STATS SECTION
   ================================================ */
.fb-stats {
    padding: 30px 0;
    border-bottom: 1px solid var(--fb-border);
}

.fb-stats__row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.fb-stats__item {
    text-align: center;
}

.fb-stats__number {
    font-size: 28px;
    font-weight: 700;
    color: var(--fb-primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.fb-stats__label {
    font-size: 13px;
    color: var(--fb-text-light);
    margin: 0;
    text-align: center;
}

/* ================================================
   PRODUCTS SECTION (TABS + GRID)
   ================================================ */
.fb-products-section {
    padding: 50px 0 30px;
}

.fb-products-section__tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.fb-products-section__tab {
    font-size: 15px;
    font-weight: 500;
    color: var(--fb-text-light);
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--fb-transition);
    text-transform: capitalize;
}

.fb-products-section__tab.active,
.fb-products-section__tab:hover {
    color: var(--fb-primary);
    border-bottom-color: var(--fb-primary);
}

/* Tab Content */
.fb-tab-content {
    display: none;
}

.fb-tab-content.active {
    display: grid;
}

/* Product Grid */
.fb-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.fb-product-grid--deals {
    grid-template-columns: repeat(5, 1fr);
}

/* ================================================
   PRODUCT CARD
   ================================================ */
.fb-product-card {
    position: relative;
    transition: var(--fb-transition);
}

.fb-product-card:hover {
    transform: translateY(-3px);
}

.fb-product-card__img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--fb-radius);
    background: #f5f5f5;
    aspect-ratio: 3 / 4;
}

.fb-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: opacity 0.4s ease;
}

.fb-product-card__img--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.fb-product-card:hover .fb-product-card__img--hover {
    opacity: 1;
}

.fb-product-card:hover .fb-product-card__img:not(.fb-product-card__img--hover) {
    opacity: 0;
}

/* Labels */
.fb-product-card__labels {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.fb-product-card__label {
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.fb-product-card__label--new {
    background: var(--fb-bg);
    color: var(--fb-primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.fb-product-card__label--sale {
    background: var(--fb-red);
    color: #fff;
}

.fb-product-card__label--featured {
    background: var(--fb-primary);
    color: #fff;
}

.fb-product-card__label--out {
    background: #666;
    color: #fff;
}

/* Quick Actions */
.fb-product-card__actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--fb-transition);
}

.fb-product-card:hover .fb-product-card__actions {
    opacity: 1;
    transform: translateY(0);
}

.fb-product-card__action {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--fb-bg);
    border: 1px solid var(--fb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: var(--fb-transition);
    color: var(--fb-text);
    text-decoration: none;
}

.fb-product-card__action:hover {
    background: var(--fb-primary);
    color: #fff;
    border-color: var(--fb-primary);
}

.fb-product-card__action svg {
    fill: currentColor;
}

/* Product Info */
.fb-product-card__info {
    padding: 10px 2px 5px;
}

.fb-product-card__title {
    font-size: 13px;
    font-weight: 400;
    color: var(--fb-text);
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fb-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.fb-product-card__title a:hover {
    color: var(--fb-primary);
}

.fb-product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-product-card__price-old {
    font-size: 13px;
    color: var(--fb-text-light);
    text-decoration: line-through;
}

.fb-product-card__price-new {
    font-size: 14px;
    font-weight: 600;
    color: var(--fb-primary);
}

/* ================================================
   BUTTONS
   ================================================ */
.fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--fb-transition);
    cursor: pointer;
    border: none;
}

.fb-btn--outline {
    background: transparent;
    border: 1.5px solid var(--fb-primary);
    color: var(--fb-primary);
}

.fb-btn--outline:hover {
    background: var(--fb-primary);
    color: #fff;
}

.fb-btn--primary {
    background: var(--fb-accent);
    color: var(--fb-primary);
    border: none;
    border-radius: 25px;
    padding: 14px 40px;
    font-weight: 700;
}

.fb-btn--primary:hover {
    background: var(--fb-accent-hover);
    color: var(--fb-primary);
}

.fb-btn--whatsapp svg {
    fill: currentColor;
}

/* ================================================
   WELCOME SECTION
   ================================================ */
.fb-welcome {
    padding: 60px 0;
    background: var(--fb-bg-cream);
    text-align: center;
}

.fb-welcome__content {
    max-width: 650px;
    margin: 0 auto;
}

.fb-welcome__title {
    font-size: 22px;
    font-weight: 400;
    color: var(--fb-primary);
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fb-welcome__title strong {
    font-weight: 700;
}

.fb-welcome__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
    font-size: 13px;
}

.fb-welcome__link {
    color: var(--fb-primary);
    text-decoration: underline;
    font-weight: 600;
    text-underline-offset: 3px;
}

.fb-welcome__link:hover {
    color: var(--fb-text-light);
}

.fb-welcome__icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.fb-welcome__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fb-welcome__icon-item svg {
    fill: var(--fb-text-light);
}

.fb-welcome__icon-item span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--fb-text-light);
    text-transform: uppercase;
}

.fb-welcome__hashtag {
    font-size: 14px;
    color: var(--fb-text);
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.fb-features {
    padding: 40px 0;
    border-bottom: 1px solid var(--fb-border);
}

.fb-features__row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.fb-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.fb-features__item svg {
    fill: var(--fb-text);
}

.fb-features__item span {
    font-size: 12px;
    color: var(--fb-text);
    font-weight: 500;
    line-height: 1.4;
}

/* ================================================
   MARQUEE
   ================================================ */
.fb-marquee {
    padding: 14px 0;
    background: var(--fb-bg-warm);
    overflow: hidden;
}

.fb-marquee__track {
    display: flex;
    overflow: hidden;
}

.fb-marquee__content {
    display: flex;
    gap: 50px;
    animation: fb-marquee-scroll 25s linear infinite;
    white-space: nowrap;
}

.fb-marquee__content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--fb-primary);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

@keyframes fb-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================
   GET TO KNOW US
   ================================================ */
.fb-know-us {
    padding: 60px 0;
}

.fb-know-us__title {
    font-size: 26px;
    font-weight: 600;
    color: var(--fb-primary);
    margin-bottom: 6px;
}

.fb-know-us__subtitle {
    font-size: 14px;
    color: var(--fb-text-light);
    margin-bottom: 30px;
    text-align: left;
}

.fb-know-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fb-know-us__card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 5 / 3;
    max-height: 280px;
    text-decoration: none;
    background: #f5f5f5;
}

.fb-know-us__card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.fb-know-us__card:hover .fb-know-us__card-img {
    transform: scale(1.05);
}

.fb-know-us__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.fb-know-us__card-label {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: var(--fb-primary);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ================================================
   FEATURED PRODUCTS SECTION
   ================================================ */
.fb-featured-section {
    padding: 40px 0 50px;
    background: var(--fb-bg);
}

.fb-section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--fb-primary);
    text-align: center;
    margin-bottom: 6px;
}

.fb-section-subtitle {
    font-size: 14px;
    color: var(--fb-text-light);
    text-align: center;
    margin-bottom: 30px;
}

/* ================================================
   NEWSLETTER
   ================================================ */
.fb-newsletter {
    padding: 50px 0;
    background: var(--fb-bg-cream);
}

.fb-newsletter__inner {
    text-align: center;
}

.fb-newsletter__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--fb-primary);
    margin-bottom: 25px;
    line-height: 1.4;
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Tablet */
@media (max-width: 991px) {
    .fb-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .fb-product-grid--deals {
        grid-template-columns: repeat(3, 1fr);
    }

    .fb-stats__row {
        gap: 30px;
    }

    .fb-stats__number {
        font-size: 24px;
    }

    .fb-know-us__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .fb-welcome__title {
        font-size: 18px;
    }

    .fb-features__row {
        gap: 25px;
    }

    .fb-hero__img {
        max-height: 360px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .fb-category-nav__icon {
        width: 50px;
        height: 50px;
    }

    .fb-category-nav__label {
        font-size: 10px;
    }

    .fb-category-nav__scroll {
        justify-content: flex-start;
    }

    .fb-hero__img {
        max-height: 280px;
    }

    .fb-hero__slider {
        border-radius: 8px;
    }

    .fb-stats {
        padding: 20px 0;
    }

    .fb-stats__number {
        font-size: 20px;
    }

    .fb-stats__label {
        font-size: 11px;
    }

    .fb-stats__row {
        gap: 20px;
    }

    .fb-product-grid,
    .fb-product-grid--deals {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fb-products-section {
        padding: 30px 0 20px;
    }

    .fb-products-section__tabs {
        gap: 15px;
        margin-bottom: 20px;
    }

    .fb-products-section__tab {
        font-size: 13px;
    }

    .fb-product-card__actions {
        opacity: 1;
        transform: translateY(0);
    }

    .fb-product-card__action {
        width: 30px;
        height: 30px;
    }

    .fb-product-card__action svg {
        width: 14px;
        height: 14px;
    }

    .fb-know-us__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .fb-know-us__card {
        aspect-ratio: 5 / 3;
        max-height: 200px;
    }

    .fb-know-us {
        padding: 40px 0;
    }

    .fb-know-us__title {
        font-size: 22px;
    }

    .fb-welcome {
        padding: 40px 0;
    }

    .fb-welcome__title {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .fb-welcome__icons {
        gap: 20px;
    }

    .fb-welcome__icon-item svg {
        width: 28px;
        height: 28px;
    }

    .fb-features {
        padding: 25px 0;
    }

    .fb-features__row {
        gap: 15px;
    }

    .fb-features__item svg {
        width: 30px;
        height: 30px;
    }

    .fb-features__item span {
        font-size: 10px;
    }

    .fb-featured-section {
        padding: 30px 0 40px;
    }

    .fb-section-title {
        font-size: 22px;
    }

    .fb-newsletter {
        padding: 35px 0;
    }

    .fb-newsletter__title {
        font-size: 20px;
    }

    .fb-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .fb-btn--primary {
        padding: 12px 30px;
    }

    .fb-marquee__content span {
        font-size: 12px;
    }
}

/* ================================================
   HAMBURGER BUTTON (Desktop Header)
   ================================================ */
.fb-hamburger-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--fb-primary, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-left: 0;
    padding-left: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.fb-hamburger-btn:hover {
    opacity: 0.6;
}

/* ================================================
   SIDEBAR DRAWER
   ================================================ */
.fb-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fb-sidebar-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.fb-sidebar {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
}

.fb-sidebar--open {
    left: 0;
}

.fb-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.fb-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fb-sidebar__close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #222;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.fb-sidebar__close:hover {
    opacity: 0.5;
}

.fb-sidebar__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.fb-sidebar__body::-webkit-scrollbar {
    width: 5px;
}

.fb-sidebar__body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Sidebar Group */
.fb-sidebar__group {
    border-bottom: 1px solid #f0f0f0;
}

/* Accordion Button */
.fb-sidebar__accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.fb-sidebar__accordion:hover {
    background: #fafafa;
}

.fb-sidebar__accordion-icon {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1;
    width: 20px;
    text-align: center;
}

/* Accordion Panel */
.fb-sidebar__accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.fb-sidebar__accordion-panel--open {
    max-height: 1200px;
}

/* Sub-item with image */
.fb-sidebar__sub-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 24px 10px 32px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.fb-sidebar__sub-item:hover {
    background: #f5f5f5;
    color: #222;
}

.fb-sidebar__sub-img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.fb-sidebar__chevron {
    margin-left: auto;
    color: #aaa;
    flex-shrink: 0;
}

/* Sub-link (text only) */
.fb-sidebar__sub-link {
    display: block;
    padding: 10px 24px 10px 32px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s, color 0.2s;
}

.fb-sidebar__sub-link:hover {
    background: #f5f5f5;
    color: #222;
}

/* Direct Link */
.fb-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    text-decoration: none;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.fb-sidebar__link:hover {
    background: #fafafa;
    color: #222;
}

/* Badges */
.fb-sidebar__badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.fb-sidebar__badge--yellow {
    background: #ffe600;
    color: #222;
}

.fb-sidebar__badge--green {
    background: #27ae60;
    color: #fff;
}

.fb-sidebar__badge--red {
    background: #e74c3c;
    color: #fff;
}

/* Mobile Small */
@media (max-width: 480px) {
    .fb-category-nav__icon {
        width: 45px;
        height: 45px;
    }

    .fb-category-nav__item {
        min-width: 58px;
    }

    .fb-hero__img {
        max-height: 200px;
    }

    .fb-stats__row {
        gap: 15px;
    }

    .fb-stats__number {
        font-size: 18px;
    }

    .fb-product-card__title {
        font-size: 12px;
    }

    .fb-product-card__price-new {
        font-size: 13px;
    }

    .fb-product-card__price-old {
        font-size: 11px;
    }

    .fb-welcome__title {
        font-size: 14px;
    }
}
