/* ============================================
   E-ORDER CATALOG — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #dbeafe;
    --accent-rgb: 37, 99, 235;

    --success: #059669;
    --success-light: #d1fae5;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;

    /* Neutrals */
    --text-dark: #0f172a;
    --text-main: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 8px 24px -4px rgba(var(--accent-rgb), 0.25);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

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

::selection {
    background: var(--accent-light);
    color: var(--accent-hover);
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 0.6rem 0;
    transition: var(--transition);
    z-index: 1040;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 0.4rem 0;
}

.navbar-brand img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 38px;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent) !important;
    background-color: var(--accent-light);
}

.nav-link.active {
    color: var(--accent) !important;
    font-weight: 600;
}

/* Navbar Auth Buttons */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1.1rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--transition) !important;
}

.nav-btn-outline {
    border: 1.5px solid var(--border-color) !important;
    color: var(--text-main) !important;
    background: transparent !important;
}

.nav-btn-outline:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: var(--accent-light) !important;
}

.nav-btn-primary {
    background: var(--accent) !important;
    color: #fff !important;
    border: 1.5px solid var(--accent) !important;
}

.nav-btn-primary:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 0.5rem;
    animation: fadeUp 0.2s ease-out;
    margin-top: 0.5rem !important;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
    }

    .navbar-nav .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem !important;
        margin-top: 0.25rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    overflow: hidden;
    background: var(--bg-white);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-elevated {
    box-shadow: var(--shadow-md);
}

.card-elevated:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
    background-color: var(--bg-white);
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.7;
}

.form-control::-webkit-input-placeholder {
    color: var(--text-light);
}

.form-control:-ms-input-placeholder {
    color: var(--text-light);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 3.5rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #7c3aed, #ec4899);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #e2e8f0;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    align-items: flex-start;
}

.footer-contact li i {
    margin-top: 3px;
    color: var(--accent);
    font-size: 0.8rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    margin-right: 0.5rem;
}

.social-link:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.8rem;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-xs);
}

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

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.02em;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
}

.btn-action {
    width: 100%;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   CATALOG SIDEBAR
   ============================================ */
.filter-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.category-link:hover {
    background: var(--accent-light);
    color: var(--accent);
    transform: translateX(3px);
}

.category-link.active {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.category-link i {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.gallery-main {
    position: relative;
    padding-top: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: var(--transition-slow);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.thumb-item {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-white);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-xs);
}

.thumb-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.thumb-item:hover {
    border-color: var(--accent);
    opacity: 0.85;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.badge-stock {
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-stock.in-stock {
    background-color: var(--success-light);
    color: var(--success);
}

.badge-stock.out-of-stock {
    background-color: var(--danger-light);
    color: var(--danger);
}

.btn-order {
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.product-description-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    border: none;
    border-bottom: 2.5px solid transparent;
    padding: 1rem 1.5rem;
    background: transparent;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.product-description-tabs .nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.product-description-tabs .nav-link:hover:not(.active) {
    color: var(--text-main);
    border-bottom-color: var(--border-color);
}

.full-description-wrapper {
    line-height: 1.85;
    color: var(--text-main);
}

/* ============================================
   SORT DROPDOWN
   ============================================ */
.sort-dropdown {
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.sort-dropdown:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-body);
    padding: 2rem 0;
}

.auth-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--bg-white);
}

.auth-brand-panel {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e3a5f 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-brand-panel h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.auth-brand-panel p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.auth-form-panel {
    padding: 2.5rem;
}

.auth-form-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-form-panel .subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: var(--radius);
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background-color: var(--success-light);
    color: var(--success);
}

.alert-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    font-size: 0.85rem;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    font-weight: 500;
}

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

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #1e3a5f 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-button {
    padding: 0.7rem 1.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-xl) !important;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.floating-button:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ============================================
   SLIDER / BANNER
   ============================================ */
.slider-img {
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* ============================================
   NEWS / GRID
   ============================================ */
.news-card, .feature-card, .site-card {
    background: var(--bg-white);
    height: 100%;
}

.news-grid, .sites-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.news-grid::-webkit-scrollbar, .sites-grid::-webkit-scrollbar {
    display: none;
}

.news-card, .site-card {
    min-width: 300px;
    flex-shrink: 0;
}

.news-img-wrapper img, .info-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ============================================
   FEATURE GRADIENTS
   ============================================ */
.feature-gradient-1 { background-color: #fef2f2; border-color: #fecaca; color: #991b1b; }
.feature-gradient-2 { background-color: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.feature-gradient-3 { background-color: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.feature-gradient-4 { background-color: #fefce8; border-color: #fef08a; color: #854d0e; }

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination .page-link {
    border-radius: var(--radius) !important;
    margin: 0 3px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent-light);
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767.98px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    
    .product-price {
        font-size: 1rem;
    }

    .slider-img {
        height: 220px;
        border-radius: var(--radius);
    }

    .product-info-card {
        padding: 1.25rem;
    }

    .btn-order {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .auth-brand-panel {
        padding: 2rem 1.5rem;
    }

    .auth-form-panel {
        padding: 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .floating-button span {
        display: none;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-button i {
        font-size: 1.25rem;
    }
}