/**
 * NMN Expert Tenant-Specific Branding & Styles
 * 
 * Dit bestand bevat alle NMN Expert-specifieke CSS.
 * Wordt geladen na style.css (gedeelde base) zodat overrides werken.
 */

/* =========================================================
   NMN Expert - Brand Colors & Variables
   ========================================================= */

:root {
    --nmn-primary: #4CAF50;
    --nmn-primary-dark: #388E3C;
    --nmn-primary-light: #81C784;
    --nmn-accent: #FFD700;
    --nmn-text: #1f2937;
    --nmn-text-light: #6b7280;
    --nmn-bg: #ffffff;
    --nmn-border: rgba(0,0,0,0.08);
    /* PAS HIER DE PRODUCT FOTO KOLOM BREEDTE AAN */
    --product-photo-column-width: 450px;
}

/* =========================================================
   NMN Expert - Header & footer (#8cd05c, 80% dekking / 20% transparant), navbar donkergroen
   ========================================================= */
.site-header {
    /* Zelfde kleur en transparantie als footer */
    background-color: rgba(140, 208, 92, 0.8);
}
.footer-top {
    /* Zelfde groen als .insight-box (#8cd05c), 80% dekking (20% transparant) */
    background-color: rgba(140, 208, 92, 0.8);
}

/* =========================================================
   NMN Expert - Home Page Hero Section
   ========================================================= */

/* Statische hero in index.php: bij SPA verbergen behalve op home en reviews */
#nmn-home-hero-wrap[hidden] {
    display: none !important;
}

.nmn-hero {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 52vh, 640px);
    margin: 0 0 2rem 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nmn-hero--image .nmn-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.nmn-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
}

.nmn-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    width: 100%;
}

.nmn-hero__text {
    max-width: 560px;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    padding-left: clamp(0.75rem, 2vw, 1.75rem);
    transform: translateY(-8%);
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.nmn-hero__title {
    margin: 0 0 0.75rem 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.nmn-hero__sub {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.nmn-hero__cta .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    background: var(--nmn-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.nmn-hero__cta .primary-button:hover {
    transform: translateY(-1px);
    background: var(--nmn-primary-dark);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
    .nmn-hero {
        border-radius: 0;
        margin-bottom: 1.25rem;
    }
    .nmn-hero__text {
        transform: translateY(-4%);
        max-width: 520px;
        padding-left: 0.75rem;
    }
}

/* =========================================================
   NMN Expert - Section Styling
   ========================================================= */

.nmn-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.nmn-section__header h3 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
}

.nmn-section__header p {
    margin: 0.5rem 0 1.25rem 0;
    color: #6b7280;
    font-size: 1rem;
}

/* =========================================================
   NMN Expert - Product Grid (Backup2NMN-stijl: flex, 4 tegels)
   ========================================================= */

.nmn-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.nmn-product-card {
    width: 250px;
    min-height: 360px;
    background: white;
    border: 1px solid var(--nmn-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 26px rgba(47, 79, 61, 0.08);
}

.nmn-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(47, 79, 61, 0.14);
    border-color: var(--nmn-primary);
}

.nmn-product-card__image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    background: #f6f8f5;
}

.nmn-product-card__title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    padding: 1rem 1.1rem 0 1.1rem;
}

.nmn-product-card p {
    font-size: 0.9rem !important;
    line-height: 1.45;
    margin: 0 !important;
    padding: 0 1.1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #516055;
}

.nmn-product-card__price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nmn-primary);
    margin-top: 0.6rem;
    padding: 0.6rem 1.1rem 1.2rem;
    border-top: 1px solid rgba(47, 79, 61, 0.08);
}

.nmn-product-card__price--sale {
    color: #d32f2f;
}

