@font-face {
    font-family: 'Cairo';
    font-display: swap;
    src: local('Cairo');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2'),
        url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2') format('woff2'),
        url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2'),
        url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff') format('woff');
}

:root {
    --primary: #0088cc;
    --primary-light: #00b4ff;
    --primary-dark: #0066cc;
    --primary-glow: rgba(0, 180, 255, 0.5);
    --secondary: #004080;
    --silver: #c0c0c0;
    --silver-dark: #8a8a8a;
    --dark-900: #050510;
    --dark-800: #0a0a1a;
    --dark-700: #0f0f24;
    --dark-600: #151530;
    --dark-500: #1a1a3a;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 180, 255, 0.1) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);

    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark-900);
    min-height: 100vh;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    transition: all 0.4s ease;
}

.header.scrolled::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav-link {
    color: var(--dark-500);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #fff;
}

.header.scrolled .logo-img {
    height: 55px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.logo-glow {
    display: none;
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.logo-img {
    height: 70px;
    width: auto;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    position: relative;
    display: block;
    padding: 12px 22px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0.8);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover .link-bg,
.nav-link.active .link-bg {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active {
    box-shadow: var(--shadow-glow);
}

/* User Dropdown */
.user-dropdown-wrap {
    position: relative;
    display: inline-block;
    margin-right: auto;
}

.user-dropdown-btn {
    background: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.1);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.user-dropdown-btn:hover {
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
    border-color: rgba(0, 136, 204, 0.2);
}

.header.scrolled .user-dropdown-btn {
    color: var(--dark-500);
}

.header.scrolled .user-dropdown-btn:hover {
    color: var(--primary);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out-expo);
    padding: 10px 0;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-dropdown-wrap:hover .user-dropdown-menu,
.user-dropdown-wrap:focus-within .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: right;
    font-family: inherit;
    cursor: pointer;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 136, 204, 0.05);
    color: var(--primary);
    padding-right: 25px;
}

.user-dropdown-menu .dropdown-item.text-danger {
    color: #e3342f;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 5px;
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: rgba(227, 52, 47, 0.05);
    padding-right: 25px;
}

.login-btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-right: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.login-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
    color: #fff;
}

.header-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-glow);
}

.cta-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 16px;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.4s ease;
}

.header-cta:hover .cta-glow {
    opacity: 0.8;
    filter: blur(20px);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.header-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary) 20%,
            var(--primary-light) 50%,
            var(--primary) 80%,
            transparent 100%);
    opacity: 0.5;
}

.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-toggle:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: var(--primary);
}

.toggle-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 18px;
}

.toggle-box .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
}

.line-1 {
    top: 0;
}

.line-2 {
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    right: 0;
}

.line-3 {
    bottom: 0;
    width: 50%;
    right: 0;
}

.mobile-toggle:hover .line {
    background: var(--primary-light);
}

.mobile-toggle:hover .line-2 {
    width: 100%;
}

.mobile-toggle:hover .line-3 {
    width: 100%;
}

.mobile-toggle.active .line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--primary-light);
}

.mobile-toggle.active .line-2 {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-toggle.active .line-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    width: 100%;
    background: var(--primary-light);
}

/* SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.mobile-sidebar.active {
    pointer-events: auto;
}

.sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-sidebar.active .sidebar-overlay {
    opacity: 1;
}

.overlay-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 255, 0.08) 0%, transparent 40%);
}

.sidebar-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 90%;
    height: 100%;
    background: var(--gradient-dark);
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 1px solid rgba(0, 136, 204, 0.2);
    box-shadow: none;
}

.mobile-sidebar.active .sidebar-panel {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.sidebar-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: circleRotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    animation: circleRotate 15s linear infinite reverse;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s var(--ease-out-expo);
}

.sidebar-close:hover {
    background: rgba(255, 77, 77, 0.2);
    border-color: #ff4d4d;
    transform: rotate(90deg);
}

.close-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-line {
    stroke: var(--silver);
    stroke-width: 2;
    stroke-linecap: round;
    transition: all 0.3s ease;
}

.sidebar-close:hover .close-line {
    stroke: #ff4d4d;
}

.sidebar-header {
    padding: 60px 30px 40px;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-radius: 0 0 35px 35px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.logo-pulse {
    position: absolute;
    inset: -10px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.15;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

.sidebar-logo {
    height: 65px;
    width: auto;
    position: relative;
    z-index: 1;
}

.sidebar-tagline {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out-expo) 0.3s;
}

.mobile-sidebar.active .sidebar-tagline {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    color: var(--silver);
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s var(--ease-out-expo);
    transition-delay: var(--delay);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
}

.sidebar-link.active {
    border-color: var(--primary-light);
    background: rgba(0, 136, 204, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(-8px);
}

.sidebar-link:hover {
    transform: translateX(-8px);
}

.mobile-sidebar.active .sidebar-link {
    opacity: 1;
    transform: translateX(0);
}

.link-hover-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-link:hover .link-hover-bg,
.sidebar-link.active .link-hover-bg {
    opacity: 1;
}

.sidebar-link:hover,
.sidebar-link.active {
    border-color: rgba(0, 136, 204, 0.3);
}

.link-icon-box {
    position: relative;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--silver);
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
}

.sidebar-link.active .link-icon-box {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 12px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-link:hover .icon-glow,
.sidebar-link.active .icon-glow {
    opacity: 0.3;
}

.link-label {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s ease;
}

.sidebar-link:hover .link-label,
.sidebar-link.active .link-label {
    color: #fff;
}

.link-arrow {
    color: var(--silver-dark);
    font-size: 12px;
    z-index: 1;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.sidebar-link:hover .link-arrow,
.sidebar-link.active .link-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-light);
}

.sidebar-footer {
    padding: 25px 20px;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
    text-align: center;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    text-decoration: none;
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
    transition-delay: calc(0.4s + var(--i) * 0.1s);
}

.mobile-sidebar.active .social-link {
    opacity: 1;
    transform: translateY(0);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.sidebar-copyright {
    color: var(--silver-dark);
    font-size: 13px;
    opacity: 0;
    animation: fadeInUp 0.5s var(--ease-out-expo) 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero  */
.hero {
    position: relative;
    padding: 160px 0 30px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(#e9ecef 1px, transparent 1px),
        linear-gradient(to right, #f8f9fa 1px, transparent 1px),
        linear-gradient(to bottom, #f8f9fa 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px, 80px 80px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
    flex: 1;
}

.hero-badge-wrapper {
    margin-bottom: 25px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 100px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid #ff4d4d;
    border-radius: 50%;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 620px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary.main-btn {
    padding: 18px 40px;
    background: var(--dark-900);
    color: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary.main-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.btn-primary.main-btn:hover::before {
    transform: translateX(0);
}

.btn-outline {
    padding: 18px 35px;
    border: 1.5px solid #eee;
    background: transparent;
    color: var(--dark-900);
    border-radius: 16px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-900);
}

.stat-lbl {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.hero-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 20px;
}

.image-stack {
    position: relative;
    width: 100%;
}

.main-img-box {
    width: 85%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    background: #000;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(0.5) contrast(1.1);
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    z-index: 3;
    animation: scanReveal 5s ease-in-out infinite;
    border-bottom: 3px solid var(--primary-light);
    box-shadow: 0 5px 20px rgba(0, 180, 255, 0.4);
}

.hero-scanned-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.main-img-box .hero-scanned-img {
    height: auto;
    min-height: 100%;
}

.scanner-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-light);
    z-index: 4;
}

@keyframes scanReveal {

    0%,
    100% {
        height: 0;
        opacity: 0;
    }

    5%,
    95% {
        opacity: 1;
    }

    50% {
        height: 100%;
    }
}

.tech-frame {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.5));
}

.frame-tl {
    top: 20px;
    left: 20px;
    border-right: 0;
    border-bottom: 0;
}

.frame-tr {
    top: 20px;
    right: 20px;
    border-left: 0;
    border-bottom: 0;
}

.frame-bl {
    bottom: 20px;
    left: 20px;
    border-right: 0;
    border-top: 0;
}

.frame-br {
    bottom: 20px;
    right: 20px;
    border-left: 0;
    border-top: 0;
}

.main-img-box::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-light);
    font-size: 24px;
    font-weight: 300;
    opacity: 0.5;
    z-index: 10;
    font-family: monospace;
}

