/* ===== LAYOUT CSS - Stiluri globale pentru _Layout.cshtml ===== */

:root {
    --nav-height: 50px;
}

body {
    font-family: 'Noto Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* ===== MAIN CONTENT CONTAINER ===== */
main.container-fluid {
    padding-top: 0 !important;
}

/* ===== NAVBAR - Modern Style ca Hero ===== */
.navbar.fishing-nav {
    background: linear-gradient(135deg, var(--navbar-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 0.2rem 1rem;
    min-height: var(--nav-height);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
}

/* Navbar glassmorphism overlay */
.navbar.fishing-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Decorative elements */
.navbar.fishing-nav::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fishing-nav .navbar-brand,
.fishing-nav .nav-link {
    color: var(--navbar-text-color) !important;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.navbar-brand {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0.5rem;
    position: relative;
}

/* Navbar Logo */
.navbar-logo {
    height: 130px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

/* Logo text fallback */
.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navbar-text-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--footer-text-color);
}

/* Spatiu pentru logo in navbar-brand */
.navbar-brand {
    padding-left: 150px;
}

/* Daca nu exista logo imagine, nu avem nevoie de padding */
.navbar-brand:not(:has(.navbar-logo)) {
    padding-left: 0;
}

/* ===== CART BADGE ===== */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.cart-link {
    position: relative;
}

/* ===== SEARCH BAR - Modern ===== */
.search-form {
    position: relative;
    max-width: 280px;
    z-index: 1;
}

.search-form input {
    border-radius: 20px;
    padding: 0.4rem 0.8rem 0.4rem 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--navbar-text-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-form input:focus {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-color: var(--accent-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.search-form .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== ADMIN TOGGLE ===== */
.admin-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--navbar-text-color);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.admin-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-toggle.on {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ===== COUNTRY SELECTOR - Modern ===== */
.country-selector {
    position: relative;
    z-index: 1;
}

.country-selector .dropdown-toggle {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
    color: var(--navbar-text-color);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-selector .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-selector .dropdown-toggle::after {
    margin-left: 0.25rem;
    vertical-align: middle;
}

.country-selector .country-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.country-selector .country-code {
    font-weight: 600;
    font-size: 0.75rem;
}

.country-selector .dropdown-menu {
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.6rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border: none;
    background: #fff;
}

.country-selector .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.country-selector .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    transform: translateX(4px);
}

.country-selector .dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.country-selector .dropdown-item .item-flag {
    width: 26px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.country-selector .dropdown-item .item-name {
    flex: 1;
    font-weight: 500;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
    top: calc(var(--nav-height) + 8px);
    z-index: 1050;
    height: auto !important;
    max-height: fit-content;
}

.admin-panel > div {
    height: auto !important;
}

/* ===== DEVELOPER CARD ===== */
.dev-card {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    right: 12px;
    z-index: 1040;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.85rem;
    max-width: 210px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.dev-card .dev-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dev-card .dev-icon {
    font-size: 1.15rem;
    color: #4facfe;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.dev-card .dev-title {
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4facfe;
}

.dev-card .dev-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dev-card .dev-name i {
    color: #ffc107;
    font-size: 0.85rem;
}

.dev-card .dev-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dev-card .dev-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.dev-card .dev-contact a:hover {
    color: #4facfe;
    transform: translateX(3px);
}

.dev-card .dev-contact i {
    font-size: 0.78rem;
    width: 16px;
    color: #4facfe;
}

.dev-card.minimized {
    padding: 10px 12px;
}

.dev-card.minimized .dev-body {
    display: none;
}

.dev-card.minimized .dev-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ===== SERVICE CARD ===== */
.service-card {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 12px;
    z-index: 1040;
    background: linear-gradient(135deg, #0d4f3c 0%, #166d4b 50%, #1a8754 100%);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.85rem;
    max-width: 240px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Fara restrictii de height */
    height: auto;
    max-height: none;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.service-card .service-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card .service-icon {
    font-size: 1.15rem;
    color: #4ade80;
}

@keyframes pulse-glow-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.service-card .service-title {
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4ade80;
}

.service-card .service-subtitle {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card .service-subtitle i {
    color: #fbbf24;
    font-size: 0.78rem;
}

.service-card .service-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    margin-bottom: 7px;
}

.service-card .service-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-card .service-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    transition: all 0.2s ease;
}

.service-card .service-contact a:hover {
    color: #4ade80;
    transform: translateX(3px);
}

.service-card .service-contact a i {
    font-size: 0.75rem;
    width: 16px;
    flex-shrink: 0;
}

/* Different colors for different contact types */
.service-card .service-contact a i.bi-telephone-fill {
    color: #4ade80;
}

.service-card .service-contact a i.bi-phone-fill {
    color: #38bdf8;
}

.service-card .service-contact a i.bi-whatsapp {
    color: #25d366;
}

.service-card .service-contact a i.bi-envelope-fill {
    color: #60a5fa;
}

.service-card.minimized {
    padding: 10px 12px;
}

.service-card.minimized .service-body {
    display: none;
}

.service-card.minimized .service-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ===== FOOTER - Ultra Compact & Modern ===== */
.footer {
    background: linear-gradient(135deg, var(--footer-color) 0%, var(--secondary-color) 60%, var(--primary-color) 100%);
    color: var(--footer-text-color);
    padding: 0.5rem 0 0 !important;
    margin: 2rem 0 0 0 !important;
    font-size: 0.78rem;
    overflow: hidden;
    position: relative;
}

/* Footer subtle overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.footer::after {
    display: none;
}

.footer > .container {
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Main Footer Layout - Flexbox pe o linie */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-col {
    flex: 1;
    min-width: 0;
}

.footer-col-company {
    flex: 1.2;
    min-width: 0;
}

.footer-col-social {
    flex: 0 0 auto;
    min-width: auto;
    display: flex;
    align-items: flex-start;
}

/* Footer Logo Column */
.footer-col-logo {
    flex: 0 0 auto;
    min-width: auto;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: transparent;
}

.footer-title {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Footer Links - Pe 2-3 coloane inline */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem 1rem;
    max-width: 280px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    padding: 0.05rem 0;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.footer-link-btn:hover {
    color: var(--accent-color);
}

.footer-link-btn i {
    font-size: 0.55rem;
}

.footer-link-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    padding: 0.05rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    flex: 0 0 auto;
}

.footer-link-text i {
    font-size: 0.55rem;
}

/* Footer Contact - Inline pe o linie */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 1.25rem;
}

.footer-contact span,
.footer-contact a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact i {
    font-size: 0.65rem;
    color: var(--accent-color);
}

/* Footer Social - Compact */
.footer-social {
    display: flex;
    gap: 0.35rem;
    font-size: 1rem;
}

.footer-social a {
    opacity: 0.85;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Footer Bottom - Ultra Compact, pe aceeasi linie */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0 0.1rem !important;
    margin: 0.25rem 0 0 0 !important;
    gap: 0.5rem;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
}

.footer-copyright span {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== FOOTER MODAL ===== */
.footer-modal-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.footer-modal-header {
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
}

.footer-modal-header .modal-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-modal-header .modal-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-modal-body {
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
    max-height: 60vh;
    overflow-y: auto;
}

.footer-modal-body::-webkit-scrollbar {
    width: 5px;
}

.footer-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.footer-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.footer-modal-body p {
    margin-bottom: 0.85rem;
}

.footer-modal-body h1, 
.footer-modal-body h2, 
.footer-modal-body h3 {
    color: var(--accent-color);
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

.footer-modal-body a {
    color: var(--accent-color);
}

.footer-modal-body ul, 
.footer-modal-body ol {
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.footer-modal-body li {
    margin-bottom: 0.4rem;
}

/* ===== MOBILE RESPONSIVE - COMPLET REFACUT ===== */
@media (max-width: 767.98px) {
    /* === VARIABILE MOBILE === */
    :root {
        --nav-height: 50px;
    }
    
    /* === BODY - FIX OVERFLOW === */
    body {
        overflow-x: hidden !important;
    }
    
    /* === ASCUNDE ELEMENTE ADMIN PE MOBIL === */
    .dev-card,
    .admin-panel,
    .admin-toggle {
        display: none !important;
    }
    
    /* === NAVBAR MOBILE - EXACT CA PE DESKTOP === */
    .navbar.fishing-nav {
        padding: 0.2rem 0.5rem !important;
        min-height: var(--nav-height) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1030 !important;
        overflow: visible !important;
    }
    
    .navbar.fishing-nav::after {
        display: none !important;
    }
    
    /* Navbar container */
    .navbar.fishing-nav > .container {
        padding: 0 0.25rem !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }
    
    /* Brand - cu logo floating ca pe desktop */
    .navbar-brand {
        font-size: 0.9rem !important;
        gap: 0.35rem !important;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
        min-width: 0 !important;
        padding-left: 75px !important;
        position: relative !important;
    }
    
    /* Logo pe mobil - FLOATING ca pe desktop, peste navbar */
    .navbar-brand .navbar-logo {
        height: 80px !important;
        width: auto !important;
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }
    
    /* Fallback text logo pe mobil */
    .navbar-brand .logo-text {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    /* Mobile actions - intre logo si hamburger */
    .navbar-mobile-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Country selector mobile - compact */
    .country-selector-mobile {
        position: relative !important;
    }
    
    .country-selector-mobile .dropdown-toggle {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 6px !important;
        padding: 0.3rem 0.4rem !important;
        display: flex !important;
        align-items: center !important;
        cursor: pointer !important;
    }
    
    .country-selector-mobile .dropdown-toggle::after {
        display: none !important;
    }
    
    .country-selector-mobile .country-flag {
        width: 22px !important;
        height: 16px !important;
        border-radius: 2px !important;
    }
    
    .country-selector-mobile .dropdown-menu {
        position: fixed !important;
        top: 55px !important;
        left: 10px !important;
        right: 10px !important;
        bottom: auto !important;
        width: calc(100vw - 20px) !important;
        max-width: none !important;
        max-height: 60vh !important;
        margin: 0 !important;
        border-radius: 12px !important;
        padding: 0.5rem !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
        overflow-y: auto !important;
        z-index: 1060 !important;
    }
    
    .country-selector-mobile .dropdown-item {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.9rem !important;
        min-height: 44px !important;
        border-radius: 8px !important;
        margin-bottom: 0.15rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
    }
    
    .country-selector-mobile .dropdown-item .item-flag {
        width: 24px !important;
        height: 18px !important;
    }
    
    .country-selector-mobile .dropdown-item .item-name {
        font-size: 0.9rem !important;
    }
    
    /* Cart pe mobil */
    .navbar-mobile-actions .cart-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        padding: 0.4rem !important;
        color: var(--navbar-text-color) !important;
    }
    
    .navbar-mobile-actions .cart-link i {
        font-size: 1.2rem !important;
    }
    
    .navbar-mobile-actions .cart-badge {
        position: absolute !important;
        top: 0px !important;
        right: 0px !important;
        width: 16px !important;
        height: 16px !important;
        font-size: 0.55rem !important;
    }
    
    /* Toggler - mai compact */
    .navbar-toggler {
        padding: 0.3rem 0.45rem !important;
        font-size: 1rem !important;
        border: 1px solid rgba(255,255,255,0.25) !important;
        border-radius: 6px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    /* Ascunde country selector si cart din navbar collapse */
    .navbar-collapse .country-selector,
    .navbar-collapse .cart-link {
        display: none !important;
    }
    
    /* Collapse Menu */
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, var(--navbar-color), var(--secondary-color)) !important;
        padding: 0.75rem !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
        max-height: calc(100vh - 55px) !important;
        overflow-y: auto !important;
        z-index: 1025 !important;
    }
    
    .navbar-collapse .navbar-nav {
        width: 100% !important;
    }
    
    /* Nav Links */
    .fishing-nav .nav-link {
        padding: 0.65rem 0.9rem !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        margin: 0.15rem 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .fishing-nav .nav-link:active {
        background: rgba(255,255,255,0.2) !important;
    }
    
    /* Search Form în meniu */
    .search-form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0.5rem 0 !important;
        order: -1 !important;
    }
    
    .search-form input {
        font-size: 16px !important;
        padding: 0.55rem 0.9rem 0.55rem 38px !important;
        border-radius: 20px !important;
        width: 100% !important;
    }
    
    .search-form .search-icon {
        left: 12px !important;
        font-size: 0.9rem !important;
    }
    
    /* === SERVICE CARD - FLOATING BUTTON === */
    .service-card {
        position: fixed !important;
        top: auto !important;
        bottom: 16px !important;
        left: auto !important;
        right: 14px !important;
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1040 !important;
        animation: pulse-float 2s ease-in-out infinite !important;
    }
    
    @keyframes pulse-float {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .service-card .service-header {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .service-card .service-icon {
        font-size: 1.4rem !important;
        margin: 0 !important;
        color: #fff !important;
    }
    
    .service-card .service-title,
    .service-card .service-body {
        display: none !important;
    }
    
    /* === MAIN CONTENT === */
    main.container-fluid {
        padding: 0.5rem !important;
    }
    
    .container-xxl {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        max-width: 100% !important;
    }
    
    /* === FOOTER MOBILE === */
    .footer {
        padding: 0.75rem 0 0 !important;
        margin-top: 1rem !important;
        padding-bottom: 70px !important;
    }
    
    .footer > .container {
        padding: 0 0.75rem !important;
    }
    
    /* Footer logo pe mobil - fara background */
    .footer-logo {
        height: 45px !important;
        max-width: 160px !important;
        background: transparent !important;
    }
    
    .footer-logo-text {
        font-size: 1rem !important;
    }
    
    /* Footer stivuit vertical */
    .footer-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .footer-col {
        width: 100% !important;
        flex: none !important;
    }
    
    .footer-col-logo {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-col-company {
        order: -1 !important;
        text-align: center !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .footer-col-social {
        order: 10 !important;
        justify-content: center !important;
        padding-top: 0.5rem !important;
    }
    
    .footer-title {
        font-size: 0.8rem !important;
        white-space: normal !important;
        margin-bottom: 0.35rem !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.2rem 0.75rem !important;
        justify-content: flex-start !important;
    }
    
    .footer-link-btn,
    .footer-link-text {
        font-size: 0.72rem !important;
        padding: 0.15rem 0 !important;
    }
    
    .footer-contact {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.25rem 1rem !important;
    }
    
    .footer-contact span,
    .footer-contact a {
        font-size: 0.72rem !important;
    }
    
    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        border-radius: 10px !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 0.25rem !important;
        padding: 0.5rem 0 0.25rem !important;
        margin-top: 0.5rem !important;
    }
    
    .footer-copyright {
        font-size: 0.62rem !important;
        justify-content: center !important;
        text-align: center !important;
        flex-wrap: wrap !important;
        gap: 0.15rem 0.35rem !important;
    }
    
    .footer-sep {
        display: none !important;
    }
    
    /* === MODAL PE MOBIL === */
    .modal-dialog.modal-lg {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }
    
    .footer-modal-content {
        border-radius: 12px !important;
    }
}

/* ===== TELEFOANE MICI (max 480px) ===== */
@media (max-width: 479.98px) {
    /* Logo floating mai mic pe telefoane mici */
    .navbar-brand {
        padding-left: 60px !important;
    }
    
    .navbar-brand .navbar-logo {
        height: 65px !important;
    }
    
    .navbar-brand .logo-text {
        font-size: 0.9rem !important;
    }
    
    .country-selector-mobile .country-flag {
        width: 20px !important;
        height: 14px !important;
    }
    
    .navbar-mobile-actions .cart-link i {
        font-size: 1.1rem !important;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.4rem !important;
        font-size: 0.95rem !important;
    }
    
    .service-card {
        width: 48px !important;
        height: 48px !important;
        bottom: 12px !important;
        right: 12px !important;
    }
    
    .service-card .service-icon {
        font-size: 1.3rem !important;
    }
    
    .footer {
        padding-bottom: 65px !important;
    }
    
    .footer-logo {
        height: 40px !important;
    }
}

/* ===== LANDSCAPE === */
@media (max-width: 767.98px) and (orientation: landscape) {
    .navbar-brand .navbar-logo {
        height: 55px !important;
    }
    
    .navbar-brand {
        padding-left: 50px !important;
    }
    
    .navbar-collapse {
        max-height: calc(100vh - 50px) !important;
    }
    
    .service-card {
        width: 42px !important;
        height: 42px !important;
    }
    
    .country-selector-mobile .dropdown-menu {
        max-height: 50vh !important;
    }
}

/* ===== SAFE AREA === */
@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 767.98px) {
        .footer {
            padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
        }
        
        .service-card {
            bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        }
    }
}

/* Footer Back to Top - HIDDEN */
.footer-back-top {
    display: none !important;
}