.nmn-product-card__price--original {
    text-decoration: line-through;
    color: #9e9e9e;
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

/* Shop: desktop = originele gecentreerde flex-rij; mobiel = 2-koloms grid + hero/vergelijk */
.nmn-shop-desktop-only {
    display: block;
}

.nmn-shop-mobile-only {
    display: none;
}

/* Desktop shop-grid: zelfde als overige nmn-product-grid (meerdere tegels naast elkaar) */
.nmn-shop .nmn-product-grid.nmn-shop-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

.nmn-shop .nmn-shop-grid-loading,
.nmn-shop .nmn-shop-grid-empty {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
    padding: 2rem;
}

.nmn-shop .nmn-product-card.nmn-shop-product-tile {
    width: 260px;
    max-width: 260px;
    min-height: 420px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(47, 79, 61, 0.08);
    cursor: default;
}

.nmn-shop-hero {
    margin: 0 0 1.5rem 0;
    border-radius: 18px;
    overflow: hidden;
    background: #e8ede6;
    box-shadow: 0 10px 28px rgba(47, 79, 61, 0.1);
}

.nmn-shop-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(42vh, 360px);
    object-fit: cover;
    object-position: center;
}

.nmn-shop-pick {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 0.75rem;
    padding: 0 0.75rem;
}

.nmn-shop-pick__title {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 700;
    color: #386641;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.nmn-shop-pick__sub {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.55;
}

.nmn-shop-shipping.shop-shipping-note {
    text-align: center;
    margin-bottom: 0.25rem;
}

.nmn-shop-tile__media {
    cursor: pointer;
}

.nmn-shop-tile__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.nmn-shop-tile__title {
    cursor: pointer;
}

.nmn-shop-tile__title:hover {
    color: var(--nmn-primary, #386641);
}

.nmn-shop-tile__desc {
    color: #6b7280;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin: 0.35rem 0 0 0 !important;
    padding: 0 1.1rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nmn-shop-tile__price {
    margin-top: auto;
}

.nmn-shop-tile__volume-hint {
    font-size: 0.82rem;
    color: #2e7d32;
    margin-top: 0.35rem;
    font-weight: 600;
}

.nmn-shop-tile__actions {
    padding: 0.65rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(47, 79, 61, 0.08);
}

.nmn-shop-tile__qty-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.nmn-shop-tile__qty {
    width: 100%;
    padding: 0.5rem 0.65rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
}

.nmn-shop-tile__btn {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.nmn-shop-tile__btn--cart {
    background: #8CD05C;
    color: #1a1a1a;
}

.nmn-shop-tile__btn--cart:hover:not(:disabled) {
    background: #7bc04d;
}

.nmn-shop-tile__btn--cart:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.nmn-shop-tile__btn--ghost {
    background: transparent;
    color: #386641;
    border: 2px solid rgba(56, 102, 65, 0.35);
}

.nmn-shop-tile__btn--ghost:hover {
    background: rgba(56, 102, 65, 0.06);
}

.nmn-shop-compare {
    max-width: 52rem;
    margin: 0 auto 2rem;
    padding: 1.75rem 1.25rem 2rem;
    background: #f5f7f4;
    border: 1px solid #e0e4dd;
    border-radius: 18px;
}

.nmn-shop-compare__title {
    font-size: 1.5rem;
    color: #386641;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.nmn-shop-compare__intro {
    text-align: center;
    color: #6b7280;
    margin: 0 0 1.25rem 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

.nmn-shop-compare__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.nmn-shop-compare__card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.2rem;
    border: 1px solid rgba(56, 102, 65, 0.12);
    box-shadow: 0 6px 18px rgba(47, 79, 61, 0.06);
}

.nmn-shop-compare__card-title {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.nmn-shop-compare__list {
    margin: 0 0 1rem 0;
    padding-left: 1.2rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.55;
}

.nmn-shop-compare__link {
    font-weight: 600;
    color: #386641;
    text-decoration: none;
    font-size: 0.92rem;
}

.nmn-shop-compare__link:hover {
    text-decoration: underline;
}

.nmn-shop-compare__foot {
    text-align: center;
    margin: 1.25rem 0 0 0;
}

.nmn-shop-compare__foot a {
    font-weight: 600;
    color: #386641;
}

.nmn-shop-certificates-anchor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Product detail pagina - product item top section (nieuwe layout met foto links, info rechts) */
/* Alleen voor product detail pagina, niet voor shop */
#product-detail-container .product-item-top-section {
    grid-template-columns: var(--product-photo-column-width, 50px) 1fr !important;
}

#product-detail-container .product-item-top-section .product-card {
    width: var(--product-photo-column-width, 50px) !important;
    max-width: var(--product-photo-column-width, 50px) !important;
    min-width: var(--product-photo-column-width, 50px) !important;
    flex-shrink: 0 !important;
}

/* Product image moet de volledige breedte van de container gebruiken */
#product-detail-container .product-card .product-image {
    width: 100% !important;
    height: auto !important;
    min-height: 450px !important;
}

#product-detail-container .product-card .product-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
}