.cam-label {
    position: absolute;
    color: var(--primary-light);
    font-family: 'Cairo', sans-serif;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1px;
}

.frame-tl .cam-label {
    top: -20px;
    left: 0;
    color: #ff4d4d;
    animation: blink 1s infinite;
}

.frame-tl .cam-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    margin-right: 5px;
}

.frame-tr .cam-label {
    top: -20px;
    right: 0;
}

.frame-bl .cam-label {
    bottom: -20px;
    left: 0;
}

.frame-br .cam-label {
    bottom: -20px;
    right: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.btn-primary i {
    margin-right: 10px;
}

.btn-outline i {
    margin-left: 10px;
}

.hero-content>* {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.hero-badge-wrapper {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}

.hero-stats-mini {
    animation-delay: 0.5s;
}

.hero-visual {
    opacity: 0;
    animation: fadeInRight 1s var(--ease-out-expo) 0.3s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Services */
.services {
    padding: 40px 0 40px;
    background: #e9ecef;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--dark-900);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 136, 204, 0.12);
    border-color: var(--primary-light);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.service-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-title-divider {
    display: none;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-900);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-card-btn i {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-btn {
    color: var(--primary);
}

.service-card:hover .service-card-btn i {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .title-line {
        font-size: 45px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 50px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }

    .visual-frame {
        max-width: 600px;
        margin: 0 auto;
    }

    .frame-tr,
    .frame-br {
        right: 0;
    }

    .main-img-box {
        width: 100%;
    }

    .hero-bottom-bar {
        display: none;
    }
}

/* Toast */
.tech-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark-900);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    direction: rtl;
}

.tech-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 480px) {
    .stat-divider {
        display: none;
    }

    .badge-dot {
        display: none;
    }

    .visual-frame {
        padding: 0 !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ABOUT SECTION */
.about {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.about-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
}

.about-visual-creative {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.shape-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: #f1f7ff;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blobMorph 10s ease-in-out infinite;
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
}

.main-visual-box {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 136, 204, 0.12);
}

.minimal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-minimal {
    flex: 1.2;
    z-index: 2;
    text-align: right;
}

.minimal-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--dark-900);
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-blue {
    color: var(--primary);
}

.minimal-p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 35px;
    font-weight: 500;
}

.minimal-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.min-feat {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-900);
}

.min-feat-icon {
    color: var(--primary);
    font-size: 20px;
}

.minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: var(--dark-900);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.minimal-btn:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .floating-badge {
        right: 20px;
        bottom: -20px;
    }

    .min-feat {
        justify-content: center;
    }
}

.coverage {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #dfdfdd;
}

.coverage-layout-v3 {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
    flex-direction: row;
}

.hub-visual-side {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-text-side {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.service-details-showcase {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-details-showcase.show {
    opacity: 1;
    transform: translateX(0);
}

.service-hub-main {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-center-logo {
    position: relative;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0, 136, 204, 0.15);
    border: 3px solid var(--primary-light);
}

.hub-center-logo img {
    width: 65%;
    height: auto;
}

.hub-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px solid var(--primary-light);
    border-radius: 50%;
    animation: hubPulse 4s infinite;
}

@keyframes hubPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hub-orbit-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
}

.service-node-item {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid var(--primary-light);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.12);
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-node-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-node-item.active {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px;
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 136, 204, 0.3);
    z-index: 30;
}


.node-1 {
    transform: rotate(0deg) translate(200px) rotate(0deg);
}

.node-2 {
    transform: rotate(40deg) translate(200px) rotate(-40deg);
}

.node-3 {
    transform: rotate(80deg) translate(200px) rotate(-80deg);
}

.node-4 {
    transform: rotate(120deg) translate(200px) rotate(-120deg);
}

.node-5 {
    transform: rotate(160deg) translate(200px) rotate(-160deg);
}

.node-6 {
    transform: rotate(200deg) translate(200px) rotate(-200deg);
}

.node-7 {
    transform: rotate(240deg) translate(200px) rotate(-240deg);
}

.node-8 {
    transform: rotate(280deg) translate(200px) rotate(-280deg);
}

.node-9 {
    transform: rotate(320deg) translate(200px) rotate(-320deg);
}

.orbit-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.orbit-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-dasharray: 6, 6;
}

