
/* ==================================================== */
/* PREMIUM BRANDS GRID */
/* ==================================================== */
.brands-section {
    padding: 80px 0;
    background: transparent;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.brand-item {
    background: #fff;
    border: 1px solid rgba(0, 168, 225, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 200px; /* Fixed height for uniformity */
    box-shadow: 0 4px 15px rgba(0, 168, 225, 0.03);
}

.brand-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 168, 225, 0.12);
}

.brand-logo-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.brand-item:hover .brand-logo-container img {
    transform: scale(1.1);
}

.brand-fallback {
    font-size: 1.2rem;
    font-weight: 800;
    color: #002b5c;
    text-transform: uppercase;
    text-align: center;
}

.brand-name {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.8px;
    margin-top: 10px;
    transition: all 0.3s;
}

.brand-item:hover .brand-name {
    opacity: 0;
    transform: translateY(-5px);
}

/* Hover Action Button */
.brand-hover-action {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.brand-item:hover .brand-hover-action {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.brand-btn {
    background: linear-gradient(135deg, #00A8E1, #2B358E);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 168, 225, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* --- HERO SECTION STYLES --- */
.hero { 
    position: relative; 
    background: transparent; 
    padding: 100px 0; 
    overflow: hidden; 
    min-height: 750px; 
    display: flex; 
    align-items: center; 
}

.hero-inner { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 60px; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
}

.hero-tag { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: rgba(0, 168, 225, 0.1); 
    color: #00A8E1; 
    padding: 8px 18px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 0.8rem; 
    margin-bottom: 25px; 
    border: 1px solid rgba(0, 168, 225, 0.2); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.hero-title { 
    font-size: 4.5rem; 
    line-height: 1.05; 
    font-weight: 900; 
    color: #0f172a; 
    margin-bottom: 30px; 
}

.hero-title span { 
    background: linear-gradient(135deg, #00A8E1, #2B358E); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
}

.image-wrapper { 
    position: relative; 
    animation: hero-float 6s ease-in-out infinite; 
}

@keyframes hero-float { 
    0%, 100% { transform: translateY(0) rotate(0deg); } 
    50% { transform: translateY(-20px) rotate(1deg); } 
}

.experience-badge { 
    position: absolute; 
    bottom: 30px; 
    left: -50px; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px); 
    padding: 18px 25px; 
    border-radius: 25px; 
    box-shadow: 0 15px 45px rgba(0, 168, 225, 0.1); 
    border: 1px solid rgba(0, 168, 225, 0.2); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    width: fit-content; 
    z-index: 10; 
    animation: badge-float 4s ease-in-out infinite; 
}

@keyframes badge-float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-10px); } 
}

.exp-info .num { 
    display: block; 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: #00A8E1; 
    line-height: 1; 
}

.exp-info .txt { 
    font-size: 0.75rem; 
    font-weight: 800; 
    color: #1e293b; 
    text-transform: uppercase; 
    white-space: nowrap; 
}


/* Global Button Fix */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevent text wrapping inside buttons */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.btn-shimmer {
    background: linear-gradient(135deg, #00A8E1, #2B358E, #00A8E1);
    background-size: 200% auto;
    animation: shimmer 4s infinite linear;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 168, 225, 0.25);
    border: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #00A8E1;
    color: #0f172a;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s;
}

.btn-outline:hover {
    background: #00A8E1;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 225, 0.3);
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;700;800&display=swap');

:root {
    --primary-blue: #00A8E1;
    --primary-dark: #0f172a; 
    --accent-blue: #f0f9ff;
    --gradient-blue: linear-gradient(135deg, #00A8E1, #2B358E);
    --bg-main: #ffffff; /* Pure white background */
    --bg-alt: #f8fafc; /* Very light slate for sections */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px rgba(0, 168, 225, 0.1);
}

.hidden { display: none; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.lang-ready {
    visibility: visible;
    opacity: 1;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    /* PREMIUM LIGHT TECH BACKGROUND WITH HEXAGONS */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 168, 225, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(43, 53, 142, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='80' height='92' viewBox='0 0 80 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 23v46L40 92 0 69V23L40 0z' fill='none' stroke='%2300a8e1' stroke-opacity='0.12' stroke-width='1.2'/%3E%3C/svg%3E");
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--bg-alt);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid #e2e8f0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts {
    display: flex;
    gap: 8px;
}

.top-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-contacts a:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.2);
}



.top-contacts a svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-blue);
    transition: 0.3s;
}

.top-contacts a:hover svg {
    transform: rotate(15deg) scale(1.1);
}


.top-links {
    display: flex;
    align-items: center;
}

/* Modern Lang Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(226, 232, 240, 0.5);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.lang-switcher button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lang-switcher button:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
}

.lang-switcher button.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 168, 225, 0.3);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Loading Animation */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent-blue);
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* ==================================================== */
/* PREMIUM FYZEN NAVBAR (Identity Restoration) */
/* ==================================================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 168, 225, 0.06);
    border-bottom: 1px solid rgba(0, 168, 225, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}




/* Final Brand Section - Everything One Line */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-box {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.1);
    border: 1px solid rgba(0, 168, 225, 0.05);
}

.logo-box img {
    height: 42px;
    width: auto;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto; /* Remove fixed width to allow one line */
}

.nav-brand-name {
    font-size: 1.85rem;
    font-weight: 900;
    color: #002b5c; 
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap; /* Force one line */
}

.nav-brand-slogan {
    font-size: 0.9rem;
    font-weight: 600;
    color: #002b5c;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 5px;
    white-space: nowrap; /* Force one line */
    letter-spacing: 0.2px;
}




/* Navigation Links */
.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    list-style: none;
    padding: 0;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00A8E1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00A8E1;
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Action Icons & Right Side */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-actions-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fyz-action-btn {
    position: relative;
    cursor: pointer;
    color: #1e3a5f;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.fyz-action-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
}

.fyz-action-btn:hover {
    color: #00A8E1;
    transform: scale(1.1);
}