.nmn-shop .nmn-product-card:hover {
    box-shadow: 0 18px 40px rgba(47, 79, 61, 0.14);
}

.nmn-shop .nmn-product-card__image {
    height: 210px;
}

.nmn-shop .nmn-product-card__title {
    font-size: 1.2rem;
    padding: 1.2rem 1.3rem 0 1.3rem;
}

.nmn-shop .nmn-product-card p {
    padding: 0 1.3rem;
}

.nmn-shop .nmn-product-card__price {
    padding: 0.75rem 1.3rem 1.4rem;
}

/* NMN Expert shop header: één H1, geen streep, subtekst cursief, dichter bij header */
.nmn-shop .shop-header {
    margin-top: 0;
    margin-bottom: 1.25rem;
    border: none;
    padding-top: 0;
}
.nmn-shop .shop-header .shop-header-title {
    margin-top: 0;
    margin-bottom: 0.25rem;
    border: none;
    font-size: 1.75rem;
    font-weight: 700;
}
.nmn-shop .shop-header .shop-header-sub {
    font-style: italic;
    margin-top: 0;
    margin-bottom: 0;
}

/* NMN Expert shop: intro box met afbeelding rechts, foto tot de rand, geen wit eromheen */
.nmn-seo-intro-with-image {
    min-height: 170px;
    border-radius: 22px;
    overflow: hidden;
}
.nmn-seo-intro-with-image .nmn-seo-intro-text {
    padding: 1.25rem 1rem 1.25rem 1.1rem;
}
.nmn-seo-intro-with-image .nmn-seo-intro-image {
    align-self: stretch;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}
.nmn-seo-intro-with-image .nmn-seo-intro-image img {
    height: 100%;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    object-position: center;
    border-radius: 0 22px 22px 0;
    display: block;
}
.nmn-seo-intro-with-image .nmn-seo-intro-sub {
    font-style: italic;
}