.showcase-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--dark-900);
    margin: 25px 0;
    line-height: 1.25;
}

.showcase-desc {
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 40px;
}

.service-divided-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    flex: 1;
    min-width: 200px;
}

.feat-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feat-txt strong {
    display: block;
    font-size: 17px;
    color: var(--dark-900);
    margin-bottom: 2px;
}

.feat-txt span {
    font-size: 14px;
    color: #64748b;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 45px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 100px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.25);
    transition: all 0.3s ease;
    font-size: 16px;
}

.showcase-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 136, 204, 0.35);
}

@media (max-width: 1100px) {
    .coverage-layout-v3 {
        flex-direction: column-reverse;
        gap: 60px;
        padding: 0 20px;
    }

    .service-hub-main {
        width: 320px;
        height: 320px;
    }

    .node-1,
    .node-2,
    .node-3,
    .node-4,
    .node-5,
    .node-6,
    .node-7,
    .node-8,
    .node-9 {
        transform: rotate(var(--rot)) translate(120px) rotate(calc(-1 * var(--rot))) !important;
    }
}

@media (max-width: 480px) {
    .service-hub-main {
        width: 250px;
        height: 250px;
    }

    .section-badge {
        padding: 8px 14px;
        margin-bottom: 0;
    }

    .showcase-title {
        font-size: 24px;
    }

    .coverage-layout-v3 {
        padding: 0;
    }

    .products-carousel-v2 {
        padding: 50px 0 !important;
    }

    .carousel-header {
        margin: 0 auto 30px !important;
    }

    .products-carousel-v2 .p-name {
        font-size: 20px;
    }

    .product-viewer-wrap {
        padding: 0 20px !important;
    }

    .about {
        padding: 50px 0;
    }

    .hub-center-logo {
        width: 70px;
        height: 70px;
    }

    .hub-center-logo img {
        width: 50%;
    }

    .node-1 {
        transform: rotate(0deg) translate(95px) rotate(0deg) !important;
    }

    .node-2 {
        transform: rotate(40deg) translate(95px) rotate(-40deg) !important;
    }

    .node-3 {
        transform: rotate(80deg) translate(95px) rotate(-80deg) !important;
    }

    .node-4 {
        transform: rotate(120deg) translate(95px) rotate(-120deg) !important;
    }

    .node-5 {
        transform: rotate(160deg) translate(95px) rotate(-160deg) !important;
    }

    .node-6 {
        transform: rotate(200deg) translate(95px) rotate(-200deg) !important;
    }

    .node-7 {
        transform: rotate(240deg) translate(95px) rotate(-240deg) !important;
    }

    .node-8 {
        transform: rotate(280deg) translate(95px) rotate(-280deg) !important;
    }

    .node-9 {
        transform: rotate(320deg) translate(95px) rotate(-320deg) !important;
    }

    .service-node-item {
        width: 45px;
        height: 45px;
        margin-top: -22.5px;
        margin-left: -22.5px;
        padding: 3px;
    }

    .service-node-item.active {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }
}

/* PRODUCT CAROUSEL */
.products-carousel-v2 {
    padding: 120px 0;
    background: #dfdfdd;
    position: relative;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.carousel-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-900);
    margin-top: 20px;
}

.product-viewer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.active-product-display {
    display: flex;
    align-items: center;
    gap: 80px;
    background: #f8fafc;
    border-radius: 50px;
    padding: 60px;
    border: 1px solid #edf2f7;
    position: relative;
}

.product-details-side {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.p-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 20px;
}

.p-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-900);
    margin-bottom: 20px;
}

.p-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 30px;
}

.p-specs-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.spec-item-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark-900);
    font-size: 14px;
}

.spec-item-v3 i {
    color: var(--primary);
}

