 :root {
            --fn-pink: #ff3e6c;
            --fn-pink-light: #ff6b9d;
            --fn-dark: #121212;
            --fn-dark-light: #2a2a2a;
            --fn-light: #f8f9fa;
            --fn-gray: #6c757d;
            --fn-gray-light: #e9ecef;
            --fn-sale: #ff3e6c;
            --fn-new: #00b894;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--fn-dark);
            background-color: #fff;
            padding-top: 160px; /* Adjusted for fixed header */
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6, .fn-logo, .fn-nav-link {
            font-family: 'Montserrat', sans-serif;
            text-decoration: none;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--fn-pink);
            border-radius: 5px;
        }
        
        /* Announcement Bar with Animation */
        .fn-announcement {
            background: linear-gradient(90deg, var(--fn-dark) 0%, var(--fn-dark-light) 50%, var(--fn-dark) 100%);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 14px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        
        .fn-announcement::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            100% { left: 100%; }
        }
        
        .fn-promo-code {
            background-color: white;
            color: var(--fn-pink);
            padding: 3px 10px;
            border-radius: 20px;
            margin-left: 8px;
            font-weight: 800;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .fn-promo-code:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(255, 62, 108, 0.3);
        }
        
        /* Main Header with Shadow Effect */
        .fn-header {
            background-color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1020;
            transition: all 0.3s ease;
        }
        
        .fn-header.scrolled {
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            top: 0;
        }
        
        /* Logo with Gradient Effect */
        .fn-logo {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, var(--fn-dark) 0%, var(--fn-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }
        
        .fn-logo:hover {
            transform: translateY(-2px);
        }
        
        .fn-logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--fn-dark) 0%, var(--fn-pink) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .fn-logo:hover::after {
            transform: scaleX(1);
        }
        
        /* Enhanced Search Bar */
        .fn-search-container {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .fn-search-input {
            border-radius: 25px;
            border: 2px solid #eee;
            padding: 12px 25px;
            padding-right: 50px;
            font-size: 14px;
            width: 100%;
            transition: all 0.3s;
            background-color: #fafafa;
        }
        
        .fn-search-input:focus {
            border-color: var(--fn-pink);
            box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.1);
            background-color: white;
            outline: none;
        }
        
        .fn-search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--fn-pink);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .fn-search-btn:hover {
            background: var(--fn-dark);
            transform: translateY(-50%) scale(1.1);
        }
        
        /* User Actions with Icons */
        .fn-user-actions .btn {
            color: var(--fn-dark);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 25px;
            transition: all 0.3s;
            position: relative;
        }
        
        .fn-user-actions .btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }
        
        .fn-user-actions .btn i {
            margin-right: 5px;
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: 5px;
            background: var(--fn-pink);
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Enhanced Navigation with Hover Effects */
        .fn-nav {
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            background: white;
        }
        
        .fn-nav-link {
            color: var(--fn-dark);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 15px 12px !important;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
        }
        
        .fn-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--fn-pink) 0%, var(--fn-dark) 100%);
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .fn-nav-link:hover, .fn-nav-link.active {
            color: var(--fn-pink);
        }
        
        .fn-nav-link:hover::after, .fn-nav-link.active::after {
            width: 80%;
        }
        
        /* Sale and New Badges */
        .fn-sale-badge, .fn-new-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 3px;
            z-index: 1;
        }
        
        .fn-sale-badge {
            background-color: var(--fn-sale);
            color: white;
        }
        
        .fn-new-badge {
            background-color: var(--fn-new);
            color: white;
        }
        
        /* Promotional Banner with Gradient */
        .fn-promo-banner {
            background: linear-gradient(90deg, var(--fn-pink) 0%, var(--fn-pink-light) 100%);
            color: white;
            text-align: center;
            padding: 15px 0;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .fn-promo-banner:hover {
            background: linear-gradient(90deg, var(--fn-pink-light) 0%, var(--fn-pink) 100%);
            letter-spacing: 1.5px;
            padding-right: 30px;
        }
        
        .fn-promo-banner::after {
            content: '→';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s;
        }
        
        .fn-promo-banner:hover::after {
            opacity: 1;
            right: 15px;
        }
        
        /* Mega Sale Banner with Pulse Animation */
        .fn-mega-sale {
            background: linear-gradient(90deg, var(--fn-pink) 0%, #ff6b9d 50%, var(--fn-pink) 100%);
            background-size: 200% 100%;
            color: white;
            text-align: center;
            padding: 18px 0;
            font-weight: 900;
            font-size: 22px;
            letter-spacing: 1.5px;
            margin-top: 10px;
            position: relative;
            animation: gradientShift 3s ease infinite;
            overflow: hidden;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .fn-mega-sale a {
            color: white;
            text-decoration: none;
            background: rgba(255,255,255,0.2);
            padding: 5px 15px;
            border-radius: 25px;
            margin-left: 15px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .fn-mega-sale a:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }
        
        /* Mobile Menu Toggle */
        .fn-mobile-toggle {
            display: none;
            border: none;
            background: none;
            font-size: 24px;
            color: var(--fn-dark);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .fn-mobile-toggle:hover {
            background-color: #f8f9fa;
        }
        
        /* Content Area */
        .content-area {
            padding: 40px 0;
            min-height: 500px;
        }
        
        .category-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.4s;
            height: 100%;
            position: relative;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .category-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .category-card:hover .category-card-img {
            transform: scale(1.05);
        }
        
        .category-card-title {
            color: var(--fn-dark);
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .category-card-text {
            color: var(--fn-gray);
            font-size: 14px;
        }
        
        /* Footer */
        .fn-footer {
            background: linear-gradient(to bottom, var(--fn-dark) 0%, #000 100%);
            color: white;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        
        .fn-footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .fn-footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 10px;
        }
        
        .fn-footer a:hover {
            color: var(--fn-pink);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
            font-size: 14px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            body {
                padding-top: 200px;
            }
            
            .fn-mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .fn-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                box-shadow: 0 0 30px rgba(0,0,0,0.1);
                overflow-y: auto;
                transition: left 0.4s ease;
                z-index: 1050;
                padding-top: 80px;
            }
            
            .fn-nav.show {
                left: 0;
            }
            
            .fn-nav-link {
                padding: 15px 25px !important;
                border-bottom: 1px solid #f5f5f5;
                display: block;
            }
            
            .fn-nav-link::after {
                display: none;
            }
            
            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 10000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s;
            }
            
            .mobile-overlay.show {
                opacity: 1;
                visibility: visible;
            }
            
            .fn-logo {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .fn-promo-banner, .fn-mega-sale {
                font-size: 16px;
                padding: 12px 0;
            }
            
            .fn-mega-sale a {
                margin-left: 10px;
                padding: 4px 12px;
                font-size: 14px;
            }
            
            .content-area {
                padding: 30px 0;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
        .stagger-delay-4 { animation-delay: 0.4s; }
        
         :root {
            --fn-pink: #ff3e6c;
            --fn-pink-light: #ff6b9d;
            --fn-dark: #121212;
            --fn-light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
        }
        
        /* Hero Section */
        .fn-hero-section {
            position: relative;
            min-height: 90vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                              url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }
        
        /* Animated Background Overlay */
        .fn-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 62, 108, 0.1) 0%, 
                rgba(18, 18, 18, 0.3) 50%, 
                rgba(255, 62, 108, 0.1) 100%);
            animation: gradientShift 8s ease infinite;
            background-size: 200% 200%;
            z-index: 1;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: var(--fn-pink);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
            box-shadow: 0 4px 12px rgba(255, 62, 108, 0.3);
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .hero-title span {
            color: var(--fn-pink);
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--fn-pink);
            transform: scaleX(0);
            transform-origin: right;
            animation: underlineExpand 1s ease 1.2s forwards;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 600px;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .hero-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.8s both;
        }
        
        .hero-btn {
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .hero-btn-primary {
            background-color: var(--fn-pink);
            color: white;
            border: 2px solid var(--fn-pink);
        }
        
        .hero-btn-primary:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 62, 108, 0.3);
        }
        
        .hero-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .hero-btn-secondary:hover {
            background-color: white;
            color: var(--fn-dark);
            transform: translateY(-3px);
        }
        
        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 4rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 1s both;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--fn-pink);
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
        /* Hero Scrolling Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator a {
            color: white;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .scroll-indicator i {
            font-size: 24px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes underlineExpand {
            from {
                transform: scaleX(0);
                transform-origin: right;
            }
            to {
                transform: scaleX(1);
                transform-origin: left;
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .fn-hero-section {
                min-height: 80vh;
                background-position: center 40%;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .hero-stats {
                margin-top: 3rem;
                gap: 20px;
                justify-content: space-between;
            }
            
            .stat-item {
                flex: 1;
                min-width: 120px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content {
                padding: 3rem 1.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
            }
        }