/* ==========================================================================
   Lanolina Anhidra Pura (Ceras Orense) - Estilos Principales
   Paleta: Verde Oliva, Tonos Crema, Textos Oscuros & Acentos Cosméticos
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-cream: #FAF8F5;
    --bg-cream-alt: #F4F0EA;
    --primary-olive: #5C6F52;
    --primary-dark: #3F4F37;
    --primary-light: #EBF0E6;
    --secondary-olive: #8E9B82;
    --text-dark: #2D3B28;
    --text-muted: #5B6C55;
    --card-bg: #FFFFFF;
    --border-subtle: #E2E8DC;
    --border-accent: #C5D1BD;
    --accent-gold: #D4AF37;
    
    --mp-blue: #009EE3;
    --mp-blue-hover: #0082BD;
    --wa-green: #25D366;
    --wa-green-hover: #1EAE53;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(45, 59, 40, 0.05);
    --shadow-md: 0 8px 24px rgba(45, 59, 40, 0.08);
    --shadow-lg: 0 16px 40px rgba(45, 59, 40, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Barra de Anuncio Superior */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header & Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(250, 248, 245, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.72rem;
    color: var(--primary-olive);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-olive);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Botones Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-olive);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(92, 111, 82, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 111, 82, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-olive);
    color: var(--primary-olive);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.btn-mp {
    background-color: var(--mp-blue);
    color: #FFFFFF;
    width: 100%;
}

.btn-mp:hover {
    background-color: var(--mp-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 158, 227, 0.3);
}

.btn-wa {
    background-color: var(--wa-green);
    color: #FFFFFF;
}

.btn-wa:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Badges */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--border-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
    padding: 36px 0 60px 0;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(142, 155, 130, 0.12) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-olive);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-bullets {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    color: var(--primary-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-visual {
    position: relative;
}

.hero-card-frame {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge-icon {
    font-size: 1.5rem;
}

.floating-badge-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.floating-badge-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* SECCIONES TITULARES */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: var(--primary-olive);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* SECCIÓN BENEFICIOS (4 PILARES) */
.benefits-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-accent);
}

.benefit-icon-box {
    width: 54px;
    height: 54px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-olive);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECCIÓN USOS Y APLICACIONES */
.uses-section {
    padding: 90px 0;
}

.uses-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.uses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.use-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--primary-olive);
    transition: all var(--transition-normal);
}

.use-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.use-card-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.use-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.use-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.uses-visual-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uses-visual-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
}

.uses-visual-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.uses-visual-card:hover img {
    transform: scale(1.04);
}

.uses-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 59, 40, 0.85) 0%, transparent 100%);
    padding: 20px;
    color: #FFFFFF;
}

.uses-visual-title {
    font-weight: 700;
    font-size: 1rem;
}

/* SECCIÓN PRODUCTOS / PRESENTACIONES */
.products-section {
    padding: 90px 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.product-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
}

.product-card.featured {
    border: 2px solid var(--primary-olive);
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-olive);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(92, 111, 82, 0.3);
}

.product-img-wrapper {
    height: 220px;
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.product-body {
    flex-grow: 1;
}

.product-size-tag {
    color: var(--primary-olive);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 4px 0 12px 0;
}

.product-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-specs {
    list-style: none;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px dashed var(--border-subtle);
    border-bottom: 1px dashed var(--border-subtle);
}

.product-specs li {
    font-size: 0.86rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs li:last-child {
    margin-bottom: 0;
}

.spec-check {
    color: var(--primary-olive);
    font-weight: bold;
}

.product-price-box {
    margin-bottom: 20px;
}

.product-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* SECCIÓN VENTA AL POR MAYOR */
.wholesale-section {
    padding: 90px 0;
}

.wholesale-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #253320 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.wholesale-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 155, 130, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.wholesale-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.wholesale-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #EBF0E6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.wholesale-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.wholesale-banner p {
    font-size: 1.05rem;
    color: #E2E8DC;
    margin-bottom: 28px;
    line-height: 1.6;
}

.wholesale-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.wholesale-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

/* SECCIÓN FAQ (PREGUNTAS FRECUENTES) */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
    color: var(--primary-olive);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
    color: var(--primary-olive);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

/* FOOTER */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-title {
    color: #FFFFFF;
    font-size: 1.4rem;
}

.footer-brand .brand-subtitle {
    color: var(--secondary-olive);
}

.footer-desc {
    margin-top: 14px;
    color: #A3B19B;
    font-size: 0.88rem;
    max-width: 360px;
    line-height: 1.6;
}

.footer-title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #A3B19B;
    transition: color var(--transition-fast);
}

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

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #A3B19B;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: #8E9B82;
    font-size: 0.82rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--text-dark);
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 360px;
    border-left: 4px solid var(--primary-olive);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    background-color: var(--wa-green-hover);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-bullets {
        justify-content: center;
    }

    .uses-layout {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 64px;
    }

    .hero {
        padding: 16px 0 32px 0;
    }

    .badge-tag {
        margin-bottom: 12px;
        font-size: 0.78rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

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

    .wholesale-banner {
        padding: 36px 24px;
    }

    .wholesale-features {
        grid-template-columns: 1fr;
    }
    
    .header-actions .btn-wa {
        display: none;
    }

    .floating-wa-btn {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        left: auto;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .floating-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 16px;
    }
}
