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

:root {
    --color-midnight: #213366;
    --color-navy: #224081;
    --color-dark-navy: #1B2133;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-twilight: #93A2CC;
    --color-pastel: #E0E9FF;
    --color-electric: #3AD3FF;
    --color-gold: #FFD700;
    
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

/* Theme Variable Mappings */
body.theme-dark {
    --bg-main: var(--color-dark-navy);
    --bg-card: rgba(33, 51, 102, 0.55);
    --bg-card-hover: rgba(34, 64, 129, 0.7);
    --bg-stationary: var(--color-midnight);
    --bg-header: rgba(27, 33, 51, 0.88);
    --bg-header-scrolled: rgba(27, 33, 51, 0.96);
    --bg-footer: var(--color-dark-navy);
    --bg-section-muted: rgba(27, 33, 51, 0.45);
    --bg-input: rgba(27, 33, 51, 0.85);
    --bg-input-subtle: rgba(255, 255, 255, 0.06);
    --bg-dropdown: rgba(27, 33, 51, 0.96);
    --bg-accordion: rgba(33, 51, 102, 0.35);
    --bg-accordion-hover: rgba(33, 51, 102, 0.55);
    --bg-filter-pill: rgba(224, 233, 255, 0.06);
    --text-main: var(--color-white);
    --text-muted: var(--color-twilight);
    --text-subtle: var(--color-pastel);
    --text-nav: var(--color-pastel);
    --text-accent: var(--color-electric);
    --border-color: rgba(224, 233, 255, 0.12);
    --border-hover: rgba(58, 211, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.28);
    --shadow-card-hover: 0 12px 40px rgba(58, 211, 255, 0.12);
}

body.theme-light {
    --bg-main: #F4F7FF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #E8EEFF;
    --bg-stationary: #FFFFFF;
    --bg-header: rgba(255, 255, 255, 0.92);
    --bg-header-scrolled: rgba(255, 255, 255, 0.98);
    --bg-footer: #E0E9FF;
    --bg-section-muted: rgba(224, 233, 255, 0.55);
    --bg-input: #FFFFFF;
    --bg-input-subtle: rgba(33, 51, 102, 0.05);
    --bg-dropdown: rgba(255, 255, 255, 0.98);
    --bg-accordion: rgba(224, 233, 255, 0.65);
    --bg-accordion-hover: rgba(224, 233, 255, 0.85);
    --bg-filter-pill: rgba(33, 51, 102, 0.06);
    --text-main: var(--color-dark-navy);
    --text-muted: var(--color-navy);
    --text-subtle: var(--color-midnight);
    --text-nav: var(--color-midnight);
    --text-accent: #0066CC;
    --border-color: rgba(33, 51, 102, 0.12);
    --border-hover: rgba(34, 64, 129, 0.28);
    --shadow-card: 0 8px 30px rgba(33, 51, 102, 0.08);
    --shadow-card-hover: 0 12px 36px rgba(33, 51, 102, 0.12);
}

/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* Arabic / English Toggle Visibility */
body.lang-en .ar { display: none !important; }
body.lang-ar .en { display: none !important; }

/* Language-specific Typography and Flow */
body.lang-en {
    font-family: var(--font-en);
    direction: ltr;
}

body.lang-ar {
    font-family: var(--font-ar);
    direction: rtl;
}

/* Typography Weights mapping the brand requirements */
.text-light {
    font-weight: 300;
}
body.lang-en .text-light {
    font-weight: 200; /* Extra Light for Bananas VF fallback */
}
.text-normal {
    font-weight: 400;
}
.text-bold {
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--color-navy);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-accent);
}

/* Theme-aware semantic utilities */
.text-theme-main {
    color: var(--text-main) !important;
}

.text-theme-muted {
    color: var(--text-muted) !important;
}

.text-theme-subtle {
    color: var(--text-subtle) !important;
}

.text-theme-accent {
    color: var(--text-accent) !important;
}

.site-section-muted {
    background: var(--bg-section-muted);
    border-color: var(--border-color);
}

.site-footer {
    background: var(--bg-footer);
    border-color: var(--border-color);
}

.site-input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 0.5rem;
    transition: var(--transition-quick);
}

.site-input:focus {
    outline: none;
    border-color: var(--text-accent);
}

.site-input::placeholder {
    color: var(--text-muted);
    opacity: 0.75;
}

.theme-surface-subtle {
    background: var(--bg-input-subtle);
    border: 1px solid var(--border-color);
}

.share-url-box {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

body.theme-light footer .bg-white\/5,
body.theme-light .dropdown-submenu .bg-white\/5 {
    background: var(--bg-input-subtle) !important;
}

/* Base Glassmorphism Styles */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    color: var(--text-main);
}

.glass-panel-hover:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    transition: var(--transition-smooth);
}

/* Buttons */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy), var(--color-midnight));
    border: 1px solid rgba(58, 211, 255, 0.4);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(34, 64, 129, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--color-midnight), var(--color-electric));
    border-color: var(--color-white);
    box-shadow: 0 6px 20px rgba(58, 211, 255, 0.4);
    transform: scale(1.03);
}