.fyz-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000; /* Black badge as seen in screenshot */
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lang Switcher (Boxy look from screenshot) */
.dyn-lang-right {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.dyn-lang-right button {
    position: relative;
    z-index: 50;
    background: #fff;
    border: none;
    border-right: 1px solid #e2e8f0;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.2s;
}

.dyn-lang-right button:last-child {
    border-right: none;
}

.dyn-lang-right button.active-lang {
    background: linear-gradient(135deg, #00A8E1, #2B358E) !important;
    color: #ffffff !important;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.25) !important;
}

.dyn-lang-right button.active-lang:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.dyn-lang-right button:hover {
    background: #f1f5f9;
}

/* Admin Button (Red-Orange Gradient) */
.admin-badge-btn {
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.35) !important;
    transition: all 0.3s;
}

.admin-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 75, 43, 0.45) !important;
}

.logout-icon-btn {
    color: #ef4444 !important;
    transition: all 0.2s;
}

.logout-icon-btn:hover {
    transform: translateX(3px);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0, 168, 225, 0.1);
    border: 1px solid rgba(0, 168, 225, 0.05);
}

.logo-box img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    width: auto;
}

.nav-brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #002b5c; 
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-brand-slogan {
    font-size: 0.9rem;
    font-weight: 600;
    color: #002b5c;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 3px;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

/* Navigation Links */
.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    list-style: none;
    padding: 0;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00A8E1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00A8E1;
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Action Icons & Right Side */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-actions-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fyz-action-btn {
    position: relative;
    cursor: pointer;
    color: #1e3a5f;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.fyz-action-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
}

.fyz-action-btn:hover {
    color: #00A8E1;
    transform: scale(1.1);
}

.fyz-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000; /* Black badge as seen in screenshot */
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lang Switcher (Boxy look from screenshot) */
.dyn-lang-right {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.dyn-lang-right button {
    background: #fff;
    border: none;
    border-right: 1px solid #e2e8f0;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.dyn-lang-right button:last-child {
    border-right: none;
}

.dyn-lang-right button.active-lang {
    background: #f8fafc;
    color: #002b5c;
}

.dyn-lang-right button:hover {
    background: #f1f5f9;
}

/* Admin Button (Red-Orange Gradient) */
.admin-badge-btn {
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 75, 43, 0.35) !important;
    transition: all 0.3s;
}

.admin-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 75, 43, 0.45) !important;
}

.logout-icon-btn {
    color: #ef4444 !important;
    transition: all 0.2s;
}

.logout-icon-btn:hover {
    transform: translateX(3px);
}



/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 280px;
    padding: 15px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 168, 225, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border: 1px solid rgba(0, 168, 225, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #f0f9ff;
    color: #00a8e1;
    /* Keep left padding consistent to avoid shifting in mobile drawer */
    padding-left: 25px;
}



/* Products Grid */
.section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: contain; 
    margin-bottom: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

/* New Product Card Styles */
.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.product-img-container {
    padding: 2rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    border-bottom: 1px solid #f1f5f9;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-action-area {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.price-on-request {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-btns {
    display: flex;
    gap: 0.75rem;
}

.btn-call {
    flex: 1;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    box-shadow: none;
}

.btn-call:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    color: var(--primary-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0, 168, 225, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 168, 225, 0.4);
    border-color: transparent;
}

.product-price-on-request {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1.5rem 0;
}

/* Categories Banner */
.categories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.category-card:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.category-card:hover h3 {
    color: var(--white);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: #1e293b;
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-col p {
    color: #94a3b8;
    margin: 20px 0;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
}

.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: white;
    text-shadow: 0 0 15px rgba(0, 168, 225, 0.3);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94a3b8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .categories-container {
        grid-template-columns: 1fr;
    }
}

/* Quick Buy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.quick-buy-modal {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quick-buy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.quick-buy-item img {
    width: 60px;
    height: 60px;
    object-fit: contain; 
    background: var(--bg-light);
    border-radius: 12px;
}

.btn-quick-buy {
    background: #0f172a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 5px;
}

.btn-quick-buy:hover { background: #334155; }

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 10001;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.chatbot-container.active { display: flex; animation: slideUp 0.4s ease; }

.chat-header {
    background: var(--gradient-blue);
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.ai-msg, .user-msg {
    max-width: 80%;
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ai-msg {
    background: white;
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-msg {
    background: var(--primary-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-footer {
    padding: 1rem;
    background: white;
    display: flex;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

.chat-footer input {
    flex: 1;
    border: none;
    padding: 0.5rem;
    outline: none;
    font-size: 0.9rem;
}

.chat-footer button {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    z-index: 10001;
    transition: all 0.3s;
}

.chat-toggle-btn:hover { transform: scale(1.1); }

@media (max-width: 450px) {
    .chatbot-container { width: 90%; right: 5%; bottom: 80px; }
    .chat-toggle-btn { right: 30px; bottom: 100px; }
}

/* FYZEN Premium Modal System */
.fyzen-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    animation: fyzenFadeIn 0.3s ease;
}

.fyzen-modal {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    overflow: hidden;
    animation: fyzenSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fyzen-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-blue);
}

.fyzen-modal-icon {
    width: 80px;
    height: 80px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.fyzen-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.fyzen-modal-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.fyzen-modal-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.fyzen-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.3);
    background: #1e293b;
}