.p-buy-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.p-price-v3 .val {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.p-price-v3 .curr {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
}

.p-actions-v3 {
    display: flex;
    gap: 15px;
}

.action-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-v3 {
    background: var(--dark-900);
    color: #fff;
}

.cart-v3:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.fav-v3 {
    background: #fff;
    color: var(--dark-900);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fav-v3:hover {
    color: #ef4444;
}

.product-visual-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-hub-v3 {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-circle {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.main-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hud-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateHub 20s linear infinite;
}

.hud-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 0.5;
    stroke-dasharray: 10, 5;
    opacity: 0.3;
}

.hud-label {
    position: absolute;
    padding: 5px 12px;
    background: #fff;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.label-tr {
    top: 10%;
    right: 10%;
}

.label-bl {
    bottom: 10%;
    left: 10%;
}

.label-br {
    bottom: 20%;
    right: -5%;
}

.scan-line-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scanMoveV3 3s ease-in-out infinite;
    z-index: 6;
}

@keyframes scanMoveV3 {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    50% {
        top: 100%;
    }
}

.product-nav-thumbs {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.thumb-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.thumb-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.6;
}

.thumb-node.active {
    border-color: var(--primary);
    transform: scale(1.2);
}

.thumb-node.active img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 1100px) {
    .active-product-display {
        flex-direction: column-reverse;
        padding: 40px;
        gap: 50px;
    }

    .visual-hub-v3 {
        width: 300px;
        height: 300px;
    }
}

/* FEATURED PRODUCTS */
.featured-products {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-products::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.featured-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark-900);
    margin: 20px 0;
}

.featured-swiper {
    padding: 40px 20px 80px !important;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-card-v4 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
}

.product-card-v4:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.1);
    border-color: var(--primary);
}

.p-card-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.p-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-card-v4:hover .p-card-img img {
    transform: scale(1.1) rotate(-5deg);
}

.p-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-v4::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.product-card-v4:hover::before {
    opacity: 1;
}

.p-card-info {
    padding: 20px 25px;
    text-align: right;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 8px;
}

.p-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.p-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.p-card-price-row {
    margin-top: auto;
    margin-bottom: 12px;
}

.p-card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
}

.p-card-fav {
    background: none;
    border: none;
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-card-fav:hover {
    color: #ef4444;
}


.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: var(--dark-900);
}

.featured-swiper .swiper-button-next::after,
.featured-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}

.featured-swiper .swiper-button-next:hover,
.featured-swiper .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff;
}

.featured-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.featured-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .featured-products {
        padding: 60px 0;
    }

    .featured-title {
        font-size: 28px;
    }

    .featured-swiper {
        padding: 20px 10px 60px !important;
    }

    .product-card-v4 {
        max-width: 100%;
        margin: 0;
    }

    .p-card-img {
        height: 220px;
    }

    .p-card-info {
        padding: 15px 20px;
    }

    .p-card-price-row {
        margin-bottom: 8px;
    }

    .p-card-price {
        font-size: 18px;
    }

    .p-card-title {
        font-size: 16px;
    }


    .p-card-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .featured-swiper .swiper-button-next,
    .featured-swiper .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .featured-header {
        margin-bottom: 30px;
    }

    .p-card-img {
        height: 200px;
    }

    .p-card-btn-text {
        height: 48px;
        font-size: 15px;
    }
}

/* Footer */
.footer {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    direction: rtl;
}

.footer-logo {
    height: 70px;
    max-width: 100%;
    margin-bottom: 25px;
}

.brand-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #fff;
}

