/* Global Typography */
body { font-family: 'Tajawal', sans-serif; }
h1, h2, h3, h4, h5, h6, .brand-text { font-family: 'Cairo', sans-serif; }

/* Dark Mode Overrides */
[data-theme="dark"] body { background-color: #121212; color: #e0e0e0; }
[data-theme="dark"] .navbar, [data-theme="dark"] .filter-section, [data-theme="dark"] .card { background-color: #1e1e1e !important; color: #e0e0e0; border-color: #333; }
[data-theme="dark"] .navbar .btn-outline-danger { color: #ff6b6b; border-color: #ff6b6b; }
[data-theme="dark"] .dropdown-menu { background-color: #2c2c2c; }
[data-theme="dark"] .dropdown-item { color: #e0e0e0; }
[data-theme="dark"] .dropdown-item:hover { background-color: #3d3d3d; }
[data-theme="dark"] .text-muted { color: #a0a0a0 !important; }
[data-theme="dark"] .card-img-container { background: #333; }
[data-theme="dark"] .table-light, [data-theme="dark"] th { background-color: #2c2c2c; color: #fff; }
[data-theme="dark"] .table { color: #e0e0e0; }
[data-theme="dark"] .bg-white { background-color: #1e1e1e !important; }
[data-theme="dark"] footer.bg-white { border-top-color: #333 !important; }
[data-theme="dark"] a.text-dark { color: #e0e0e0 !important; }
[data-theme="dark"] .badge.bg-light { background-color: #333 !important; color: #e0e0e0 !important; }
[data-theme="dark"] .btn-outline-secondary { color: #bbb; border-color: #555; }
[data-theme="dark"] .btn-outline-secondary:hover { background-color: #333; color: #fff; }

/* Skeleton Loaders */
.skeleton-loader {
    animation: skeleton-pulse 1.5s infinite ease-in-out;
    background-color: #e0e0e0;
    color: transparent !important;
}
[data-theme="dark"] .skeleton-loader { background-color: #333; }
@keyframes skeleton-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
img.skeleton-loader { min-height: 200px; }

/* Empty States */
.empty-state { padding: 60px 20px; text-align: center; }
.empty-state-svg { max-width: 200px; margin-bottom: 20px; opacity: 0.8; }

/* Branding & Logo Centering */
.navbar-brand-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    z-index: 1001;
    transition: all 0.3s ease;
}
.navbar-brand-centered:hover { opacity: 0.9; }

.brand-text {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    gap: 4px;
}
.brand-red { color: #e63946; text-shadow: 0 2px 4px rgba(230,57,70,0.1); }
.brand-black { color: #1d3557; transition: color 0.3s; }
[data-theme="dark"] .brand-black { color: #f1faee; }
.force-opacity { opacity: 1 !important; }

@media (max-width: 576px) {
    .brand-text { font-size: 1.3rem; }
    .navbar-brand-centered { gap: 3px; }
    
    /* Fix card height clipping on mobile */
    .offer-card { 
        height: auto !important; 
        margin-bottom: 10px;
    }
    .card-footer { padding-top: 10px !important; }
}

/* Clickable Card Area Styles */
.card-clickable-area {
    display: block;
    transition: background-color 0.2s ease;
}
.card-clickable-area:hover {
    background-color: rgba(0,0,0,0.015);
}
[data-theme="dark"] .card-clickable-area:hover {
    background-color: rgba(255,255,255,0.02);
}

/* Favorite Button Styles */
.favorite-btn {
    position: absolute;
    bottom: 45px; /* Raised to avoid image counter */
    left: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #666;
    padding: 0;
}
[data-theme="dark"] .favorite-btn {
    background: rgba(30, 30, 30, 0.9);
    color: #aaa;
}
.favorite-btn:hover {
    transform: scale(1.1);
    background: #fff;
}
[data-theme="dark"] .favorite-btn:hover {
    background: #333;
}
.favorite-btn.active {
    color: #e63946;
}
.fav-icon {
    font-size: 1.25rem !important;
    transition: all 0.3s ease;
    font-variation-settings: 'FILL' 0;
}
.favorite-btn.active .fav-icon {
    animation: heart-beat 0.3s ease-out;
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Detail Page Specific */
.fav-large {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    left: auto;
    top: auto;
}
.fav-large .fav-icon {
    font-size: 1.8rem !important;
}

/* Sort Buttons - Favorites Active State */
.sort-btn#favorites-toggle.active {
    background-color: #e63946 !important;
    border-color: #e63946 !important;
    color: white !important;
}
.sort-btn#favorites-toggle.active .fav-icon-toggle {
    color: white !important;
    font-variation-settings: 'FILL' 1 !important;
}

/* Favorites View Animation */
body.favorites-only .col-6.col-md-4.col-lg-3 {
    animation: fadeIn 0.4s ease-in-out;
}

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

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

/* Force visibility for cards to prevent AOS-related hiding */
.col-6.col-md-4.col-lg-3 {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Splash Screen & Storytelling Animation */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-svg-container {
    width: 250px;
    height: 250px;
}

/* SVG Path Animations */
.logo-bag {
    transform-origin: center;
    animation: bag-reveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.logo-handle {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: handle-reveal 0.5s ease 0.6s forwards;
}

.logo-y {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: y-reveal 1s ease 1s forwards;
}

.logo-map {
    opacity: 0;
    transform: translateY(20px);
    animation: map-reveal 0.8s ease 1.8s forwards;
}

@keyframes bag-reveal {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes handle-reveal {
    to { stroke-dashoffset: 0; }
}

@keyframes y-reveal {
    to { stroke-dashoffset: 0; }
}

@keyframes map-reveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 50%, #7b0d1e 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-bg-circle-1 {
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
}

.hero-bg-circle-2 {
    bottom: -60px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-title-main {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Autocomplete Dropdown */
.autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    list-style: none;
    padding: 6px 0;
    margin-top: 4px;
    overflow: hidden;
}

[data-theme="dark"] .autocomplete-list {
    background: #2c2c2c;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    transition: background 0.15s;
}

[data-theme="dark"] .autocomplete-item {
    color: #e0e0e0;
}

.autocomplete-item:hover {
    background: #fff0f1;
}

[data-theme="dark"] .autocomplete-item:hover {
    background: #3d3d3d;
}

.autocomplete-icon {
    font-size: 18px !important;
    color: #e63946;
}

/* Footer Enhancements */
.footer-main {
    background-color: #fff;
    border-top: 1px solid #eee;
}

[data-theme="dark"] .footer-main {
    background-color: #1e1e1e;
    border-top-color: #333;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #e63946;
}

[data-theme="dark"] .footer-link {
    color: #aaa;
}

.footer-heading {
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .footer-heading {
    color: #eee;
}

/* --- PREMIUM UI & FOMO HACKS --- */
/* Enhanced Card Look */
.offer-card {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #ffffff;
}
.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15) !important;
}

[data-theme="dark"] .offer-card:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15) !important;
}

/* Image Zoom on Hover */
.card-img-container {
    overflow: hidden;
    border-radius: 18px 18px 0 0 !important;
}
.card-img-container img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.offer-card:hover .card-img-container img {
    transform: scale(1.08);
}

/* Vibrant Badges & FOMO */
.status-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
}
.badge-urgent {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 8, 68, 0.4) !important;
    animation: pulse-urgent 2s infinite;
    border: none;
}
@keyframes pulse-urgent {
    0% { box-shadow: 0 0 0 0 rgba(255, 8, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 8, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 8, 68, 0); }
}

/* Active Viewers Badge (Fake dynamic FOMO) */
.active-viewers-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #e63946;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    z-index: 20;
}
.active-viewers-badge .dot {
    width: 10px;
    height: 10px;
    background-color: #e63946;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }

/* Store Badge floating look */
.store-badge {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1d3557 !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    font-weight: bold;
    transition: all 0.3s ease;
}
.store-badge:hover {
    background: #e63946 !important;
    color: #fff !important;
}
[data-theme="dark"] .store-badge {
    background: rgba(40, 40, 40, 0.9) !important;
    color: #fff !important;
    border-color: #444 !important;
}

[data-theme="dark"] .active-viewers-badge {
    background: rgba(30, 30, 30, 0.9);
}

/* ===== STORE PROFILE PAGE ===== */

/* Cover Section */
.sp-cover {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 40%, #7b0d1e 100%);
}
.sp-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sp-cover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    z-index: 1;
}
.sp-cover-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
    z-index: 1;
}

@media (max-width: 576px) {
    .sp-cover { height: 200px; }
}

/* Logo Section */
.sp-logo-section {
    position: relative;
    margin-top: -65px;
    z-index: 10;
    padding: 0 15px;
}
.sp-logo-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.sp-logo-wrapper:hover { transform: scale(1.05); }
.sp-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.sp-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    border-radius: 50%;
}

[data-theme="dark"] .sp-logo-wrapper {
    background: #1e1e1e;
    border-color: #1e1e1e;
}

@media (max-width: 576px) {
    .sp-logo-wrapper { width: 105px; height: 105px; }
    .sp-logo-section { margin-top: -52px; }
    .sp-logo-placeholder { font-size: 2.8rem; }
}

/* Store Info */
.sp-info {
    text-align: center;
    padding: 15px 15px 0;
}
.sp-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1d3557;
    margin: 10px 0 5px;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sp-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.sp-location {
    color: #6c757d;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}
.sp-location .material-symbols-outlined { font-size: 1.1rem; color: #e63946; }

[data-theme="dark"] .sp-name { color: #f1faee; }
[data-theme="dark"] .sp-location { color: #a0a0a0; }

@media (max-width: 576px) {
    .sp-name { font-size: 1.4rem; }
    .sp-location { font-size: 0.9rem; }
}

/* Stats Bar */
.sp-stats-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
    margin: 15px auto 0;
    max-width: 500px;
    flex-wrap: wrap;
}
.sp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 22px;
    background: #f8f9fa;
    border-radius: 14px;
    min-width: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sp-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.sp-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e63946;
    font-family: 'Cairo', sans-serif;
    line-height: 1;
}
.sp-stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 4px;
    font-weight: 600;
}

[data-theme="dark"] .sp-stat-item { background: #2c2c2c; }
[data-theme="dark"] .sp-stat-label { color: #a0a0a0; }

/* Action Buttons */
.sp-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 15px 0;
    flex-wrap: wrap;
}
.sp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}
.sp-btn:hover { transform: translateY(-3px); }

.sp-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.sp-btn-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
    color: white;
}

.sp-btn-map {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    box-shadow: 0 6px 20px rgba(66,133,244,0.35);
}
.sp-btn-map:hover {
    box-shadow: 0 10px 30px rgba(66,133,244,0.45);
    color: white;
}

.sp-btn-share {
    background: #f0f0f0;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.sp-btn-share:hover { background: #e0e0e0; color: #333; }

[data-theme="dark"] .sp-btn-share { background: #2c2c2c; color: #e0e0e0; }
[data-theme="dark"] .sp-btn-share:hover { background: #3d3d3d; }

.sp-btn .material-symbols-outlined { font-size: 1.3rem; }

@media (max-width: 576px) {
    .sp-btn { padding: 10px 18px; font-size: 0.85rem; }
    .sp-btn .material-symbols-outlined { font-size: 1.1rem; }
    .sp-btn span.btn-label { display: none; }
}

/* Divider */
.sp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 25px 0;
}
[data-theme="dark"] .sp-divider {
    background: linear-gradient(90deg, transparent, #333, transparent);
}

/* Offers Section */
.sp-offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.sp-offers-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1d3557;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}
.sp-offers-title .material-symbols-outlined { color: #e63946; font-size: 1.5rem; }
.sp-offers-count {
    background: #e63946;
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

[data-theme="dark"] .sp-offers-title { color: #f1faee; }

/* Empty State */
.sp-empty {
    text-align: center;
    padding: 60px 20px;
}
.sp-empty .material-symbols-outlined {
    font-size: 5rem;
    color: #dee2e6;
    display: block;
    margin-bottom: 15px;
}
.sp-empty p {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 600;
}
[data-theme="dark"] .sp-empty .material-symbols-outlined { color: #444; }
[data-theme="dark"] .sp-empty p { color: #888; }

/* Profile Card Container */
.sp-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
[data-theme="dark"] .sp-card {
    background: #1e1e1e;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes sp-fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.sp-animate {
    animation: sp-fadeUp 0.6s ease-out forwards;
}
.sp-animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.sp-animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.sp-animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.sp-animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* New Multi-Image Badge Style */
.multi-image-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    padding: 3px 9px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.multi-image-badge .material-symbols-outlined {
    font-size: 0.9rem !important;
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:not(.show) {
    transform: translateY(20px);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
    background: linear-gradient(135deg, #c1121f, #e63946);
}

.back-to-top .material-symbols-outlined {
    font-size: 24px;
    font-weight: bold;
}

/* Footer Enhancements */
.footer-links li a {
    transition: all 0.3s ease;
}
.footer-links li a:hover {
    color: #e63946 !important;
    padding-right: 5px;
}
.footer-links li a .material-symbols-outlined {
    transition: transform 0.3s ease;
}
.footer-links li a:hover .material-symbols-outlined {
    transform: scale(1.2);
}
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-links a:hover {
    transform: translateY(-5px);
    background-color: #e63946 !important;
    border-color: #e63946 !important;
    color: white !important;
}
 