/* Secondary Button */
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-twilight);
    color: var(--color-pastel);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
    background: rgba(224, 233, 255, 0.08);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Premium Floating Header */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    padding: 10px 0;
    background: var(--bg-header-scrolled);
    box-shadow: var(--shadow-card);
}

/* Protection Zone for Logo */
.logo-container {
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

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

/* Dropdown Menu Categories */
.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-nav);
    text-decoration: none;
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: var(--transition-quick);
}

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

.dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--bg-dropdown);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 280px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1010;
}

body.lang-ar .dropdown-submenu {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(15px);
}

.nav-item:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

body.lang-ar .nav-item:hover .dropdown-submenu {
    transform: translateX(50%) translateY(0);
}

.dropdown-submenu a {
    display: block;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.dropdown-submenu a:hover {
    background: rgba(58, 211, 255, 0.15);
    color: var(--color-electric);
    padding-left: 18px;
}

body.lang-ar .dropdown-submenu a:hover {
    padding-left: 12px;
    padding-right: 18px;
}

/* Slider Section */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
}

.slide-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 33, 51, 0.4), rgba(27, 33, 51, 0.85));
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide-item.active .slide-image {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.slide-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media(max-width: 768px) {
    .slide-title {
        font-size: 2.2rem;
    }
}

.slide-desc {
    font-size: 1.2rem;
    color: var(--color-pastel);
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(33, 51, 102, 0.5);
    border: 1px solid rgba(224, 233, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background: var(--color-electric);
    color: var(--color-dark-navy);
    box-shadow: 0 0 15px var(--color-electric);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Layout Display Toggle Styles */
.listing-container.grid-view .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.listing-container.list-view .product-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing-container.showcase-view .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

/* Card Visual Configurations for Grid vs List vs Showcase */
.product-card {
    transition: var(--transition-smooth);
    overflow: hidden;
}

.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    background: rgba(224, 233, 255, 0.05);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.06) rotate(1deg);
}

.product-card .content-area {
    padding: 24px;
}

/* List view styling exceptions */
.listing-container.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media(max-width: 768px) {
    .listing-container.list-view .product-card {
        flex-direction: column;
    }
}

.listing-container.list-view .product-card .img-wrapper {
    width: 250px;
    flex-shrink: 0;
}

.listing-container.list-view .product-card img {
    height: 200px;
}

.listing-container.list-view .product-card .content-area {
    flex-grow: 1;
}

/* Showcase view styling exceptions */
.listing-container.showcase-view .product-card {
    border-width: 2px;
    border-color: rgba(93, 162, 204, 0.25);
}

.listing-container.showcase-view .product-card img {
    height: 400px;
}

/* Product Tagging */
.tag-pill {
    display: inline-flex;
    background: rgba(58, 211, 255, 0.08);
    color: var(--color-electric);
    border: 1px solid rgba(58, 211, 255, 0.25);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Visual Stationary Card Style for Single Product / Contact Details */
.stationary-card {
    background: var(--bg-stationary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    padding: 30px;
    overflow: hidden;
    color: var(--text-main);
    box-shadow: var(--shadow-card);
}

.stationary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-electric), var(--color-twilight));
}

body.lang-ar .stationary-card::before {
    background: linear-gradient(to left, var(--color-electric), var(--color-twilight));
}

/* Timeline Layout for History page */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-navy), var(--color-electric), var(--color-dark-navy));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

body.lang-ar .timeline::after {
    left: 50%;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: 'O';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    background: var(--bg-main);
    border: 3px solid var(--color-electric);
    color: var(--color-electric);
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

body.lang-ar .timeline-item.left {
    left: -50%;
}

body.lang-ar .timeline-item.right {
    left: 0;
}

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    body.lang-ar .timeline-item {
        padding-left: 25px;
        padding-right: 70px;
    }
    
    .timeline-item::after {
        left: 20px;
        right: auto;
    }
    
    body.lang-ar .timeline-item::after {
        right: 20px;
        left: auto;
    }
    
    .timeline-item.left,
    .timeline-item.right,
    body.lang-ar .timeline-item.left,
    body.lang-ar .timeline-item.right {
        left: 0% !important;
    }
}

.timeline-item.right::after {
    left: -12px;
    right: auto;
}

@media (max-width: 768px) {
    .timeline-item.right::after {
        left: 20px;
        right: auto;
    }
}

/* Accordion Component */
.accordion-header {
    background: var(--bg-accordion);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-quick);
    color: var(--text-main);
}