.social-circles {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.social-btn i {
    margin: 0 !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.col-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.clean-links {
    list-style: none;
}

.clean-links li {
    margin-bottom: 12px;
}

.clean-links a {
    color: #fff;
    font-size: 15px;
    transition: color 0.3s ease;
}

.clean-links a:hover {
    color: var(--primary);
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-box i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    margin: 0 !important;
}

.contact-box:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.contact-box:hover i {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direct-contact a {
    color: #fff;
}

.footer-legal {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.legal-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.legal-wrap p {
    font-size: 13px;
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-circles {
        justify-content: center;
    }
}


/* BG */
.str {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

@media (max-width: 600px) {
    .str {
        white-space: normal;
        text-overflow: clip;
    }
}

.bg {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #d0e8f2 100%);
    position: relative;
}

.geometric-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.diamond {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(100, 150, 200, 0.1);
    transform: rotate(45deg);
    animation: float 20s infinite ease-in-out;
}



.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(30, 60, 114, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(52, 152, 219, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.main-container {
    padding: 20px;

}

/* PAGINATION */
.creative-pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.creative-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 10px 20px;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.creative-pagination .page-item {
    margin: 0;
}

.creative-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
}


.creative-pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.creative-pagination .page-item.active .page-link {
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.6);
    transform: scale(1.15);
}

.creative-pagination .page-item.active .page-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.6;
    z-index: -1;
}

.creative-pagination .page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    background: transparent;
}

.creative-pagination .page-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.creative-pagination .page-item:first-child:not(.disabled) .page-link:hover i {
    transform: translateX(3px);
}

.creative-pagination .page-item:last-child:not(.disabled) .page-link:hover i {
    transform: translateX(-3px);
}

@media (max-width: 576px) {
    .creative-pagination {
        gap: 8px;
        padding: 8px 15px;
    }

    .creative-pagination .page-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .nav-menu,
    .header-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    .nav-container {
        padding: 0 20px;
        width: 100%;
        justify-content: space-between;
    }

    .logo-img {
        height: 50px;
    }
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.call-btn {
    background: linear-gradient(135deg, #0088cc 0%, #004080 100%);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* CART SIDEBAR */
#cartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 16, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cartOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
    border-left: 1px solid rgba(0, 136, 204, 0.25);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    z-index: 3001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0088cc, #00b4ff, transparent);
    z-index: 1;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(0, 136, 204, 0.15);
    background: rgba(0, 136, 204, 0.04);
    flex-shrink: 0;
}

.cart-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cart-sidebar-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #0088cc, #00b4ff);
    border-radius: 2px;
}

#closeCartSidebar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #c0c0c0;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#closeCartSidebar:hover {
    background: rgba(255, 77, 77, 0.15);
    border-color: rgba(255, 77, 77, 0.4);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 136, 204, 0.3) transparent;
}

.cart-sidebar-body::-webkit-scrollbar {
    width: 4px;
}

.cart-sidebar-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-sidebar-body::-webkit-scrollbar-thumb {
    background: rgba(0, 136, 204, 0.3);
    border-radius: 2px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    gap: 16px;
}

.cart-empty-icon {
    width: 90px;
    height: 90px;
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0088cc;
    position: relative;
}

.cart-empty-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(0, 136, 204, 0.2);
    border-radius: 50%;
    animation: cartSpinOrbit 12s linear infinite;
}

@keyframes cartSpinOrbit {
    to {
        transform: rotate(360deg);
    }
}

.cart-empty-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.cart-empty-subtitle {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 1.6;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 136, 204, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.cart-item:hover {
    border-color: rgba(0, 136, 204, 0.3);
    background: rgba(0, 136, 204, 0.05);
}

.cart-item-media {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #00b4ff;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.25);
    border-radius: 8px;
    color: #00b4ff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.cart-qty-btn:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

.cart-qty-input {
    width: 36px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.cart-qty-input:focus {
    border-color: #0088cc;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input[type=number] {
    -moz-appearance: textfield;
}

.cart-remove-btn {
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-right: auto;
}

.cart-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.cart-item-total {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    align-self: center;
    flex-shrink: 0;
}

.cart-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 136, 204, 0.15);
    background: rgba(0, 136, 204, 0.04);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary-label {
    font-size: 14px;
    color: #8a8a8a;
}

.cart-summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #00b4ff;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: linear-gradient(135deg, #0088cc 0%, #00b4ff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    width: 100%;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
    color: #fff;
}

.cart-icon-wrap {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    color: #004080;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cart-icon-wrap:hover {
    background: linear-gradient(135deg, #0088cc, #00b4ff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 255, 0.5);
}

.cart-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    min-width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    border: 2px solid #fff;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge.visible {
    transform: scale(1);
}

.cart-loading {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-loading.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 136, 204, 0.2);
    border-top-color: #0088cc;
    border-radius: 50%;
    animation: cartSpin 0.7s linear infinite;
}

@keyframes cartSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
    }
}

.p-card-actions-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
}

.p-card-btn-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
}

.p-card-btn-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    filter: brightness(1.1);
}

.p-card-btn-text i {
    font-size: 15px;
}

.p-card-btn-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 136, 204, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.p-card-btn-icon:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}


.product-footer-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
}

.product-footer-v2 .product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-light);
    direction: ltr;
}

.product-add-btn-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    color: var(--primary-light);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-add-btn-text:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.product-add-btn-text:active {
    transform: scale(0.98);
}

.product-add-btn-text i {
    font-size: 16px;
}