/* Frontend Styles */
.site-header {
    background: #111;
    color: #fff;
    padding: 15px 0;
}

/* Desktop Nav */
.desktop-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: none;
    /* Hidden on mobile by default, shown via media query */
}

.desktop-nav .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.desktop-nav .nav-link:hover {
    color: #27ae60;
}

/* Mobile Sidebar */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    background: #111;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.sidebar-content {
    padding: 20px;
    overflow-y: auto;
}

.sidebar-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }

    .menu-btn {
        display: none;
    }

    /* Hide Hamburger on Desktop */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.header-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
}

.header-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #27ae60;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 50%;
}

.search-bar {
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: none;
    border-radius: 0;
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.main-container {
    min-height: 80vh;
    padding: 20px 0;
    background: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-thumb {
    height: 250px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Prevent overflow */
    overflow: hidden;
    flex-shrink: 0;
}

.product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

.whatsapp-icon-card {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #25d366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 500;
    transition: background 0.3s;
}

.product-btn:hover {
    background: #555;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Details Page */
.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    cursor: pointer;
    opacity: 0.7;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
    border-color: #333;
}

.details-info h1 {
    margin-top: 0;
    font-size: 1.8rem;
}

.details-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

.details-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.buy-btn {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.buy-btn i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .product-details-container {
        grid-template-columns: 1fr;
    }

    /* Mobile 2 columns */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-thumb {
        height: 180px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 0.9rem;
        height: 36px;
    }

    .product-btn {
        padding: 8px;
        font-size: 0.9rem;
    }
}

:root {
    --primary-color: #333;
    --accent-color: #27ae60;
    --bg-color: #f4f6f9;
    --text-color: #333;
    --header-bg: #111;
    --sidebar-bg: #212529;
    --sidebar-text: #ecf0f1;
    --card-bg: #fff;
    --border-color: #ddd;
    --input-bg: #fff;
    --input-text: #333;
}

body.dark-mode {
    --primary-color: #eee;
    --bg-color: #222;
    --text-color: #f4f6f9;
    --header-bg: #000;
    --sidebar-bg: #333;
    --sidebar-text: #fff;
    --card-bg: #333;
    --border-color: #444;
    --input-bg: #444;
    --input-text: #fff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* Update Components to use variables if they don't already */
.site-header {
    background: var(--header-bg);
}

.product-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.product-title a {
    color: var(--text-color);
}

.product-price {
    color: var(--text-color);
}

.desktop-nav {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.desktop-nav .nav-link {
    color: var(--text-color);
}

.sidebar-header {
    background: var(--header-bg);
}

.mobile-sidebar {
    background: var(--card-bg);
}

.sidebar-link {
    color: var(--text-color);
    border-color: var(--border-color);
}

.details-price {
    color: var(--text-color);
}

.details-description {
    color: var(--text-color);
    opacity: 0.8;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
}

/* Admin Layout */
/* Admin Layout Refined */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #f1f5f9;
    /* Ensure light gray bg for contrast with white cards */
}


/* =========================================
   ADMIN PANEL PREMIUM SIDEBAR - REFINED
   ========================================= */

#sidebar-wrapper {
    min-height: 100vh;
    width: 280px;
    background: #0f172a;
    /* Deep Slate 900 */
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    /* Slate 400 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-heading {
    padding: 2rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #f8fafc;
    /* Slate 50 */
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-heading i {
    color: #3b82f6;
    /* Blue 500 */
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.list-group-item {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    background-color: transparent !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.list-group-item i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.8;
}

/* Hover State */
.list-group-item:hover {
    color: #e2e8f0;
    /* Slate 200 */
    background: rgba(255, 255, 255, 0.04) !important;
    padding-left: 1.75rem;
    /* Subtle movement */
}

.list-group-item:hover i {
    color: #60a5fa;
    /* Blue 400 */
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

/* Active State */
.list-group-item.active-link {
    color: #fff;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 100%) !important;
    border-left: 4px solid #3b82f6;
}

.list-group-item.active-link i {
    color: #3b82f6;
    opacity: 1;
}

/* Logout Special Style */
.list-group-item.logout {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: #ef4444;
    /* Red 500 */
}

.list-group-item.logout:hover {
    color: #fca5a5;
    background-color: rgba(239, 68, 68, 0.1) !important;
    padding-left: 1.5rem;
    /* No movement for logout */
}

.list-group-item.logout i {
    color: inherit;
}

/* Section Dividers */
.list-group-flush .text-uppercase {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #475569;
    /* Slate 600 */
    font-weight: 700;
}


.admin-header {
    background: #fff;
    /* Force white for header in dashboard */
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

body.dark-mode .admin-header {
    background: #333;
}

.admin-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 2.2rem;
    margin: 10px 0 5px;
    font-weight: 700;
}

.card p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Tables */
.table-responsive {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.85rem;
}

body.dark-mode th {
    color: #aaa;
}

tr:last-child td {
    border-bottom: none;
}

.badge-active,
.badge-inactive {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-active {
    background: #d4edda;
    color: #155724;
}

.badge-inactive {
    background: #f8d7da;
    color: #721c24;
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e9ecef;
}

.login-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    /* width: 100%; REMOVED GLOBAL WIDTH */
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Icon Button (Square/Circle) */
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.btn-icon i {
    font-size: 0.9rem;
}

/* Ghost Button (Transparent) */
.btn-ghost {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: #666;
    /* Default color */
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
}

.btn-ghost.text-success {
    color: #10b981 !important;
    /* Emerald */
}

.btn-ghost.text-danger {
    color: #ef4444 !important;
    /* Red */
}

.alert {
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--accent-color);
}

.card p {
    margin: 5px 0 0;
    color: #777;
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.data-table tr:hover {
    background-color: #f1f1f1;
}

.btn-sm {
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    margin-right: 5px;
}

.btn-sm.edit {
    background-color: #3498db;
}

.btn-sm.delete {
    background-color: #e74c3c;
}

/* Login Page Styles */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f0f2f5;
}

.login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

.login-card .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.login-card label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.login-card input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.login-card input:focus {
    border-color: #27ae60;
    outline: none;
}

.login-card .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px;
    font-size: 1rem;
    background-color: var(--accent-color, #27ae60);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.alert {
    background: #fee;
    color: #e74c3c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid #fcc;
}

/* Bootstrap Admin Overrides */
.admin-body {
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#page-content-wrapper {
    min-width: 100vw;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: -15rem;
        transition: margin .25s ease-out;
    }

    #sidebar-wrapper .sidebar-heading {
        padding: 0.875rem 1.25rem;
        font-size: 1.2rem;
    }

    #sidebar-wrapper .list-group {
        width: 15rem;
    }

    #page-content-wrapper {
        min-width: 100vw;
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: 0;
    }

    @media (min-width: 768px) {
        #sidebar-wrapper {
            margin-left: 0;
        }

        #page-content-wrapper {
            min-width: 0;
            width: 100%;
        }

        body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
            margin-left: -15rem;
        }
    }

    /* Sidebar Active Link */
    .list-group-item.active-link {
        background-color: #2c3e50 !important;
        color: #fff !important;
        border-left: 4px solid var(--accent-color, #27ae60) !important;
    }

    .list-group-item:hover {
        background-color: #34495e !important;
        color: #fff !important;
    }

    /* Card Styling to match reference */
    .card {
        border: none;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .card-header {
        background-color: #fff;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 600;
        padding: 1rem 1.5rem;
    }

    .form-label {
        font-weight: 500;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #6c757d;
    }

    .form-control:focus {
        border-color: var(--accent-color, #27ae60);
        box-shadow: 0 0 0 0.25rem rgba(39, 174, 96, 0.25);
    }

    /* =========================================
   FOOTER & NEWSLETTER STYLES
   ========================================= */

    /* Newsletter Section */
    .newsletter-section {
        background-color: #f8f9fa !important;
        /* Force light bg */
        border-bottom: 1px solid #e9ecef;
    }

    .newsletter-section h5 {
        color: #212529;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .newsletter-section input {
        border: 1px solid #343a40 !important;
        height: 48px;
    }

    .newsletter-section button {
        background-color: #212529 !important;
        color: #fff !important;
        font-weight: 700;
        height: 48px;
        letter-spacing: 1px;
    }

    /* Main Footer */
    .site-footer {
        background-color: #111 !important;
        /* Darker than bg-dark */
        color: #999 !important;
        font-size: 0.9rem;
    }

    .site-footer h6 {
        color: #fff !important;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 1.2rem;
    }

    .site-footer a {
        color: #999 !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .site-footer a:hover {
        color: #fff !important;
        padding-left: 5px;
    }

    .site-footer ul li {
        margin-bottom: 10px;
    }

    .site-footer .d-flex.gap-3 a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #222;
        color: #fff !important;
        border-radius: 50%;
        text-decoration: none;
    }

    .site-footer .d-flex.gap-3 a:hover {
        background: #d4af37;
        /* Gold accent */
        color: #000 !important;
        transform: translateY(-3px);
        padding-left: 0;
        /* Reset link padding hover */
    }

    .site-footer hr {
        border-color: #333 !important;
    }

    /* Payment Icons */
    .site-footer i.fa-cc-visa,
    .site-footer i.fa-cc-mastercard,
    .site-footer i.fa-cc-amex,
    .site-footer i.fa-barcode {
        font-size: 2rem;
        margin-right: 10px;
        color: #555;
        transition: color 0.3s;
    }

    .site-footer i:hover {
        color: #fff;
    }

    .hover-white:hover {
        color: #fff !important;
    }

    .hover-success:hover {
        color: #25d366 !important;
    }

    .copyright-bar {
        font-family: 'Inter', sans-serif;
    }