/* NMN dosering calculator – nette uitlijning labels/velden */
.dosage-calculator-form {
    max-width: 480px;
}
.dosage-calculator-form .form-row {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.dosage-calculator-form label {
    width: 190px;
    margin: 0;
}
.dosage-calculator-form input,
.dosage-calculator-form select {
    flex: 1;
}

.dosage-calculator-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dosage-calculator-cta a {
    align-self: flex-start;
}

/* =========================================================
   NMN Expert - Benefits Section
   ========================================================= */

.nmn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.nmn-benefit-card {
    background: white;
    border: 1px solid var(--nmn-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nmn-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nmn-benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.nmn-benefit-card__title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nmn-benefit-card__description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================================
   NMN Expert - Responsive Design
   ========================================================= */

@media (max-width: 768px) {
    .nmn-shop-desktop-only {
        display: none !important;
    }

    .nmn-shop-mobile-only {
        display: block !important;
    }

    .nmn-shop .nmn-product-grid.nmn-shop-product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        max-width: 52rem;
        padding: 0 0.75rem;
        justify-content: stretch;
    }

    .nmn-shop .nmn-shop-grid-loading,
    .nmn-shop .nmn-shop-grid-empty {
        grid-column: 1 / -1;
    }

    .nmn-shop .nmn-product-card.nmn-shop-product-tile {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        min-height: 0;
    }

    .nmn-hero {
        padding: 2rem 1.25rem;
    }
    
    .nmn-hero__inner h2 {
        font-size: 1.75rem;
    }
    
    .nmn-hero__inner p {
        font-size: 1rem;
    }
    
    .nmn-product-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nmn-product-card {
        width: calc(50% - 0.5rem);
        min-width: 160px;
    }
    
    .nmn-shop .nmn-product-card:not(.nmn-shop-product-tile) {
        width: calc(50% - 0.5rem);
        min-width: 160px;
    }

    .nmn-shop-compare__grid {
        grid-template-columns: 1fr;
    }
    
    .nmn-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nmn-product-grid {
        gap: 1rem;
    }

    /* Shop: géén 1 kolom — ook op smalle phones 2 tegels naast elkaar */
    .nmn-shop .nmn-product-grid.nmn-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem 0.4rem;
        padding: 0 0.35rem;
    }

    .nmn-shop .nmn-product-card.nmn-shop-product-tile {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-product-card__image {
        height: 110px;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-product-card__title,
    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__title {
        font-size: 0.82rem;
        line-height: 1.25;
        padding: 0.4rem 0.45rem 0 0.45rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__desc {
        font-size: 0.68rem !important;
        line-height: 1.35 !important;
        padding: 0 0.45rem !important;
        -webkit-line-clamp: 2;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-product-card__price,
    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__price {
        font-size: 0.95rem;
        padding: 0.35rem 0.45rem 0.4rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__volume-hint {
        font-size: 0.65rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__actions {
        padding: 0.4rem 0.45rem 0.55rem;
        gap: 0.35rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__qty-label {
        font-size: 0.65rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__qty {
        padding: 0.35rem 0.4rem;
        font-size: 0.85rem;
    }

    .nmn-shop .nmn-shop-product-tile .nmn-shop-tile__btn {
        font-size: 0.68rem;
        padding: 0.42rem 0.3rem;
    }
    
    .nmn-product-card,
    .nmn-shop .nmn-product-card:not(.nmn-shop-product-tile) {
        width: 100% !important;
        min-width: 0;
    }
    
    .nmn-hero__inner h2 {
        font-size: 1.5rem;
    }
}

/* =========================================================
   NMN Expert - Menu dropdown (Hoe werkt NMN)
   ========================================================= */
.menu-item-dropdown {
    position: relative;
}
.menu-item-dropdown .dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    opacity: 0.8;
}
.menu-item-dropdown:hover .dropdown-toggle::after,
.menu-item-dropdown.active .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}
.menu-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    list-style: none;
    margin-left: 0;
}
.menu-item-dropdown:hover .dropdown-menu,
.menu-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.menu-item-dropdown .dropdown-menu li {
    margin: 0;
}
.menu-item-dropdown .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.menu-item-dropdown .dropdown-menu a:hover {
    background-color: rgba(56, 102, 65, 0.08);
    color: #386641;
}
@media (max-width: 768px) {
    /* Gesloten submenu mag geen ruimte innemen: opacity/visibility verbergen nog steeds layout bij position:static */
    .menu-item-dropdown .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
        padding: 0.35rem 0;
        max-width: 100%;
        display: none !important;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.12);
    }
    .menu-item-dropdown.active .dropdown-menu {
        display: block !important;
    }
    .menu-item-dropdown .dropdown-menu a {
        padding: 0.45rem 1rem 0.45rem 1.5rem;
        color: #f5f5dc;
        font-size: 0.9rem;
    }
    .menu-item-dropdown .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.12);
        color: #fff;
    }
}
