/* 
   Funeraria El Águila - Stylesheet
   Designed with Dignity, Respect, and Premium Aesthetics
*/

/* Core Design Tokens & Variables */
:root {
    /* Color Palette */
    --bg-primary: #13151a;      /* Deep Slate Black */
    --bg-secondary: #1b1e25;    /* Dark Charcoal */
    --bg-card: #22262f;         /* Card Slate */
    --bg-light: #f8f9fb;        /* Warm Ivory/Soft Gray */
    --bg-light-card: #ffffff;   /* Pure White Card */
    
    --accent: #d4af37;          /* Classic Gold */
    --accent-hover: #e6c148;    /* Brighter Gold */
    --accent-rgb: 212, 175, 55;
    
    --text-light-primary: #f3f5f8;  /* Off-White */
    --text-light-muted: #a0a8b5;    /* Cool Gray */
    --text-dark-primary: #212529;   /* Near Black */
    --text-dark-muted: #5a626a;     /* Soft Gray */
    
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-dark-accent: rgba(212, 175, 55, 0.15);
    --border-light: rgba(0, 0, 0, 0.08);
    
    --success: #2ec4b6;
    --whatsapp: #25d366;
    --whatsapp-hover: #20ba5a;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.35);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-light-primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light-primary);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

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

.icon-btn {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
}

/* Top Info Bar */
.top-bar {
    background-color: #0b0d10;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-light-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-item a:hover {
    color: var(--accent);
}

.top-social a {
    display: inline-flex;
    align-items: center;
}

.top-social a:hover {
    color: var(--accent);
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(19, 21, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(11, 13, 16, 0.98);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 42px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light-primary);
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--text-light-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light-primary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--text-light-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobile Menu Open States */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero {
    height: calc(90vh - var(--header-height));
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: var(--text-light-muted);
}

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

/* Trust Bar */
.trust-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-dark);
    padding: 40px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.trust-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light-primary);
    margin-bottom: 6px;
}

.trust-desc {
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

/* Section Templates */
.services, .faq, .contact {
    padding: 100px 0;
}

.section-title-area {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title-area h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-lead {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light-muted);
}

.section-lead-sm {
    font-size: 1rem;
    color: var(--text-light-muted);
    margin-bottom: 36px;
}

/* Services Section */
.services {
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.service-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--text-light-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

/* Previsión Section */
.prevision {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.prevision-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.prevision-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.prevision-text h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.prevision-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.prevision-list {
    margin-bottom: 36px;
}

.prevision-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.icon-li {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.prevision-list li strong {
    color: var(--text-light-primary);
}

.card-glass {
    background: rgba(34, 38, 47, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--accent);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.card-glass h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-glass p {
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--text-light-muted);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-primary);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 12px;
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-light-primary);
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-light-muted);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-content-inner {
    padding: 0 8px 24px 8px;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.faq-content-inner a {
    color: var(--accent);
}

/* Contact Section */
.contact {
    background-color: var(--bg-secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.detail-text strong {
    display: block;
    color: var(--text-light-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 0.95rem;
}

.link-highlight {
    color: var(--accent);
    font-weight: 500;
}

.link-highlight:hover {
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.card-glass-form {
    background: rgba(19, 21, 26, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 40px;
}

.card-glass-form h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.card-glass-form p {
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    background-color: rgba(11, 13, 16, 0.5);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text-light-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-alert {
    padding: 16px;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.success-alert {
    background-color: rgba(46, 196, 182, 0.1);
    border: 1px solid var(--success);
    color: #d1f7f4;
}

.icon-alert {
    width: 20px;
    height: 20px;
    fill: var(--success);
    flex-shrink: 0;
}

/* Footer */
.main-footer {
    background-color: #0b0d10;
    border-top: 1px solid var(--border-dark);
    padding: 80px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.logo-area-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-img-footer {
    height: 44px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-emergency h4 {
    color: var(--text-light-primary);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-emergency h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.emergency-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.emergency-btn:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.icon-emergency {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    background-color: #07080a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
    font-size: 0.8rem;
}

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

.social-links-bottom a {
    color: var(--text-light-muted);
}

.social-links-bottom a:hover {
    color: var(--accent);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 90;
}

.action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.action-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.call-action {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.call-action:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

.whatsapp-action {
    background-color: var(--whatsapp);
    animation: float-pulse 2s infinite;
}

.whatsapp-action:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Animations CSS */
.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prevision-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.85rem !important; }
    
    /* Logo adjustments for mobile */
    .logo-img {
        height: 38px;
    }
    .logo-text {
        font-size: 1.15rem;
    }
    
    /* Header menu */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-dark);
        padding: 100px 40px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
        z-index: 105;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-top: 16px;
        width: 100%;
    }
    
    .nav-cta a {
        width: 100%;
    }
    
    /* Hero */
    .hero {
        text-align: center;
        height: auto;
        padding: 100px 0 80px 0;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Trust bar */
    .trust-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-item {
        padding-bottom: 8px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating actions */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .action-btn {
        width: 48px;
        height: 48px;
    }
}