@keyframes fyzenFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fyzenSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mega Menu Styles */
.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 1px solid #e2e8f0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mega-menu-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-content {
    padding: 3rem 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.menu-col h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.menu-col a.menu-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.menu-col a.menu-item:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.menu-banner {
    background: var(--gradient-blue);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-banner h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.menu-banner p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Popular Categories (Labtech Style) */
.popular-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pop-cat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pop-cat-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.pop-cat-img {
    height: 200px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.pop-cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.pop-cat-card:hover .pop-cat-img img {
    transform: scale(1.03);
}

.pop-cat-title {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .popular-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .popular-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-inner {
        padding: 5px 0;
    }
    
    .nav-search, .nav-links {
        display: none;
    }
    
    
    
    .logo-box {
        width: 60px;
        height: 60px;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--accent-blue);
        border-radius: 10px;
        cursor: pointer;
        color: var(--primary-blue);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .btn-catalog {
        display: none !important;
    }
    
    /* Mobile Menu Drawer */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: white;
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 40px 25px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-nav-link {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-dark);
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* --- ADMIN RESPONSIVE --- */

@media (max-width: 992px) {
    .sidebar {
        width: 0;
        left: -300px;
        transition: all 0.3s ease;
    }
    
    .sidebar.active {
        width: 260px;
        left: 0;
        z-index: 2001;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .admin-nav-toggle {
        display: block !important;
        background: white;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        cursor: pointer;
        margin-right: 15px;
    }

}

.menu-col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(0, 168, 225, 0.15);
}

.menu-col-title h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Request Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1; visibility: visible;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: #f1f5f9; border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; color: #64748b;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: #e2e8f0; color: var(--primary-dark);
}
.modal-content h3 { color: var(--primary-dark); margin-bottom: 8px; font-size: 1.5rem; font-family: 'Outfit', sans-serif; font-weight: 800;}

/* Cart Sidebar */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    right: 0;
}
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
}
.cart-sidebar-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}
.close-sidebar-btn:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}
.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}
.cart-sidebar-item {
    display: flex;
    gap: 8px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
    position: relative;
}
.cart-sidebar-item img {
    width: 70px;
    height: 70px;
    object-fit: contain; 
    background: #f8fafc;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #e2e8f0;
}
.cart-sidebar-item-info {
    flex: 1;
    padding-right: 20px;
}
.cart-sidebar-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}
.cart-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
}
.cart-qty-ctrl button {
    background: none;
    border: none;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-main);
}
.cart-qty-ctrl button:hover {
    background: #f1f5f9;
}
.cart-qty-ctrl span {
    padding: 0 5px;
    font-size: 0.95rem;
    font-weight: 700;
}
.cart-item-price {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1rem;
    margin-left: 15px;
}
.cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}
.cart-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}
.cart-sidebar-footer {
    padding: 25px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}
.cart-sidebar-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.cart-sidebar-subtotal span:first-child {
    color: var(--text-muted);
    font-weight: 700;
}
.cart-sidebar-subtotal span:last-child {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 900;
}
.cart-sidebar-btns {
    display: flex;
    gap: 10px;
}
.cart-sidebar-btns .btn {
    flex: 1;
    padding: 14px 5px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
}
.modal-content p { color: #64748b; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); }
.form-group input { width: 100%; padding: 12px 15px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 1rem; outline: none; transition: border-color 0.2s ease; font-family: inherit;}
.form-group input:focus { border-color: var(--primary-blue); }

/* Dynamic Chat Button Position */
#floatChat {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-open #floatChat {
    transform: translateX(-380px); /* Move left when cart is open */
}

@media (max-width: 480px) {
    .cart-open #floatChat {
        transform: translateY(-280px); /* Move up on mobile */
    }
}

/* --- OVERRIDE BRANDED LOADER --- */
#loader {
    background-color: var(--bg-main) !important;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 168, 225, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(43, 53, 142, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='80' height='92' viewBox='0 0 80 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 23v46L40 92 0 69V23L40 0z' fill='none' stroke='%2300a8e1' stroke-opacity='0.22' stroke-width='1.2'/%3E%3C/svg%3E") !important;
}

.spinner {
    width: 120px !important;
    height: 120px !important;
    border: none !important;
    animation: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.spinner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #00A8E1;
    border-right: 1px solid rgba(0, 168, 225, 0.2);
    animation: fyzen-spin-new 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fyzen-spin-new {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fyzen-pulse-new {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0, 168, 225, 0)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(0, 168, 225, 0.4)); }
}



/* ==================================================== */
/* MOBILE & TABLET OPTIMIZATION (RESPONSIVE) */
/* ==================================================== */

@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .stat-grid-p { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; } /* Hidden on mobile by default, toggled via JS */
    .nav-search { display: none; } /* Search moved to menu or hidden on tablet */
    
    .hero { padding: 80px 0; min-height: auto; text-align: center; }
    .hero-inner { flex-direction: column; gap: 40px; }
    
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    body { font-size: 14px; }
    
    .top-bar { display: none; } /* Hide top info on small mobile */
    
    .navbar { padding: 15px 0; }
    .nav-inner { gap: 8px; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .grid, .blog-grid, .stat-grid-p {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .product-card { padding: 15px; }
    
    /* Admin Panel Mobile */
    .admin-sidebar {
        position: fixed;
        left: -280px;
        transition: 0.4s ease;
    }
    .admin-sidebar.active { left: 0; }
    .admin-top { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 8px; }
    .admin-content { padding: 1.5rem; }
    
    .stat-card-p { padding: 1.5rem; }
    .stat-val-p { font-size: 2rem; }
    
    /* Scrollable Tables */
    .admin-card-p { padding: 1.5rem; overflow-x: auto; }
    .admin-table { min-width: 700px; }
    
    /* Modal adjustments */
    .modal-card { padding: 2rem; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-links { align-items: center; }
    
    /* Hamburger Menu Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }
    .menu-toggle span {

        height: 3px;
        background: var(--primary-blue);
        border-radius: 10px;
        transition: 0.3s;
    }
    
    /* Mobile Nav Overlay */
    .mobile-nav {
        position: fixed;
        inset: 0;
        background: white;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 40px;
        transform: translateX(100%);
        transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    }

    /* Mobile Nav Close Button */
.mobile-nav-close {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; /* above overlay */
    background: rgba(255,255,255,0.9);
    border: 2px solid #002b5c;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}
.mobile-nav-close svg {
    width: 100%;
    height: 100%;
    stroke: #002b5c; /* explicit color for X */
    fill: none;
    stroke-width: 2;
}






    .mobile-nav.active { transform: translateX(0); }
    .mobile-nav a {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-dark);
        text-transform: uppercase;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .btn { width: 100%; text-align: center; }
    .product-actions { flex-direction: column; }
    .qty-input { width: 100%; }
}

/* ==================================================== */
/* PRODUCT CATEGORIES (LABTEC INSPIRED) */
/* ==================================================== */
.categories-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .categories-section {
        padding: 30px 0;
    }
    .cat-card-p {
        padding: 15px 10px;
        border-radius: 8px;
    }
    .cat-icon-p {
        width: 50px;
        height: 50px;
    }
}

.categories-grid-p {
    display: grid;
    grid-template-columns: 1fr; /* mobile: single column */
    gap: 12px; /* a bit larger spacing for readability */
}

/* Tablet view */
@media (min-width: 768px) {
    .categories-grid-p {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Desktop view */
@media (min-width: 1024px) {
    .categories-grid-p {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

.cat-card-p {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 168, 225, 0.15);
    border-radius: 12px; /* reduced */
    padding: 20px 15px; /* reduced */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* reduced spacing */
    text-decoration: none;
    z-index: 1;
}

.cat-card-p:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: 
        0 20px 40px rgba(0, 168, 225, 0.1),
        0 0 30px rgba(0, 168, 225, 0.2);
}

.cat-icon-p {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 225, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 225, 0.1);
}

.cat-icon-p svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.cat-card-p:hover .cat-icon-p {
    background: var(--gradient-blue);
    color: white;
    transform: rotate(5deg);
}

.cat-card-p h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.3;
}

.cat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 168, 225, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.cat-card-p:hover .cat-glow {
    opacity: 1;
}

@media (max-width: 1024px) {
    .categories-grid-p { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .categories-grid-p { grid-template-columns: 1fr; }
    .cat-card-p { padding: 30px; }
}

/* ==================================================== */
/* PERSISTENT KATALOG BUTTON & MEGA MENU */
/* ==================================================== */
.katalog-btn-p {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    padding: 0 18px;
    height: 32px;
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 168, 225, 0.3);
    margin-left: 15px;
    z-index: 1001;
    letter-spacing: 1px;
}

.katalog-btn-p:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 168, 225, 0.4);
}