.accordion-header:hover {
    background: var(--bg-accordion-hover);
    border-color: var(--border-hover);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content.open {
    max-height: 500px;
    transition: max-height 0.6s ease-in;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Beautiful filter pill */
.filter-pill {
    background: var(--bg-filter-pill);
    border: 1px solid var(--border-color);
    color: var(--text-subtle);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.filter-pill:hover {
    border-color: var(--border-hover);
    color: var(--text-main);
}

.filter-pill.active {
    background: var(--color-electric);
    color: var(--color-dark-navy);
    border-color: var(--color-electric);
    box-shadow: 0 0 10px rgba(58, 211, 255, 0.3);
}

/* Layout toggle buttons (grid / list / showcase) */
.layout-toggle-group {
    background: var(--bg-input-subtle);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.layout-btn {
    background: transparent;
    color: var(--text-muted);
    border-radius: 0.375rem;
    transition: var(--transition-quick);
}

.layout-btn:hover {
    color: var(--text-main);
}

.layout-btn.active {
    background: var(--color-electric);
    color: var(--color-dark-navy);
}

/* Language & theme control pills */
.control-pill {
    background: var(--bg-input-subtle);
    border: 1px solid var(--border-color);
}

.control-pill .lang-btn {
    color: var(--text-muted);
}

.control-pill .lang-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
}

body.theme-light .control-pill .lang-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
}

/* Free shipping block styling */
.shipping-highlight {
    background: rgba(58, 211, 255, 0.08);
    border-left: 4px solid var(--color-electric);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

body.lang-ar .shipping-highlight {
    border-left: none;
    border-right: 4px solid var(--color-electric);
    border-radius: 8px 0 0 8px;
}

/* Custom Share Modal */
.share-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 1100;
    width: 90%;
    max-width: 450px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.share-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.share-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.share-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------
   Theme Specific Overrides
   ---------------------------------------------------- */

/* Logo Display Switch */
body.theme-dark .logo-dark { display: none !important; }
body.theme-light .logo-light { display: none !important; }

/* Theme Toggle Icons */
body.theme-dark .theme-icon-light { display: inline-block !important; }
body.theme-dark .theme-icon-dark { display: none !important; }
body.theme-light .theme-icon-light { display: none !important; }
body.theme-light .theme-icon-dark { display: inline-block !important; }

/* Tailwind utility remapping for theme-aware text */
body.theme-light .text-white {
    color: var(--text-main) !important;
}

body.theme-light .text-twilight {
    color: var(--text-muted) !important;
}

body.theme-light .text-pastel {
    color: var(--text-subtle) !important;
}

body.theme-light .text-electric {
    color: var(--text-accent) !important;
}

body.theme-dark .text-white {
    color: var(--color-white);
}

body.theme-dark .text-twilight {
    color: var(--color-twilight);
}

body.theme-dark .text-pastel {
    color: var(--color-pastel);
}

/* Exception: Hero Slider (dark image overlay — text stays light) */
body.theme-light .hero-slider h1,
body.theme-light .hero-slider p,
body.theme-light .slide-content h1,
body.theme-light .slide-content p,
body.theme-light .slide-title,
body.theme-light .slide-desc {
    color: var(--color-white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

body.theme-light .slide-desc {
    color: var(--color-pastel) !important;
}

/* Exception: badges on images (always light text on dark/red bg) */
body.theme-light .bg-red-600\/95,
body.theme-light .bg-red-600\/95 span {
    color: var(--color-white) !important;
}

body.theme-light .bg-dark-navy\/80,
body.theme-light .bg-dark-navy\/80 span {
    color: var(--color-electric) !important;
}

/* Secondary Button */
body.theme-light .btn-secondary-custom {
    color: var(--color-dark-navy) !important;
    border-color: var(--color-twilight) !important;
}

body.theme-light .btn-secondary-custom:hover {
    background: rgba(33, 51, 102, 0.06) !important;
    color: var(--color-navy) !important;
    border-color: var(--color-navy) !important;
}

body.theme-dark .btn-secondary-custom {
    color: var(--color-pastel);
}

/* Category hero gradient banner */
body.theme-light .category-hero-banner {
    background: linear-gradient(to bottom, rgba(224, 233, 255, 0.65), transparent) !important;
}

/* Subtle borders inside cards */
body.theme-light .border-white\/5,
body.theme-light .border-white\/10,
body.theme-light .border-white\/15 {
    border-color: var(--border-color) !important;
}

body.theme-dark .product-card .content-area {
    color: var(--text-main);
}

/* Tag Pills */
body.theme-light .tag-pill {
    background: rgba(34, 64, 129, 0.06) !important;
    color: var(--color-navy) !important;
    border-color: rgba(34, 64, 129, 0.15) !important;
}

/* Free Shipping Highlight */
body.theme-light .shipping-highlight {
    background: rgba(34, 64, 129, 0.05) !important;
    border-color: var(--color-navy) !important;
}

body.theme-light .shipping-highlight p {
    color: var(--color-dark-navy) !important;
}

/* Footer nested card */
body.theme-light footer .stationary-card {
    background-color: var(--color-white) !important;
}

/* Share modal copy button */
body.theme-light #copy-link-btn {
    background-color: var(--color-navy) !important;
    color: var(--color-white) !important;
}

body.theme-light #copy-link-btn:hover {
    background-color: var(--color-midnight) !important;
}

/* Mobile menu hamburger */
body.theme-light header .md\:hidden.text-white {
    color: var(--text-main) !important;
}
