        html,
        body {
            overflow-x: clip;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Skeleton Loading Animation */
        @keyframes shimmer {
            0% {
                background-position: -468px 0;
            }

            100% {
                background-position: 468px 0;
            }
        }

        .skeleton-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 16px;
            min-height: 380px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .skeleton-image {
            width: 100%;
            height: 200px;
            background: #f6f7f8;
            background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
            background-repeat: no-repeat;
            background-size: 800px 100%;
            display: inline-block;
            position: relative;
            animation: shimmer 1s linear infinite forwards;
            border-radius: 12px;
        }

        .skeleton-text {
            height: 16px;
            width: 100%;
            background: #f6f7f8;
            background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
            background-repeat: no-repeat;
            background-size: 800px 100%;
            animation: shimmer 1s linear infinite forwards;
            border-radius: 4px;
        }

        .skeleton-text.short {
            width: 60%;
        }

        /* Floating Actions & Contact Hub */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
            z-index: 1000;
        }

        .contact-hub-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-hub-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .contact-hub-items.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .hub-item {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .hub-item:hover {
            transform: scale(1.1);
        }

        .hub-item.whatsapp {
            background: #25D366;
        }

        .hub-item.wechat {
            background: #07C160;
        }

        .hub-item.telegram {
            background: #0088cc;
        }

        .hub-item.email {
            background: #EA4335;
        }

        .fab-main {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
        }

        .fab-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border: none;
        }

        .fab-scroll-top {
            background: var(--white);
            color: var(--primary);
            opacity: 0;
            visibility: hidden;
            transform: scale(0.5);
            font-size: 20px;
        }

        .fab-scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .fab-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF6A00;
            --primary-dark: #E05E00;
            --primary-light: #FFB800;
            --secondary: #FF9500;
            --accent: #FF3D00;
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
            --gradient-rich: linear-gradient(135deg, #FF6A00 0%, #FFB800 50%, #FF9500 100%);
            --glow: 0 0 20px rgba(255, 106, 0, 0.4);
            --dark: #1E232D;
            --dark-light: #1E1E2F;
            --bg-color: #FAFAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #5C6370;
            --gray-700: #374151;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 24px 48px rgba(255, 106, 0, 0.12), 0 12px 24px rgba(255, 106, 0, 0.08);
            --border-radius: 28px;
            --border-radius-sm: 20px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background: var(--bg-color);
            line-height: 1.6;
            overflow-x: clip;
            letter-spacing: 0.01em;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            letter-spacing: -0.02em;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray-100);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient);
            border-radius: 4px;
        }

        /* Dark Mode Transitions */
        body {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        body.dark-mode {
            --white: #0F0F1A;
            --dark: #F8F9FA;
            --dark-light: #1E1E2F;
            --bg-color: #0F0F1A;
            --gray-100: #1E1E2F;
            --gray-200: #2D2D44;
            --gray-600: #ADB5BD;
            background-color: var(--bg-color);
            color: var(--dark);
        }

        body.dark-mode .hero {
            background: linear-gradient(135deg, #0F0F1A 0%, #1E1E2F 100%);
        }

        body.dark-mode .feature-card,
        body.dark-mode .search-container,
        body.dark-mode .product-card {
            background: #1E1E2F;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-mode header.scrolled {
            background: rgba(15, 15, 26, 0.8);
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .dark-mode-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            color: var(--dark);
        }

        .dark-mode-toggle:hover {
            background: var(--gray-200);
            transform: rotate(15deg);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 24px 5%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 16px 5%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid var(--glass-border);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: var(--gradient-rich);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md), var(--glow);
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
            animation: shine 4s infinite linear;
        }

        @keyframes shine {
            0% {
                transform: translateX(-150%) translateY(-150%);
            }

            20% {
                transform: translateX(150%) translateY(150%);
            }

            100% {
                transform: translateX(150%) translateY(150%);
            }
        }

        .logo-icon i {
            font-size: 32px;
            color: var(--white);
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .logo-text {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-rich);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            padding: 10px;
        }

        .cart-icon i {
            font-size: 24px;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .cart-icon:hover i {
            color: var(--primary);
        }

        .cart-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--gradient);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            min-width: 20px;
            height: 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 6px;
            box-shadow: var(--shadow-sm);
        }

        .language-selector {
            position: relative;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--gray-100);
            border: none;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 500;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: var(--gray-200);
        }

        .lang-btn i {
            color: var(--primary);
            font-size: 14px;
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .language-selector:hover .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .lang-option a {
            display: block;
            padding: 12px 30px;
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .lang-option:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        .lang-option.active {
            background: var(--gradient);
            color: var(--white);
        }

        .btn-primary {
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            background: var(--gradient);
            color: var(--white);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            padding: 12px 28px;
            border: 2px solid var(--primary);
            border-radius: 50px;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 100px 5% 40px;
            display: flex;
            align-items: flex-start;
            position: relative;
            background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
            overflow: hidden;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite;
        }

        .particle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }

        .particle:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }

            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 106, 0, 0.1);
            border-radius: 40px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .hero-text h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-text p {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            color: var(--gray-600);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 600px;
            background: var(--dark-light);
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 106, 0, 0.1);
            border: 1px solid rgba(255, 106, 0, 0.1);
        }

        .hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 106, 0, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: transform 0.5s ease;
        }

        .hero-visual:hover .hero-image img {
            transform: scale(1.05);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 16px 24px;
            border-radius: 60px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatCard 6s infinite;
            pointer-events: auto;
            cursor: default;
        }

        .floating-card i {
            font-size: 24px;
            color: var(--primary);
        }

        .floating-card span {
            font-weight: 600;
            color: var(--dark);
        }

        .card-1 {
            top: 20%;
            left: -20px;
            animation-delay: 0s;
        }

        .card-2 {
            bottom: 20%;
            right: -20px;
            animation-delay: 2s;
        }

        .card-3 {
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Micro-interactions */
        .btn-primary,
        .btn-outline,
        .image-search-btn,
        .lang-btn,
        .marketplace-tab {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary:active,
        .btn-outline:active {
            transform: scale(0.95);
        }

        .search-hint i {
            color: var(--primary);
            font-size: 16px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-5px);
            }

            60% {
                transform: translateY(-3px);
            }
        }

        /* Search Section - Yuqoriga ko'tarilgan */
        .search-section {
            padding: 0 5% 60px;
            margin-top: -120px;
            position: relative;
            z-index: 20;
        }

        .search-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 106, 0, 0.1);
        }

        .marketplace-tabs {
            display: flex;
            padding: 20px 20px 0;
            gap: 20px;
            background: linear-gradient(to bottom, rgba(255, 106, 0, 0.02), transparent);
        }

        .marketplace-tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
            color: var(--gray-500);
            position: relative;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .marketplace-tab.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .marketplace-tab img {
            width: 32px;
            height: 32px;
            border-radius: 8px;
        }

        .search-box {
            padding: 30px;
        }

        .search-input-wrapper {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .input-group {
            flex: 1;
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            font-size: 20px;
            transition: color 0.3s ease;
            z-index: 1;
        }

        .input-group input {
            width: 100%;
            padding: 20px 20px 20px 55px;
            border: 2px solid var(--gray-200);
            border-radius: 60px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: var(--gray-100);
        }

        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            display: none;
            justify-content: space-around;
            padding: 12px 10px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
            z-index: 1001;
            border-radius: 20px 20px 0 0;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--gray-500);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
        }

        .mobile-nav-item.active {
            color: var(--primary);
        }

        .mobile-nav-item i {
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: flex;
            }
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
        }

        .input-group input:focus+i {
            color: var(--primary);
        }

        .image-search-btn {
            width: 64px;
            height: 64px;
            border: none;
            border-radius: 50%;
            background: var(--gradient);
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .image-search-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .image-search-btn:hover::before {
            left: 100%;
        }

        .image-search-btn:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .search-hint {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-500);
            font-size: 14px;
            padding-left: 10px;
        }

        .search-hint i {
            color: var(--primary);
            font-size: 16px;
        }

        .search-hint span {
            color: var(--primary);
            font-weight: 600;
        }

        /* Features Section */
        .features {
            padding: 60px 5%;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 106, 0, 0.1);
            border-radius: 40px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* Mobile Responsive Improvements */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 48px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text {
                max-width: 100%;
                margin: 0 auto;
            }

            .hero-stats {
                justify-content: center;
            }

            .search-section {
                margin-top: -60px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
            }

            .nav-links {
                display: none;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text p {
                font-size: 16px;
            }

            .hero-image {
                height: 400px;
            }

            body {
                padding-bottom: 80px;
            }

            .marketplace-tabs {
                gap: 10px;
                padding: 15px 15px 0;
            }

            .marketplace-tab {
                font-size: 13px;
                padding: 10px 5px;
                gap: 6px;
                flex: 1;
            }

            .marketplace-tab img {
                width: 20px;
                height: 20px;
            }

            .search-box {
                padding: 15px;
            }

            .input-group input {
                padding: 15px 15px 15px 50px;
                font-size: 14px;
            }

            .image-search-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .hero-particles {
                display: none;
            }

            .floating-card {
                display: none;
            }

            .products-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 28px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .stat-item {
                text-align: center;
            }

            .search-container {
                border-radius: 16px;
            }

            .marketplace-tabs {
                gap: 10px;
                padding: 15px 15px 0;
            }

            .logo-text {
                font-size: 24px;
            }

            .logo-icon {
                width: 44px;
                height: 44px;
            }

            .logo-icon i {
                font-size: 24px;
            }
        }

        .feature-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--border-radius-sm);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0);
            }

            50% {
                transform: translateY(-8px) rotate(2deg);
            }
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 32px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        body.dark-mode .feature-card {
            background: rgba(30, 30, 30, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-light);
            background: var(--white);
        }

        body.dark-mode .feature-card:hover {
            background: var(--dark-light);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .features {
            padding: 100px 5%;
            background: var(--white);
        }

        body.dark-mode .features {
            background: var(--bg-color);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            background: var(--white);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(255, 106, 0, 0.15);
            position: relative;
            animation: float 4s ease-in-out infinite;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--gradient);
            border-radius: 26px;
            opacity: 0.1;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient);
        }

        .feature-card:hover .feature-icon::after {
            opacity: 0.3;
        }

        .feature-icon i {
            font-size: 32px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon i {
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .feature-card p {
            color: var(--gray-500);
            line-height: 1.7;
            font-size: 14px;
            margin: 0;
            font-weight: 500;
        }

        .search-results-section {
            display: none;
            padding: 60px 5%;
        }

        /* Products Section - Internet Magazin */
        .popular-products {
            padding: 100px 5%;
            background: var(--gray-50);
        }

        body.dark-mode .popular-products {
            background: var(--dark-light);
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .products-header-left h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .products-header-left p {
            color: var(--gray-600);
            font-size: 16px;
        }

        .products-header-right {
            display: flex;
            gap: 12px;
        }

        .category-btn {
            padding: 10px 24px;
            border: 2px solid var(--gray-200);
            border-radius: 40px;
            background: transparent;
            color: var(--gray-600);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover,
        .category-btn.active {
            border-color: var(--primary);
            background: var(--primary);
            color: var(--white);
        }

        .products-grid {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--gray-200);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 145, 0, 0.9);
            backdrop-filter: blur(8px);
            color: var(--white);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            z-index: 10;
            text-transform: uppercase;
        }

        .product-image {
            height: 180px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        body.dark-mode .product-image {
            background: var(--dark-light);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-info {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex-grow: 1;
        }

        .product-title {
            font-size: 12px;
            font-weight: 500;
            color: var(--dark);
            line-height: 1.4;
            height: 34px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 2px;
        }

        .product-rating-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2px;
        }

        .rating-stars {
            color: #FFB100;
            display: flex;
            gap: 1px;
            font-size: 9px;
        }

        .product-sales-count {
            font-size: 10px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .product-price {
            font-size: 17px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin: 2px 0;
        }

        .product-shipping-text {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 10px;
            color: #27ae60;
            font-weight: 600;
            margin-top: 1px;
        }

        .product-shipping-text i {
            font-size: 9px;
        }

        .product-actions {
            display: flex;
            gap: 6px;
            margin-top: auto;
            flex-wrap: nowrap;
        }

        .add-to-cart-btn {
            flex: 0 0 40px;
            width: 40px;
            height: 40px;
            padding: 0;
            border: 1px solid var(--primary);
            border-radius: 10px;
            background: var(--white);
            color: var(--primary);
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.dark-mode .add-to-cart-btn {
            background: var(--dark-light);
        }

        .add-to-cart-btn:hover {
            background: rgba(255, 122, 0, 0.1);
            transform: translateY(-2px);
        }

        .buy-now-btn {
            flex: 1;
            height: 40px;
            border: none;
            border-radius: 10px;
            background: var(--gradient);
            color: var(--white);
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
            white-space: nowrap;
        }

        .buy-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
        }

        .wishlist-btn {
            width: 44px;
            height: 44px;
            border: 2px solid var(--gray-200);
            border-radius: 50%;
            background: transparent;
            color: var(--gray-500);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wishlist-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: scale(1.1);
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 5%;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        body.dark-mode .how-it-works {
            background: var(--bg-color);
        }

        .steps-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        /* Connecting line for desktop */
        @media (min-width: 992px) {
            .steps-container::before {
                content: '';
                position: absolute;
                top: 45%;
                left: 10%;
                width: 80%;
                height: 2px;
                background: repeating-linear-gradient(to right, var(--gray-300) 0, var(--gray-300) 8px, transparent 8px, transparent 16px);
                z-index: 0;
                opacity: 0.5;
            }
        }

        .step-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 40px 30px;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            text-align: center;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        body.dark-mode .step-card {
            background: rgba(30, 30, 30, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
            background: var(--white);
            border-color: var(--primary-light);
        }

        body.dark-mode .step-card:hover {
            background: var(--dark-light);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gradient);
            color: var(--white);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 24px;
            box-shadow: 0 8px 16px rgba(255, 106, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 2px solid var(--primary-light);
            border-radius: 20px;
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 20px rgba(255, 106, 0, 0.4);
        }

        .step-card h3 {
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .step-card p {
            color: var(--gray-500);
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .step-icon {
            width: 52px;
            height: 52px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: auto;
            transition: all 0.3s ease;
            animation: float 4s ease-in-out infinite;
        }

        .step-icon i {
            font-size: 22px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .step-card:hover .step-icon {
            background: rgba(255, 106, 0, 0.1);
            transform: translateY(-4px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 120px 5%;
            background: var(--white);
            position: relative;
        }

        body.dark-mode .faq-section {
            background: var(--bg-color);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        body.dark-mode .faq-item {
            background: rgba(30, 30, 30, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            border-color: var(--primary-light);
        }

        .faq-question {
            padding: 28px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 800;
            font-size: 18px;
            color: var(--dark);
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .faq-item.is-open .faq-question {
            color: var(--primary);
            padding-bottom: 16px;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 14px;
        }

        .faq-item.is-open .faq-icon {
            background: var(--gradient);
            color: var(--white);
            transform: rotate(45deg);
            /* Plus to X/Minus-like rotation */
            box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
        }

        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--gray-500);
            line-height: 1.8;
            font-size: 15px;
            font-weight: 500;
        }

        .faq-item.is-open .faq-answer {
            padding: 0 32px 32px;
            max-height: 500px;
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 5%;
            background: linear-gradient(135deg, #FFF9F0, var(--white));
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
        }

        .testimonial-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--dark);
        }

        /* Search Tags */
        .search-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .search-tag {
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: var(--white);
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .search-tag:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Testimonials Slider */
        .testimonials-slider {
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
            width: max-content;
        }

        .testimonials-slider:hover .testimonials-track {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-350px * 5.5));
            }

            /* Adjust based on card width + gap */
        }

        .testimonial-slide {
            flex: 0 0 350px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            padding: 32px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        body.dark-mode .testimonial-slide {
            background: rgba(30, 30, 30, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .testimonial-slide:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            background: var(--white);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 15px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
        }

        .testimonial-info h4 {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .testimonial-info p {
            font-size: 13px;
            color: var(--gray-500);
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray-600);
            font-style: italic;
            margin-bottom: 15px;
        }

        .testimonial-stars {
            color: #FFB100;
            font-size: 13px;
        }

        /* News Section */
        .news-section {
            padding: 100px 5%;
            background: var(--gray-50);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .news-card {
            background: var(--white);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--gray-100);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .news-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
        }

        .news-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-content p {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            font-size: 15px;
            transition: gap 0.3s ease;
            margin-top: auto;
        }

        .news-link:hover {
            gap: 12px;
            color: var(--primary-hover);
        }

        /* Dark Mode for News */
        body.dark-mode .news-section {
            background: var(--dark-light);
        }

        body.dark-mode .news-card {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.05);
        }

        body.dark-mode .news-content h3 {
            color: var(--white);
        }

        body.dark-mode .news-content p {
            color: var(--gray-400);
        }

        /* CTA Section */
        .cta {
            padding: 60px 5%;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--gradient);
            border-radius: var(--border-radius);
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .cta-btn {
            padding: 18px 48px;
            border: none;
            border-radius: 60px;
            background: var(--white);
            color: var(--primary);
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 5% 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col:first-child {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
        }

        .footer-logo .logo-icon i {
            font-size: 22px;
        }

        .footer-logo span {
            font-size: 24px;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-col p {
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 14px;
        }

        .footer-col ul li a {
            color: var(--gray-500);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-col ul li i {
            color: var(--primary);
            font-size: 14px;
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-500);
            font-size: 15px;
            margin-bottom: 16px;
        }

        .contact-info li i {
            width: 20px;
            color: var(--primary);
            font-size: 16px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-500);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 2000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.open {
            right: 0;
        }

        .cart-header {
            padding: 24px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .cart-header h3 i {
            color: var(--primary);
            margin-right: 8px;
        }

        .close-cart {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--gray-100);
            color: var(--gray-600);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .close-cart:hover {
            background: var(--primary);
            color: var(--white);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
        }

        .cart-item {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--gray-200);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            background: var(--gray-200);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            font-size: 24px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .cart-item-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            background: var(--white);
            color: var(--dark);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .cart-item-quantity {
            font-weight: 600;
            color: var(--dark);
        }

        .remove-item {
            color: var(--gray-500);
            cursor: pointer;
            transition: color 0.3s ease;
            margin-left: auto;
        }

        .remove-item:hover {
            color: #ff4444;
        }

        .cart-footer {
            padding: 24px;
            border-top: 1px solid var(--gray-200);
            background: var(--white);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
        }

        .cart-total span:last-child {
            color: var(--primary);
            font-size: 24px;
        }

        .checkout-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 40px;
            background: var(--gradient);
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .empty-cart {
            text-align: center;
            padding: 40px 0;
            color: var(--gray-500);
        }

        .empty-cart i {
            font-size: 60px;
            color: var(--gray-300);
            margin-bottom: 16px;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: var(--border-radius);
            max-width: 500px;
            width: 90%;
            padding: 40px;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-500);
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary);
        }

        .modal h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .upload-area {
            border: 3px dashed var(--primary);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .upload-area:hover {
            background: rgba(255, 106, 0, 0.05);
        }

        .upload-area i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .upload-area p {
            color: var(--gray-600);
            margin-bottom: 8px;
        }

        .upload-area .small {
            font-size: 13px;
            color: var(--gray-500);
        }

        .modal-preview {
            max-width: 100%;
            max-height: 300px;
            border-radius: 12px;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 48px;
            }

            .features-grid,
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-stats {
                justify-content: center;
            }

            .floating-card {
                display: none;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 100px 4% 30px !important;
            }

            section {
                padding: 60px 4% !important;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-visual {
                display: none;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .search-input-wrapper {
                flex-direction: column;
            }

            .image-search-btn {
                width: 100%;
                border-radius: 60px;
            }

            .marketplace-tabs {
                flex-direction: column;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .news-image {
                height: 200px;
            }

            .news-content h3 {
                font-size: 18px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .feature-card {
                padding: 25px 15px;
                border-radius: 24px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                border-radius: 20px;
                margin-bottom: 18px;
            }

            .feature-icon i {
                font-size: 24px;
            }

            .feature-card h3 {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .feature-card p {
                font-size: 12px;
                line-height: 1.5;
            }

            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .step-card {
                padding: 25px 15px;
                border-radius: 20px;
            }

            .step-number {
                width: 36px;
                height: 36px;
                font-size: 16px;
                border-radius: 12px;
                margin-bottom: 16px;
            }

            .step-card h3 {
                font-size: 15px;
                margin-bottom: 8px;
            }

            .step-card p {
                font-size: 11px;
                margin-bottom: 15px;
                line-height: 1.4;
            }

            .step-icon {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }

            .step-icon i {
                font-size: 18px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 0 5px;
            }

            .product-card {
                border-radius: 16px;
            }

            .product-image {
                height: 140px;
            }

            .product-badge {
                padding: 2px 8px;
                font-size: 8px;
                top: 8px;
                right: 8px;
            }

            .product-info {
                padding: 10px;
                gap: 3px;
            }

            .product-title {
                font-size: 11px;
                height: 32px;
                margin-bottom: 1px;
                line-height: 1.3;
            }

            .product-price {
                font-size: 15px;
            }

            .rating-stars {
                font-size: 8px;
            }

            .product-sales-count {
                font-size: 9px;
            }

            .product-shipping-text {
                font-size: 9px;
            }

            .product-shipping-text i {
                font-size: 8px;
            }

            .add-to-cart-btn {
                flex: 0 0 36px;
                width: 36px;
                height: 36px;
                border-radius: 8px;
                font-size: 13px;
            }

            .buy-now-btn {
                height: 36px;
                font-size: 11px;
                border-radius: 8px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-col:first-child {
                max-width: 100% !important;
            }

            .footer-logo {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-col ul li a {
                justify-content: center;
            }

            .contact-info li {
                justify-content: center;
            }

            /* 2 columns for links on medium-small screens */
            @media (min-width: 450px) {
                .footer-content {
                    grid-template-columns: repeat(2, 1fr);
                }

                .footer-col:first-child,
                .footer-col:last-child {
                    grid-column: 1 / -1;
                }
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cta-container {
                padding: 40px 20px;
            }

            .cta h2 {
                font-size: 32px;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            footer {
                margin-bottom: 0 !important;
                padding-bottom: 50px !important;
            }
        }

        @media (max-width: 480px) {
            .nav-right {
                gap: 10px;
            }

            .btn-outline,
            .btn-primary {
                padding: 10px 20px;
                font-size: 14px;
            }

            .lang-btn {
                padding: 8px 15px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .hero-text h1 {
                font-size: 32px;
            }

            .products-header-right {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Product Detail Page Specific Styles */
        .product-page-main {
            padding: 100px 3% 40px;
            background: var(--white);
            min-height: 100vh;
        }

        body.dark-mode .product-page-main {
            background: var(--bg-color);
        }

        .product-container {
            max-width: 1550px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 350px; /* Wider main column, stable sidebar */
            gap: 40px;
            align-items: flex-start;
            padding: 40px 40px 80px;
        }

        .product-main-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .product-top-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr; /* More space for the main content column */
            gap: 40px;
            margin-bottom: 40px;
        }

        .product-gallery {
            position: sticky;
            top: 100px;
            align-self: flex-start;
            display: flex;
            flex-direction: row;
            gap: 20px;
            width: 100%;
            z-index: 5;
        }

        .main-img-box {
            flex: 1;
            aspect-ratio: 1 / 1;
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            border: 1px solid var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body.dark-mode .main-img-box {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .main-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-img-box:hover {
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color: var(--dark);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .gallery-nav.prev {
            left: 20px;
        }

        .gallery-nav.next {
            right: 20px;
        }

        .main-img-box:hover .gallery-nav {
            opacity: 1;
        }

        .gallery-nav:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
        }

        .gallery-nav i {
            font-size: 18px;
        }

        @media (max-width: 992px) {
            .gallery-nav {
                opacity: 1;
                width: 36px;
                height: 36px;
            }
        }

        .image-thumbs {
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 5px;
            scrollbar-width: none;
            /* Hide scrollbar Firefox */
            -ms-overflow-style: none;
            /* Hide scrollbar IE/Edge */
            max-height: 500px;
            width: 85px;
            flex-shrink: 0;
        }

        .image-thumbs::-webkit-scrollbar {
            display: none;
            /* Hide scrollbar Chrome/Safari/Opera */
        }

        .thumb-item {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border-radius: 16px;
            border: 2px solid transparent;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .thumb-item.active {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .product-main-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .product-breadcrumb {
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: var(--gray-500);
        }

        .product-title-container {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex: 1;
        }

        .product-title-h1 {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.3;
            letter-spacing: -0.5px;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .product-title-h1.is-expanded {
            -webkit-line-clamp: unset;
            line-clamp: unset;
            display: block;
            overflow: visible;
        }

        .title-expand-btn {
            background: var(--gray-100);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--gray-600);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .title-expand-btn:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
        }

        .title-expand-btn.active {
            transform: rotate(180deg);
        }

        body.dark-mode .product-title-h1 {
            color: var(--white);
        }

        body.dark-mode .title-expand-btn {
            background: var(--gray-800);
            color: var(--gray-400);
        }

        /* Meta Info Bar */
        .product-meta-info-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 100px;
            font-size: 13px;
            color: var(--gray-700);
            transition: all 0.2s;
        }

        .meta-item i {
            color: var(--primary);
            font-size: 14px;
        }

        body.dark-mode .meta-item {
            background: var(--gray-800);
            border-color: var(--gray-700);
            color: var(--gray-300);
        }

        .meta-item:hover {
            border-color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .price-section {
            background: var(--gray-50);
            padding: 0;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        body.dark-mode .price-section {
            background: var(--dark-light);
        }

        .seller-info-block {
            padding: 16px;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 10px 0;
        }

        body.dark-mode .seller-info-block {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .current-price-uzs {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }

        .price-yuan-label {
            font-weight: 500;
            color: var(--gray-500);
            font-size: 16px;
        }

        /* Price Ranges (1688) */
        .price-range-grid {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .price-range-item {
            flex: 1;
            min-width: 120px;
            background: var(--white);
            padding: 12px;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            text-align: center;
            transition: all 0.3s ease;
        }

        body.dark-mode .price-range-item {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .price-range-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .pr-qty {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 4px;
            font-weight: 500;
        }

        .pr-price {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }

        body.dark-mode .pr-price {
            color: var(--white);
        }

        .pr-price-uzs {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
        }

        /* SKU Selection */
        /* SKU Selection */
        .sku-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 5px;
        }

        .sku-group-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sku-group-title span:first-child::after {
            content: ":";
            margin-left: 2px;
        }

        .selected-value-label {
            font-weight: 500;
            color: var(--gray-600);
            font-size: 14px;
        }

        body.dark-mode .selected-value-label {
            color: var(--gray-400);
        }

        body.dark-mode .sku-group-title {
            color: var(--white);
        }

        .sku-options-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }


        .sku-opt {
            padding: 4px 12px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            transition: all 0.2s;
            background: #fff;
            min-width: 40px;
            justify-content: center;
            color: var(--gray-700);
        }

        /* SKU with Image - Full Box Image Style */
        .sku-opt.has-image {
            width: 54px;
            height: 54px;
            padding: 0;
            border: 1px solid var(--gray-200); /* Subtle border to see the box */
            min-width: unset;
            overflow: hidden;
            display: block; /* Ensure image takes full space */
        }

        body.dark-mode .sku-opt {
            background: var(--gray-800);
            border-color: var(--gray-700);
            color: var(--gray-300);
        }

        .sku-opt:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .sku-opt.selected {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255, 107, 0, 0.05);
            box-shadow: 0 0 0 1px var(--primary);
        }

        .sku-opt.has-image.selected {
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary); /* More visible on images */
        }

        .sku-opt img {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            object-fit: cover;
        }

        .sku-opt.has-image img {
            width: 100%;
            height: 100%;
            border-radius: 0; /* Let parent overflow: hidden handle it */
        }

        /* Quantity and Actions */
        .purchase-controls {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            align-items: stretch;
        }

        .qty-picker {
            display: flex;
            align-items: center;
            background: var(--gray-50);
            border-radius: 40px;
            padding: 5px;
            border: 1px solid var(--gray-200);
        }

        body.dark-mode .qty-picker {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .qty-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: var(--dark);
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        body.dark-mode .qty-btn {
            color: var(--white);
        }

        /* Sidebar (3rd Column) */
        .product-sidebar {
            grid-column: 2;
            grid-row: 1 / 3; /* Stick beside main layout AND tabs */
            position: sticky;
            top: 100px;
            align-self: flex-start;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 5;
        }

        .sidebar-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 24px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        body.dark-mode .sidebar-card {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .sidebar-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 106, 0, 0.1);
            border-color: rgba(255, 106, 0, 0.3);
        }

        .sidebar-card .card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        body.dark-mode .sidebar-card .card-title {
            color: var(--white);
        }

        /* Seller Card Specifics */
        .seller-info-block.sidebar-card {
            margin-top: 0 !important;
        }

        /* 
           SIDEBAR CHECKOUT REDESIGN - PREMIUM NAMESPACE
           Using 'side-checkout-' to prevent any global style leaks.
        */
        .side-checkout-container {
            display: flex !important;
            flex-direction: column !important;
            gap: 15px !important;
            padding: 18px 22px !important;
            background: rgba(255, 255, 255, 0.82) !important;
            backdrop-filter: blur(25px) !important;
            -webkit-backdrop-filter: blur(25px) !important;
            border-radius: 28px !important;
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06) !important;
            width: 100% !important;
            max-width: 650px !important; /* Matches typical SKU list width */
            margin: 25px auto !important;
            
            /* Modern Sticky Behavior */
            position: sticky !important;
            bottom: 20px !important;
            z-index: 999 !important;
        }

        body.dark-mode .side-checkout-container {
            background: rgba(255, 255, 255, 0.04) !important;
            border-color: rgba(255, 255, 255, 0.05) !important;
        }

        .side-checkout-header {
            font-size: 15px !important;
            font-weight: 700 !important;
            color: var(--dark) !important;
            opacity: 0.7 !important;
            margin-bottom: 2px !important;
            padding-left: 5px !important;
        }

        body.dark-mode .side-checkout-header {
            color: var(--white) !important;
        }

        /* Row 1: Config Grid (Matching Taobao's clean 2-column look) */
        .side-checkout-config-row {
            display: grid !important;
            grid-template-columns: 1.2fr 1fr !important;
            gap: 15px !important;
            width: 100% !important;
        }

        .side-tile {
            background: rgba(255, 255, 255, 0.45) !important;
            border-radius: 20px !important;
            padding: 10px 15px !important;
            border: 1px solid rgba(0, 0, 0, 0.03) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;
            min-height: 68px !important;
            transition: all 0.3s ease !important;
        }

        body.dark-mode .side-tile {
            background: rgba(255, 255, 255, 0.03) !important;
            border-color: transparent !important;
        }

        /* Mega Price Styling (Taobao Reference) */
        .side-price-display {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .side-price-row {
            display: flex !important;
            align-items: center !important;
            gap: 5px !important;
        }

        .side-price-yuan-total {
            font-size: 26px !important;
            font-weight: 800 !important;
            color: var(--dark) !important;
            letter-spacing: -0.5px !important;
            line-height: 1 !important;
            white-space: nowrap !important; /* No more wrapping! */
        }

        body.dark-mode .side-price-yuan-total {
            color: var(--white) !important;
        }

        .side-currency-yuan {
            font-size: 18px !important;
            font-weight: 700 !important;
            color: var(--primary) !important;
            margin-bottom: -4px !important; /* Visual alignment */
        }

        /* Qty Tile */
        .side-qty-tile {
            padding: 10px 15px !important;
        }

        .side-qty-picker {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            width: 100% !important;
            gap: 10px !important;
        }

        .side-qty-btn {
            width: 32px !important;
            height: 32px !important;
            border-radius: 50% !important;
            background: var(--gray-100) !important;
            border: none !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            font-size: 12px !important;
            color: var(--dark) !important;
            transition: all 0.2s !important;
        }

        .side-qty-btn:hover {
            background: var(--gray-200) !important;
            transform: scale(1.1) !important;
        }

        body.dark-mode .side-qty-btn {
            background: rgba(255, 255, 255, 0.1) !important;
            color: var(--white) !important;
        }

        .side-qty-input {
            width: 48px !important;
            border: none !important;
            background: transparent !important;
            text-align: center !important;
            font-size: 20px !important;
            font-weight: 800 !important;
            color: var(--dark) !important;
            padding: 0 !important;
        }

        body.dark-mode .side-qty-input {
            color: var(--white) !important;
        }

        /* Row 2: Action Buttons */
        .side-checkout-actions-row {
            display: flex !important;
            gap: 12px !important;
            width: 100% !important;
            margin-top: 5px !important;
        }

        .side-btn {
            height: 50px !important;
            border-radius: 18px !important;
            font-size: 14px !important;
            font-weight: 700 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .side-btn-cart {
            width: 52px !important;
            min-width: 52px !important;
            flex: 0 0 52px !important;
            background: var(--white) !important;
            color: var(--primary) !important;
            border: 1.5px solid var(--primary) !important;
        }

        .side-btn-cart i {
            font-size: 19px !important;
        }

        .side-btn-cart:hover {
            background: rgba(255, 106, 0, 0.05) !important;
        }

        .side-btn-buy {
            flex: 1 !important;
            background: var(--gradient) !important;
            color: white !important;
            border: none !important;
            gap: 10px !important;
            box-shadow: 0 12px 30px rgba(255, 106, 0, 0.25) !important;
        }

        .side-btn-buy:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 15px 35px rgba(255, 106, 0, 0.35) !important;
        }

        /* Responsive */
        @media (max-width: 1300px) {
            .side-checkout-config-row {
                grid-template-columns: 1.1fr 1fr !important;
            }
        }


        .seller-info-block.sidebar-card .product-trust-badges {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 15px;
        }

        .seller-scores-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .score-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .score-label {
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        .score-value-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .score-stars {
            display: flex;
            gap: 2px;
            color: var(--gray-200);
            font-size: 14px;
        }

        .score-stars .fas.filled {
            color: #ffc107;
        }

        .score-num {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }

        body.dark-mode .score-num {
            color: var(--white);
        }

        .score-metrics {
            background: rgba(0, 0, 0, 0.02);
            border-radius: 16px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        body.dark-mode .score-metrics {
            background: rgba(255, 255, 255, 0.03);
        }

        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .metric-row .m-label {
            color: var(--gray-500);
        }

        .metric-row .m-val {
            font-weight: 600;
            color: var(--dark);
        }

        body.dark-mode .metric-row .m-val {
            color: var(--white);
        }

        .metric-row.highlight {
            padding-top: 8px;
            margin-top: 5px;
            border-top: 1px dashed var(--gray-200);
        }

        body.dark-mode .metric-row.highlight {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .metric-row.highlight .m-val {
            color: var(--primary);
            font-weight: 700;
        }

        .trade-medal-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            width: fit-content;
            box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
        }

        .rating-badge.shop-name-badge {
            background: rgba(255, 106, 0, 0.08);
            color: var(--primary);
            padding: 15px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-weight: 600;
        }

        .shop-name-row {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .shop-location {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-600);
            font-weight: 600;
            margin-top: 15px;
            background: rgba(0, 0, 0, 0.04);
            padding: 8px 16px;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
        }

        body.dark-mode .shop-location {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            color: var(--gray-400);
        }

        .shop-location i {
            color: var(--primary);
            filter: drop-shadow(0 2px 4px rgba(255, 106, 0, 0.2));
        }

        .shop-location:hover {
            background: var(--white);
            border-color: rgba(255, 106, 0, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
            color: var(--primary);
        }

        body.dark-mode .shop-location:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
        }

        .merchant-badges {
            display: flex;
            gap: 6px;
            margin-left: auto;
        }

        .m-badge-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 13px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: help;
            border: 1.5px solid #fff;
        }

        .m-badge-icon.super-factory {
            background: linear-gradient(135deg, #2D5BFF, #00E5FF);
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .m-badge-icon.powerful-merchant {
            background: linear-gradient(135deg, #FFC107, #FF8A00);
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .m-badge-icon i {
            display: block;
        }

        .m-badge-icon:hover {
            transform: scale(1.2) rotate(5deg);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Policy Cards */
        .policy-card {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .policy-card .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(255, 106, 0, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .policy-card .card-body {
            flex: 1;
        }

        .policy-card .card-title {
            margin-bottom: 5px;
            font-size: 14px;
        }

        .policy-card .card-text {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.4;
            margin: 0;
        }

        /* Help Box */
        .sidebar-help-box {
            background: var(--dark);
            color: var(--white);
            padding: 25px;
            border-radius: 24px;
            text-align: center;
        }

        .sidebar-help-box .help-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .sidebar-help-box p {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .help-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .help-link:hover {
            transform: scale(1.05);
            background: #ff8533;
        }

        .qty-btn:hover {
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .qty-input {
            width: 50px;
            border: none;
            background: transparent;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }

        body.dark-mode .qty-input {
            color: var(--white);
        }

        .action-btns {
            flex: 1;
            display: flex;
            gap: 12px;
        }

        .btn-add-cart {
            flex: 1;
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-add-cart:hover {
            background: rgba(255, 106, 0, 0.05);
            transform: translateY(-2px);
        }

        .btn-buy-now {
            flex: 1.5;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
        }

        .btn-buy-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(255, 106, 0, 0.3);
        }

        /* Description */
        .product-description-section {
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid var(--gray-100);
        }

        .desc-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }

        .desc-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .desc-content img {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 2px;
        }

        /* Mobile Action Bar Optimization */
        .mobile-action-bar {
            display: none; /* Hidden by default (Desktop) */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 20px 24px;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            gap: 12px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 991px) {
            .mobile-action-bar {
                display: flex; /* Show only on mobile */
            }
        }

        body.dark-mode .mobile-action-bar {
            background: rgba(15, 15, 26, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Fullscreen Gallery (Mobile) */
        .fullscreen-gallery {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 3000;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-gallery.active {
            display: flex;
        }

        .fullscreen-img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .fs-close {
            position: absolute;
            top: 40px;
            right: 20px;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            z-index: 3001;
        }

        .fs-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 40px;
            padding: 20px;
            cursor: pointer;
            opacity: 0.7;
        }

        .fs-nav.prev { left: 10px; }
        .fs-nav.next { right: 10px; }
        
        .fs-counter {
            position: absolute;
            bottom: 40px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }

        /* SKU Bottom Sheet (Mobile Only) */
        @media (max-width: 991px) {
            .sku-drawer-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(4px);
                z-index: 2000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
            }

            .sku-drawer-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .sku-drawer {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: var(--white);
                border-top-left-radius: 32px;
                border-top-right-radius: 32px;
                z-index: 2001;
                transform: translateY(100%);
                transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                padding: 24px;
                max-height: 85vh;
                overflow-y: auto;
                box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15);
            }

            .sku-drawer.active {
                transform: translateY(0);
            }

            body.dark-mode .sku-drawer {
                background: var(--dark-light);
                box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
            }

            .drawer-header {
                display: flex;
                gap: 20px;
                margin-bottom: 25px;
                border-bottom: 1px solid var(--gray-100);
                padding-bottom: 20px;
                position: relative;
            }

            .drawer-product-img {
                width: 100px;
                height: 100px;
                border-radius: 16px;
                object-fit: cover;
                border: 1px solid var(--gray-100);
            }

            .drawer-price-info {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 5px;
            }

            .drawer-price-uzs {
                font-size: 24px;
                font-weight: 800;
                color: var(--primary);
            }

            .drawer-selected-text {
                font-size: 13px;
                color: var(--gray-500);
            }

            .close-drawer {
                position: absolute;
                top: 0;
                right: 0;
                width: 32px;
                height: 32px;
                background: var(--gray-100);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                color: var(--gray-600);
                transition: all 0.3s;
            }

            .close-drawer:hover {
                background: var(--primary);
                color: var(--white);
            }

            .drawer-sku-content {
                margin-bottom: 80px; /* Space for the fixed action button in drawer */
            }

            .drawer-actions {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 20px;
                background: var(--white);
                border-top: 1px solid var(--gray-100);
                display: flex;
                gap: 15px;
            }

            body.dark-mode .drawer-actions {
                background: var(--dark-light);
                border-color: rgba(255, 255, 255, 0.05);
            }
        }

        /* Desktop specific: Ensure drawer is hidden */
        @media (min-width: 992px) {
            .sku-drawer-overlay, .sku-drawer {
                display: none !important;
            }
        }

        @media (max-width: 1400px) {
            .product-container {
                grid-template-columns: 1.2fr 1fr;
                padding: 0 20px 40px;
                gap: 30px;
            }

            .product-gallery {
                grid-row: 1;
                grid-column: 1;
            }

            .product-main-info {
                grid-row: 1;
                grid-column: 2;
            }

            .product-sidebar {
                grid-column: 1 / -1;
                grid-row: 2; /* Sidebar below Gal/Info */
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                position: relative;
                top: 0;
                gap: 20px;
            }

            .product-tabs-section {
                grid-column: 1 / -1;
                grid-row: 3; /* Tabs at bottom */
                padding: 32px;
            }

            .sidebar-help-box {
                grid-column: span 3;
            }
        }

        @media (max-width: 992px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-gallery,
            .product-main-info,
            .product-sidebar,
            .product-tabs-section {
                grid-column: 1;
                grid-row: auto; /* Let natural flow take over on mobile */
            }

            .product-gallery {
                position: relative;
                top: 0;
                flex-direction: column-reverse;
                gap: 15px;
            }

            .image-thumbs {
                flex-direction: row;
                width: 100%;
                overflow-x: auto;
                padding-bottom: 10px;
                max-height: none;
            }

            .thumb-item {
                width: 70px;
                height: 70px;
                border-radius: 12px;
            }

            .product-page-main {
                padding-top: 90px;
            }

            .product-tabs-section {
                grid-column: 1;
                padding: 20px;
                margin-top: 0;
            }

            .sidebar-help-box {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .product-title-h1 {
                font-size: 24px;
            }

            .current-price-uzs {
                font-size: 28px;
            }

            .main-img-box {
                border-radius: 24px;
            }
        }

        /* Tabs and Specifications */
        .product-tabs-section {
            grid-column: 1;
            margin-top: 0;
            padding: 48px;
            background: var(--white);
            border-radius: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gray-100);
            z-index: 1;
        }

        /* Certificates Styles */
        .certificates-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .cert-item {
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 24px;
            background: rgba(0, 0, 0, 0.01);
        }

        body.dark-mode .cert-item {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .cert-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 20px;
        }

        body.dark-mode .cert-title {
            color: var(--white);
        }

        .cert-title i {
            color: var(--primary);
        }

        .cert-title small {
            color: var(--gray-500);
            font-weight: 400;
        }

        .cert-images {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .cert-img-box {
            position: relative;
            width: 120px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            cursor: pointer;
        }

        .cert-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cert-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 106, 0, 0.2);
            backdrop-filter: blur(2px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .cert-img-box:hover .cert-overlay {
            opacity: 1;
        }

        body.dark-mode .product-tabs-section {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.05);
        }

        body.dark-mode .product-tabs-section {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .tabs-header {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--gray-100);
            padding-bottom: 20px;
        }

        body.dark-mode .tabs-header {
            border-color: rgba(255, 255, 255, 0.05);
        }

        .tab-btn {
            background: none;
            border: none;
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-400);
            cursor: pointer;
            padding: 8px 16px;
            position: relative;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            color: var(--primary);
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .tab-content {
            height: 0;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            display: block !important;
        }

        .tab-content.active {
            height: auto;
            opacity: 1;
            pointer-events: all;
            visibility: visible;
            animation: fadeIn 0.5s ease;
        }

        /* Skeleton Shimmer Animations */
        @keyframes shimmer {
            0% { background-position: -468px 0; }
            100% { background-position: 468px 0; }
        }

        .skeleton-shimmer {
            background: #f6f7f8;
            background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
            background-repeat: no-repeat;
            background-size: 800px 104px;
            display: block;
            position: relative;
            animation: shimmer 1.5s infinite linear;
        }

        body.dark-mode .skeleton-shimmer {
            background: rgba(255, 255, 255, 0.05);
            background-image: linear-gradient(to right, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.05) 100%);
        }

        .mini-product-card.skeleton .mini-card-img {
            border-radius: 12px;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 0 40px;
        }

        .specs-grid .spec-row {
            display: flex !important;
            justify-content: flex-start !important;
            padding: 12px 0 !important;
            border-bottom: 1px dashed var(--gray-200) !important;
            align-items: flex-start !important;
            gap: 20px !important;
        }

        .specs-grid .spec-name {
            font-weight: 700 !important;
            color: var(--gray-500) !important;
            font-size: 14px !important;
            flex-shrink: 0 !important;
            width: 140px !important;
            text-align: left !important;
        }

        .specs-grid .spec-value {
            font-weight: 500 !important;
            color: var(--dark) !important;
            font-size: 14px !important;
            text-align: left !important;
            flex: 1 !important;
            min-width: 0 !important;
            word-break: break-word !important;
        }

        body.dark-mode .spec-value {
            color: var(--white);
        }

        /* Similar Products */
        .similar-products-section {
            max-width: 1400px;
            margin: 80px auto;
        }

        .section-title-premium {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            font-weight: 800;
        }

        .section-title-premium span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .products-mini-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .mini-product-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--gray-100);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        body.dark-mode .mini-product-card {
            background: var(--dark-light);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .mini-product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .mini-card-img {
            aspect-ratio: 1;
            overflow: hidden;
        }

        .mini-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mini-product-card:hover .mini-card-img img {
            transform: scale(1.1);
        }

        .mini-card-info {
            padding: 15px;
        }

        .mini-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 40px;
        }

        body.dark-mode .mini-title {
            color: var(--white);
        }

        .mini-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 15px;
        }

        /* Cart Toast */
        .cart-toast {
            position: fixed;
            top: 100px;
            right: 30px;
            z-index: 2000;
            transform: translateX(120%);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .cart-toast.active {
            transform: translateX(0);
        }

        .toast-content {
            background: var(--white);
            padding: 20px 30px;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 15px;
            border-left: 5px solid #27ae60;
        }

        body.dark-mode .toast-content {
            background: var(--dark-light);
        }

        .toast-icon {
            width: 40px;
            height: 40px;
            background: rgba(39, 174, 96, 0.1);
            color: #27ae60;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .toast-title {
            font-weight: 800;
            color: var(--dark);
            font-size: 16px;
        }

        .toast-sub {
            color: var(--gray-500);
            font-size: 14px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1200px) {
            .products-mini-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .specs-grid {
                grid-template-columns: 1fr;
            }

            .product-tabs-section {
                padding: 24px;
                border-radius: 24px;
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .products-mini-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cart-toast {
                top: auto;
                bottom: 100px;
                right: 20px;
                left: 20px;
            }

            .toast-content {
                padding: 15px 20px;
            }
        }

        /* Main Image Zoom & Transitions */
        #main-product-img {
            transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-img-box:hover #main-product-img {
            transform: scale(1.1);
        }

        .main-img-box {
            cursor: zoom-in;
            position: relative;
        }

        .main-img-box::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .main-img-box:hover::after {
            opacity: 1;
        }

        /* Extra fix for Toast hiding */
        .cart-toast {
            visibility: hidden;
            pointer-events: none;
        }

        .cart-toast.active {
            visibility: visible;
            pointer-events: all;
        }

        /* Mobile Sidebar Missing Styles & Helpers */
        .desktop-only {
            display: inline-flex;
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-100);
            color: var(--dark);
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            margin-left: 10px;
        }

        .mobile-menu-toggle:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        @media (max-width: 900px) {
            .desktop-only {
                display: none !important;
            }

            .mobile-menu-toggle {
                display: flex !important;
            }
        }

        /* Mobile Sidebar Full Implementation */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 2000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0 !important;
        }

        .sidebar-header {
            padding: 24px;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .close-sidebar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--gray-100);
            color: var(--gray-500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-sidebar:hover {
            background: var(--danger);
            color: var(--white);
            transform: rotate(90deg);
        }

        .sidebar-content {
            padding: 24px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .sidebar-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .sidebar-links a {
            color: var(--dark);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            display: block;
            background: var(--gray-50);
        }

        .sidebar-links a:hover {
            background: var(--primary-light);
            color: var(--primary);
            transform: translateX(5px);
        }

        .sidebar-lang h4 {
            margin-bottom: 15px;
            color: var(--gray-500);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .lang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .lang-grid a {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: var(--border-radius);
            background: var(--gray-50);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .lang-grid a.active {
            background: var(--primary);
            color: var(--white);
        }

        .lang-grid a:hover:not(.active) {
            background: var(--gray-200);
        }

        /* ====== NEW PRODUCT PAGE ENHANCEMENTS ====== */
        .title-action-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 15px;
        }

        .title-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .action-icon-btn {
            background: var(--bg-color, #fff);
            border: 1px solid var(--border-color, #eaeaea);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-color, #333);
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .action-icon-btn:hover {
            background: var(--gray-100, #f8f9fa);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        body.dark-mode .action-icon-btn {
            background: var(--dark-bg);
            border-color: var(--dark-border);
            color: var(--dark-text);
        }

        body.dark-mode .action-icon-btn:hover {
            background: var(--dark-card);
        }

        .product-trust-badges {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .rating-badge,
        .sales-badge,
        .source-badge {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rating-badge span {
            color: var(--text-color);
        }

        .reviews-link {
            color: var(--primary);
            text-decoration: none;
        }

        .reviews-link:hover {
            text-decoration: underline;
        }

        /* Platform Source Tag (New Discreet Style) */
        .seller-info-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0;
            padding: 0 10px;
        }

        .seller-info-header .card-title {
            margin-bottom: 0 !important;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }

        body.dark-mode .seller-info-header .card-title {
            color: #fff;
        }

        .source-tag {
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .tag-1688 {
            background: linear-gradient(135deg, #FF6A00, #EE0D0D);
            color: #fff;
        }

        .tag-taobao {
            background: linear-gradient(135deg, #FF5000, #FF8D00);
            color: #fff;
        }

        figure.zoom-container {
            background-position: 50% 50%;
            position: relative;
            overflow: hidden;
            cursor: zoom-in;
        }

        .zoom-container img:hover {
            opacity: 0;
        }

        .zoom-container img {
            transition: opacity .5s;
            display: block;
            width: 100%;
        }

        .zoom-container {
            background-position: 50% 50%;
            position: relative;
            overflow: hidden;
            cursor: zoom-in;
            background-repeat: no-repeat;
            /* Zoom multiplier can be adjusted in background-size */
            background-size: 200%;
        }

        .zoom-img {
            transition: opacity 0.5s;
            display: block;
            width: 100%;
        }

        .error-toast .toast-icon {
            background: #ffebee;
            color: #e53935;
        }

        .error-toast .toast-icon i {
            color: #e53935;
        }

        .reviews-mockup {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .review-item {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 15px;
        }

        body.dark-mode .review-item {
            border-color: var(--dark-border);
        }

        .review-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .reviewer-name {
            font-weight: 600;
            font-size: 14px;
        }

        .review-stars {
            font-size: 12px;
        }

        .rating-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 8px;
        }
        .rating-stars i {
            font-size: 14px;
            color: var(--gray-300);
        }
        .rating-stars i.active {
            color: #ffc107;
        }

        .rating-stars-top {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: -4px;
            margin-bottom: 16px;
        }
        .rating-stars-top i {
            font-size: 13px;
        }
        .rating-stars-top i.active {
            color: #ffc107;
        }
        .rating-score-num {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-left: 4px;
        }

        .review-body {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        body.dark-mode .review-body {
            color: var(--gray-400);
        }

        .review-date {
            font-size: 12px;
            color: var(--gray-400);
        }