.katalog-btn-p.active {
    background: var(--primary-dark);
}

.kat-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kat-burger span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: 0.3s;
}

.katalog-btn-p.active .kat-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.katalog-btn-p.active .kat-burger span:nth-child(2) { opacity: 0; }
.katalog-btn-p.active .kat-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mega-menu-p {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    z-index: 998;
    padding: 50px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mega-menu-p.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mega-grid-p {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mega-item-p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    text-decoration: none;
}

.mega-item-p:hover {
    background: white;
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 168, 225, 0.1);
}

.mega-icon-p {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 225, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.mega-icon-p svg { width: 26px; height: 26px; }

.mega-item-p span {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .mega-grid-p { grid-template-columns: repeat(2, 1fr); }
    .katalog-btn-p span { display: none; }
    .katalog-btn-p { padding: 12px; }
}

@media (max-width: 600px) {
    .mega-grid-p { grid-template-columns: 1fr; }
    .mega-menu-p { top: 70px; padding: 30px 20px; max-height: 80vh; overflow-y: auto; }
}

/* ==================================================== */
/* TOAST NOTIFICATIONS */
/* ==================================================== */
.fyz-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary-blue);
}

.fyz-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.fyz-toast.success { border-left-color: #10b981; }
.fyz-toast.error { border-left-color: #ef4444; }
.fyz-toast.wish { border-left-color: #f43f5e; }

.toast-content { display: flex; align-items: center; gap: 12px; }
.toast-icon { font-size: 1.2rem; }
.toast-msg { font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }

/* Hide loader image background */
#loader img { mix-blend-mode: multiply !important; }


/* ===== PRODUCTS DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-arrow { font-size: 0.85rem; transition: transform 0.3s ease; display: inline-block; line-height: 1; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    width: 960px;
    max-width: 96vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06);
    z-index: 9999;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #1e3a5f;
    clip-path: none !important;
    transition: color 0.18s ease, background 0.18s ease;
    text-decoration: none !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    background: transparent !important;
    line-height: 1.35;
    white-space: normal;
    text-align: left;
}

/* Right border for column 1 and 2 items (every 3n+1 and 3n+2) */
.nav-dropdown-menu a:nth-child(3n+1),
.nav-dropdown-menu a:nth-child(3n+2) {
    border-right: 1px solid #f1f5f9 !important;
}

/* Remove bottom border from last row */
.nav-dropdown-menu a:nth-last-child(-n+3) {
    border-bottom: none !important;
}

.nav-dropdown-menu a::before { display: none; }

.nav-dropdown-menu a:hover {
    color: #00A8E1 !important;
    background: #f0f9ff !important;
    border-color: #f1f5f9 !important;
    transform: none;
}

.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-arrow { font-size: 0.85rem; transition: transform 0.3s ease; display: inline-block; line-height: 1; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

    @media (max-width: 768px) {
        .mobile-nav .nav-dropdown-menu a {
            padding-left: 25px; /* match default */
        }
        .mobile-nav .nav-dropdown-menu a:hover {
            padding-left: 25px; /* keep stable */
        }
        .mobile-nav .nav-dropdown:hover .nav-arrow {
            transform: none; /* prevent rotation on tap */
        }
    }

/* === PREMIUM FYZEN CONTACT FAB === */
.fyzen-contact-wrapper {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally for perfect alignment */
    gap: 18px;
}

.fyzen-contact-menu {
    display: flex;
    flex-direction: column;
    align-items: center; /* Align sub-icons in center too */
    gap: 15px;
    margin-bottom: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.fyzen-contact-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
}

.contact-label {
    position: absolute;
    right: 75px; /* Adjust based on icon size */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e293b;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 168, 225, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    pointer-events: none;
}

.contact-item:hover .contact-label {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    width: 58px; /* Increased size */
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid white; /* Thicker border */
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.icon-whatsapp { background: #25D366; }
.icon-telegram { background: #0088cc; }
.icon-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-email { background: #ea4335; }
.icon-phone { background: #00A8E1; }

.contact-icon svg {
    width: 28px; /* Larger SVG icons */
    height: 28px;
    fill: white;
}

.fyzen-fab-main {
    width: 75px; /* Increased size */
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A8E1, #2B358E); /* Fyzen Blue Gradient */
    border: 4px solid white;
    box-shadow: 0 12px 40px rgba(0, 168, 225, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.fyzen-fab-main:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 50px rgba(0, 168, 225, 0.6);
}

.fyzen-fab-main svg {
    width: 38px; /* Larger plus/close icon */
    height: 38px;
    stroke: white;
    stroke-width: 3;
    transition: all 0.4s ease;
}

.fyzen-fab-main.open {
    background: #0f172a; /* Dark tech state */
    transform: rotate(45deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fyzen-fab-ripple {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid #00A8E1;
    animation: fab-ripple 2s infinite;
    pointer-events: none;
}

@keyframes fab-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}


@media (max-width: 768px) {
    .fyzen-contact-wrapper { bottom: 25px; right: 25px; }
    .fyzen-fab-main { width: 65px; height: 65px; }
    .contact-icon { width: 52px; height: 52px; }
    .contact-label { display: none; }
}




/* --- PREMIUM CART SIDEBAR --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 50px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 168, 225, 0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: #002b5c;
    margin: 0;
}

.close-cart {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    transition: all 0.2s;
}

.close-cart:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: 0 8px 20px rgba(0, 168, 225, 0.1);
    border-color: rgba(0, 168, 225, 0.3);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 12px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin: 0 0 5px 0;
    color: #1e293b;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #002b5c;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00A8E1, #2B358E);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 168, 225, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 168, 225, 0.4);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* --- PREMIUM CATALOG GRID RESTORE --- */
.categories-grid-p {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.cat-card-p {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 225, 0.15);
    border-radius: 24px;
    padding: 35px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 168, 225, 0.05);
    position: relative;
    overflow: hidden;
}

.cat-card-p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cat-card-p:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 45px rgba(0, 168, 225, 0.12);
}

.cat-card-p:hover::before {
    opacity: 1;
}

.cat-icon-p {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 225, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s;
    color: var(--primary-blue);
}

.cat-icon-p svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.cat-card-p:hover .cat-icon-p {
    background: var(--gradient-blue);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.cat-card-p h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.cat-card-p p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Page Header Refinement */
.page-header {
    background: linear-gradient(180deg, rgba(240, 249, 255, 0.8) 0%, transparent 100%);
    padding: 120px 0 60px !important;
}


/* --- CATALOG IMAGE STYLES --- */
.cat-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 168, 225, 0.1);
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card-p:hover .cat-img-wrapper img {
    transform: scale(1.1);
}

/* Hide the old icons where we have images */
.cat-card-p:has(.cat-img-wrapper) .cat-icon-p {
    display: none;
}

/* For cards without images yet, keep icons but improve them */
.cat-icon-p {
    margin-top: 0;
}

/* Premium Footer Redesign */
.fyz-footer {
    background: #010b1a; /* Ultra dark navy */
    color: #e2e8f0;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.fyz-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 168, 225, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; width: 30px; height: 2px;
    background: var(--primary-blue);
}

.footer-about-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about-logo img {
    height: 40px;
}

.footer-about-logo span {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.footer-desc-p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.footer-contact-info span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 2px;
}

.footer-contact-info strong {
    font-size: 0.95rem;
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ====================================================== */
/* CATALOG PAGE — PREMIUM CATEGORY CARDS                  */
/* ====================================================== */
.categories-grid-p {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.cat-card-p {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 8px 30px rgba(1, 11, 26, 0.07);
    border: 1px solid rgba(0, 168, 225, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cat-card-p:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 168, 225, 0.15);
}

/* Background image */
.cat-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.cat-card-p:hover .cat-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* Gradient overlay on image */
.cat-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(1, 11, 26, 0.55) 100%
    );
}

/* Category icon badge */
.cat-icon-p {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 168, 225, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
}

.cat-icon-p svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
}

.cat-card-p:hover .cat-icon-p {
    background: linear-gradient(135deg, #00A8E1, #2B358E);
    transform: scale(1.1) rotate(5deg);
}

/* Text content area */
.cat-card-p h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #010b1a;
    margin: 20px 22px 8px;
    letter-spacing: -0.3px;
    line-height: 1.3;
    transition: color 0.3s;
}

.cat-card-p p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 22px 22px;
    line-height: 1.6;
}

.cat-card-p:hover h3 {
    color: #00A8E1;
}

/* Download PDF label */
.cat-card-p::before {
    content: '📄 PDF';
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #00A8E1;
    background: rgba(0, 168, 225, 0.08);
    border: 1px solid rgba(0, 168, 225, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
}

.cat-card-p:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Glow effect */
.cat-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(0,168,225,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.cat-card-p:hover .cat-glow {
    opacity: 1;
}

/* ====================================================== */
/* SYSTEM-WIDE PREMIUM MOBILE RESPONSIVENESS AND DRAWER   */
/* ====================================================== */

/* Global Mobile Overflow Prevention */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* ====================================================== */
/* HAMBURGER MENU TOGGLE                                   */
/* ====================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2005;
    position: relative;
    outline: none;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #002b5c;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
    background-color: #00a8e1;
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
    background-color: #00a8e1;
}

/* ====================================================== */
/* PREMIUM MOBILE NAV DRAWER                               */
/* ====================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 90vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: -5px 0 50px rgba(0, 43, 92, 0.15);
    z-index: 2004;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 168, 225, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    right: 0 !important;
}

/* Mobile nav header strip */
.mobile-nav > div:first-child {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 168, 225, 0.08);
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 800;
    color: #002b5c;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(0, 168, 225, 0.07);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: #00A8E1;
    background: rgba(0, 168, 225, 0.04);
    padding-left: 34px;
}

/* Existing mobile nav hover padding – now overridden for mobile */
@media (max-width: 768px) {
        .mobile-nav a {
        padding: 12px 20px;      /* increased vertical padding */
        min-height: 44px;        /* ensure touch target size */
        margin-bottom: 4px;    /* extra space between items */
        border-bottom: 2px solid rgba(0, 168, 225, 0.07); /* slightly thicker separator */
    }
    .mobile-nav .nav-dropdown:hover .nav-arrow {
        transform: none; /* keep arrow static */
    }
}

/* Mobile nav overlay backdrop */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 2003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================================== */
/* BREAKPOINT: TABLET & SMALL DESKTOP (≤ 1024px)          */
/* ====================================================== */
@media (max-width: 1024px) {
    /* Show hamburger, hide desktop links */
    .nav-links {
        display: none !important;
    }
    .menu-toggle {
        display: flex !important;
    }

    /* Navbar layout */
    .nav-inner {
        padding: 0 18px;
        gap: 10px;
    }
    .navbar {
        padding: 10px 0;
    }

    /* Brand sizing */
    .nav-brand {
        gap: 10px;
    }
    .nav-brand-name {
        font-size: 1.5rem;
    }
    .nav-brand-slogan {
        font-size: 0.78rem;
    }
    .logo-box {
        width: 44px;
        height: 44px;
    }
    .logo-box img {
        height: 34px;
    }

    /* Hide language switcher in nav on tablet */
    .nav-lang-switcher,
    .dyn-lang-right {
        display: none !important;
    }

    /* Hide top bar */
    .top-bar {
        display: none !important;
    }

    /* Hero tablet layout */
    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    .hero-subtitle {
        margin: 0 auto 30px;
        max-width: 600px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        gap: 14px;
        margin: 20px auto 0;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 1.1rem 2rem;
        justify-content: center;
        text-align: center;
    }
    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }
    .experience-badge {
        left: 20px;
        bottom: 20px;
    }
    .image-wrapper img {
        border-radius: 24px;
        width: 100%;
        height: auto;
        max-height: 380px;
        object-fit: cover;
    }

    /* Categories tablet grid - 2 columns */
    .categories-grid-p {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .cat-img-wrapper {
        height: 170px;
    }

    /* Footer 2 columns */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    /* Categories section padding */
    .categories-section {
        padding: 60px 0;
    }
}

/* ====================================================== */
/* BREAKPOINT: MOBILE PHONES (≤ 768px)                     */
/* ====================================================== */
@media (max-width: 768px) {
    /* Navbar tight layout */
    .navbar {
        padding: 8px 0;
    }
    .nav-inner {
        padding: 0 15px;
        gap: 8px;
    }

    /* Brand: hide slogan on medium mobile */
    .nav-brand-name {
        font-size: 1.35rem;
    }
    .nav-brand-slogan {
        font-size: 0.72rem;
    }
    .logo-box {
        width: 40px;
        height: 40px;
    }
    .logo-box img {
        height: 30px;
    }

    /* Nav action icons compact */
    .fyz-action-btn svg {
        width: 20px;
        height: 20px;
    }
    .nav-actions {
        gap: 10px;
    }

    /* Hero */
    .hero {
        padding: 95px 0 50px;
    }
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .hero-tag {
        font-size: 0.72rem;
        padding: 7px 14px;
        margin-bottom: 18px;
    }
    .hero-btns {
        max-width: 320px;
        gap: 12px;
    }
    .btn-shimmer,
    .btn-outline {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }
    .image-wrapper {
        animation: none; /* Stop floating on mobile for perf */
    }
    .image-wrapper img {
        max-height: 300px;
    }
    .experience-badge {
        left: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
    .experience-badge .exp-info .num {
        font-size: 1.4rem;
    }

    /* Section padding */
    .categories-section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 35px !important;
    }
    .section-title,
    h2.section-title {
        font-size: 2rem !important;
    }

    /* Categories grid - 2 columns */
    .categories-grid-p {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .cat-card-p {
        padding: 22px 16px !important;
        border-radius: 18px !important;
    }
    .cat-card-p h3 {
        font-size: 0.95rem !important;
        margin: 14px 12px 6px !important;
    }
    .cat-card-p p {
        font-size: 0.78rem !important;
        margin: 0 12px 14px !important;
    }
    .cat-img-wrapper {
        height: 150px;
    }
    .cat-icon-p {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }
    .cat-icon-p svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Footer */
    .fyz-footer {
        padding: 50px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-about-logo {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Contact FAB */
    .fyzen-contact-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .fyzen-fab-main {
        width: 58px !important;
        height: 58px !important;
    }
    .fyzen-fab-main svg {
        width: 28px !important;
        height: 28px !important;
    }
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
    }
    .contact-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    .contact-label {
        display: none !important;
    }

    /* Admin panel */
    .admin-sidebar {
        position: fixed;
        left: -280px;
        transition: 0.4s ease;
    }
    .admin-sidebar.active { left: 0; }
    .admin-top { padding: 1rem 1.5rem; flex-wrap: wrap; gap: 8px; }
    .admin-content { padding: 1.5rem; }
    .admin-card-p { padding: 1.5rem; overflow-x: auto; }
    .admin-table { min-width: 700px; }
    .modal-card { padding: 2rem; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr; }

    /* Products */
    .product-card { padding: 12px; }
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Brands */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
    .brand-item {
        height: 130px;
        padding: 15px;
    }
    .brand-logo-container { height: 55px; }

    /* Modal */
    .modal-content {
        padding: 22px 18px;
        width: 95% !important;
        border-radius: 20px;
    }

    /* Stats */
    .stat-grid-p { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card-p { padding: 1.25rem; }
    .stat-val-p { font-size: 1.8rem; }

    /* General grids */
    .grid, .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
}

/* ====================================================== */
/* BREAKPOINT: SMALL PHONES (≤ 480px)                      */
/* ====================================================== */
@media (max-width: 480px) {
    /* Navbar very tight */
    .nav-inner {
        padding: 0 12px;
        gap: 6px;
    }
    .nav-brand {
        gap: 8px;
    }
    .nav-brand-name {
        font-size: 1.2rem;
    }
    .nav-brand-slogan {
        display: none !important;
    }
    .logo-box {
        width: 36px;
        height: 36px;
    }
    .logo-box img {
        height: 27px;
    }

    /* Hero */
    .hero {
        padding: 85px 0 40px;
    }
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.92rem;
    }
    .hero-tag {
        font-size: 0.65rem;
        padding: 6px 10px;
        gap: 6px;
    }
    .hero-tag img {
        width: 18px !important;
        height: 18px !important;
    }
    .hero-btns {
        max-width: 100%;
        gap: 10px;
    }
    .btn-shimmer, .btn-outline {
        padding: 0.95rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 14px;
    }
    .image-wrapper img {
        max-height: 240px;
        border-radius: 20px;
    }
    .experience-badge {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 16px;
    }
    .experience-badge .num {
        font-size: 1.2rem !important;
    }
    .experience-badge .txt {
        font-size: 0.65rem !important;
    }
    .exp-icon svg {
        width: 26px !important;
        height: 26px !important;
    }

    /* Section header */
    .section-header {
        margin-bottom: 25px !important;
        padding: 0 5px;
    }
    .section-title,
    h2.section-title {
        font-size: 1.7rem !important;
        line-height: 1.2;
    }
    .categories-section {
        padding: 40px 0;
    }

    /* Category cards: 1 column on tiny screens */
    .categories-grid-p {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .cat-card-p {
        padding: 0 !important;
        border-radius: 16px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 0 !important;
    }
    .cat-img-wrapper {
        width: 110px !important;
        height: 90px !important;
        min-width: 110px;
        border-radius: 16px 0 0 16px !important;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }
    .cat-img-wrapper::after {
        background: linear-gradient(to right, transparent 40%, rgba(1,11,26,0.35) 100%);
    }
    .cat-card-p h3 {
        font-size: 0.88rem !important;
        margin: 0 12px 4px !important;
        line-height: 1.3;
    }
    .cat-card-p p {
        font-size: 0.72rem !important;
        margin: 0 12px 0 !important;
        line-height: 1.4;
    }
    .cat-card-p .cat-text-area {
        flex: 1;
        padding: 14px 14px 14px 0;
    }
    .cat-icon-p {
        top: 8px !important;
        right: 8px !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
    }
    .cat-icon-p svg {
        width: 14px !important;
        height: 14px !important;
    }
    /* Disable PDF hover label on mobile */
    .cat-card-p::before {
        display: none !important;
    }

    /* Products: 1 column */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* Brands: 2 column */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .brand-item {
        height: 120px;
        padding: 12px;
    }
    .brand-logo-container { height: 45px; }
    .brand-name { font-size: 0.6rem; }

    /* Footer */
    .fyz-footer {
        padding: 40px 0 25px;
    }
    .footer-grid {
        gap: 28px !important;
    }
    .footer-about-logo span {
        font-size: 1.2rem;
    }
    .footer-desc-p {
        font-size: 0.88rem;
    }

    /* FAB smaller */
    .fyzen-contact-wrapper {
        bottom: 15px !important;
        right: 15px !important;
    }
    .fyzen-fab-main {
        width: 52px !important;
        height: 52px !important;
    }
    .fyzen-fab-main svg {
        width: 24px !important;
        height: 24px !important;
    }
    .contact-icon {
        width: 44px !important;
        height: 44px !important;
    }
    .fyzen-contact-menu { gap: 10px; }

    /* Toast on mobile */
    .fyz-toast {
        left: 15px;
        right: 15px;
        bottom: 20px;
        width: auto;
        font-size: 0.88rem;
    }

    /* Modals */
    .modal-content {
        width: 98% !important;
        padding: 18px 14px;
        border-radius: 16px;
    }
    .fyzen-modal {
        width: 95%;
        padding: 2rem 1.5rem;
        border-radius: 22px;
    }
    .fyzen-modal-title { font-size: 1.3rem; }

    /* Nav actions on very small */
    .nav-actions {
        gap: 8px;
    }
    .fyz-action-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Page header */
    .page-header {
        padding: 90px 0 40px !important;
    }
}

/* ====================================================== */
/* BREAKPOINT: VERY SMALL (≤ 360px)                        */
/* ====================================================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.65rem;
    }
    .nav-brand-name {
        font-size: 1.1rem;
    }
    .logo-box {
        width: 32px;
        height: 32px;
    }
    .logo-box img {
        height: 24px;
    }
    .hero-btns .btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.8rem;
    }
    .cat-img-wrapper {
        width: 90px !important;
        min-width: 90px;
    }
}

/* ====================================================== */
/* MOBILE NAV DRAWER LANGUAGE SWITCHER ACTIVE STATE        */
/* ====================================================== */
.mobile-lang-switcher button.active-lang {
    background: linear-gradient(135deg, #00A8E1, #2B358E) !important;
    color: #ffffff !important;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.25) !important;
}

/* ====================================================== */
/* SCROLLABLE MEGA MENU ON MOBILE                          */
/* ====================================================== */
@media (max-width: 600px) {
    .mega-grid-p { grid-template-columns: 1fr; }
    .mega-menu-p {
        top: 70px;
        padding: 25px 15px;
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* ====================================================== */
/* TOUCH-FRIENDLY IMPROVEMENTS                             */
/* ====================================================== */
@media (hover: none) {
    /* Remove hover transforms on touch devices */
    .cat-card-p:hover {
        transform: none;
    }
    .brand-item:hover {
        transform: none;
    }
    .btn-outline:hover {
        transform: none;
    }
    /* Larger tap targets */
    .fyz-action-btn {
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav-close {
        width: 44px;
        height: 44px;
        position: absolute;
        top: 16px;
        right: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002; /* above overlay */
        background: rgba(255,255,255,0.9);
        border: 2px solid #002b5c;
        border-radius: 8px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }
    .mobile-nav-close svg {
        width: 80%;
        height: 80%;
        stroke: #002b5c;
        fill: none;
        stroke-width: 2.5;
    }
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
    /* Stop animations for performance */
    .image-wrapper {
        animation: none;
    }
    .experience-badge {
        animation: none;
    }
    .fyzen-fab-ripple {
        display: none;
    }
}

/* End of styles.css */

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #002b5c;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger animation into X */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #00a8e1;
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #00a8e1;
}

/* Mobile Nav Drawer Style - Glassmorphism, Premium look */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(0, 168, 225, 0.12);
    z-index: 2004;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 168, 225, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    right: 0 !important;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(0, 168, 225, 0.05);
    border: 1px solid rgba(0, 168, 225, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.mobile-nav-close svg {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.35s ease;
}

.mobile-nav-close:hover {
    background: rgba(0, 168, 225, 0.15);
    border-color: rgba(0, 168, 225, 0.3);
    box-shadow: 0 0 15px rgba(0, 168, 225, 0.2);
}

.mobile-nav-close:hover svg {
    transform: rotate(90deg);
    stroke: var(--primary-blue) !important;
}

.mobile-nav a {
    font-size: 0.82rem;
    font-weight: 800;
    color: #002b5c;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 10px 12px 36px;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    position: relative;
    border-radius: 8px;
}

/* Remove default pseudo-elements from top-level nav links */
.mobile-nav > a::before,
.mobile-nav > a::after {
    display: none;
}

/* Nav link icon styling */
.mobile-nav-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00A8E1 0%, #002b5c 100%);
    border-radius: 6px;
    padding: 3px;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Separator between top-level nav items */
.mobile-nav-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 225, 0.15) 20%, rgba(0, 168, 225, 0.15) 80%, transparent 100%);
    margin: 6px 0;
    flex-shrink: 0;
}

.mobile-nav a:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 168, 225, 0.08);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.08), inset 0 0 6px rgba(0, 168, 225, 0.04);
}

/* Media Query for Large & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }
    .menu-toggle {
        display: flex !important;
    }
    .nav-inner {
        padding: 0 20px;
    }
    .nav-brand-name {
        font-size: 1.5rem;
    }
    .nav-brand-slogan {
        font-size: 0.8rem;
    }
    .logo-box {
        width: 44px;
        height: 44px;
    }
    .logo-box img {
        height: 34px;
    }
    .nav-lang-switcher {
        display: none !important;
    }
    .top-bar {
        display: none !important; /* Hide extra topbar to save screen estate */
    }
    .navbar {
        top: 0 !important; /* Force sticky top */
    }
    
    /* Hero section grid adjustments */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }
    .hero-btns .btn {
        width: 100%;
        padding: 1.1rem 2rem;
    }
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-badge {
        left: 20px;
        bottom: 20px;
    }
    
    /* Grid overrides to ensure mobile items are properly scaled */
    .categories-grid-p {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .cat-img-wrapper {
        height: 180px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

/* Media Query for Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .categories-grid-p {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .cat-img-wrapper {
        height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Product listing pages grid */
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Brands listing responsiveness */
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 15px !important;
    }
    .brand-item {
        height: 140px;
        padding: 15px;
    }
    .brand-logo-container {
        height: 50px;
    }
    .brand-name {
        font-size: 0.65rem;
    }
    
    /* Fix sticky items to always stay in standard view */
    .fyzen-contact-wrapper {
        right: 15px !important;
        bottom: 15px !important;
    }
    .fyzen-fab-main {
        width: 52px !important;
        height: 52px !important;
    }
    
    /* Mobile viewport header optimizations */
    .nav-brand-slogan {
        display: none !important;
    }
    .dyn-lang-right {
        display: none !important;
    }
    
    /* Mobile drawer active language button */
    .mobile-lang-switcher button.active-lang {
        background: #00A8E1 !important;
        color: #ffffff !important;
        box-shadow: 0 4px 10px rgba(0, 168, 225, 0.15) !important;
    }
}

/* PREMIUM MOBILE DRAWER ACCORDION DROPDOWN SYSTEM */
.mobile-nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 10px 8px 10px 36px;
    margin-bottom: 2px;
    transition: all 0.25s ease;
    border-radius: 8px;
    position: relative;
}

.mobile-nav-dropdown-toggle:hover {
    background: rgba(0, 168, 225, 0.08);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.08), inset 0 0 6px rgba(0, 168, 225, 0.04);
}

.mobile-nav-dropdown-toggle:hover a {
    color: var(--primary-blue) !important;
}

.mobile-nav-dropdown-toggle a {
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    flex-grow: 1;
    font-size: 0.82rem;
    font-weight: 800;
    color: #002b5c;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: transparent !important;
}

.mobile-nav-dropdown-toggle a::before,
.mobile-nav-dropdown-toggle a::after {
    display: none !important;
}

.mobile-nav-dropdown-toggle a:hover {
    background: transparent !important;
    padding-left: 0 !important;
}

.mobile-nav-arrow {
    font-size: 0.9rem;
    color: #00A8E1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(0, 168, 225, 0.05);
}

.mobile-nav-dropdown-toggle:hover .mobile-nav-arrow {
    background: rgba(0, 168, 225, 0.1);
}

.mobile-nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 43, 92, 0.02);
    border-radius: 0 0 10px 10px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    margin-bottom: 4px;
    padding-left: 10px;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
    max-height: 800px;
}

.mobile-nav-dropdown.open .mobile-nav-arrow {
    transform: rotate(180deg);
    background: #00A8E1;
    color: #ffffff;
}

/* Sub-link items inside dropdown with icons */
.mobile-nav-dropdown-menu a,
.mobile-sub-link {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 9px 8px 9px 32px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-bottom: 1px solid rgba(0, 168, 225, 0.04) !important;
    transition: all 0.2s ease !important;
    text-align: left;
    display: flex !important;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0 !important;
    border-radius: 6px;
    position: relative;
    line-height: 1.3 !important;
}

.mobile-nav-dropdown-menu a:last-child,
.mobile-sub-link:last-child {
    border-bottom: none !important;
}

.mobile-nav-dropdown-menu a:hover,
.mobile-sub-link:hover {
    background: rgba(0, 168, 225, 0.08) !important;
    color: var(--primary-blue) !important;
    transform: translateX(4px) !important;
    box-shadow: 0 3px 8px rgba(0, 168, 225, 0.05);
}

/* Category icon in sub-menu */
.mobile-cat-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.15) 0%, rgba(0, 43, 92, 0.1) 100%);
    border-radius: 5px;
    padding: 2px;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-cat-icon svg {
    width: 12px;
    height: 12px;
    stroke: #00A8E1;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

