 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@400;500;600;700;800&display=swap');

        :root {
            --jet: hsl(0, 0%, 20%);
            --white: hsl(0, 0%, 100%);
            --black: hsl(0, 0%, 0%);
            --onyx1: hsl(0, 0%, 24%);
            --onyx2: hsl(0, 0%, 25%);
            --gray-web: hsl(0, 0%, 48%);
            --light-gray: hsl(0, 0%, 80%);
            --davys-gray: hsl(0, 0%, 33%);
            --field-drab: hsl(47, 98%, 22%);
            --red-crayola: hsl(356, 73%, 58%);
            --golden-puppy: hsl(47, 100%, 49%);
            --quick-silver: hsl(0, 0%, 63%);
            --sonic-silver: hsl(0, 0%, 44%);
            --eerie-black1: hsl(0, 0%, 15%);
            --eerie-black2: hsl(0, 0%, 7%);
            --rich-black-fogra39: hsl(0, 0%, 2%);
            --electric-blue: hsl(204, 100%, 50%);
            --neon-purple: hsl(285, 100%, 60%);
            --neon-green: hsl(120, 100%, 50%);

            --ff-roboto: 'Roboto', sans-serif;
            --ff-montserrat: 'Montserrat', sans-serif;

            --fs1: 32px;
            --fs2: 20px;
            --fs3: 19px;
            --fs4: 18px;
            --fs5: 16px;
            --fs6: 15px;
            --fs7: 14px;
            --fs8: 13px;
            --fs9: 12px;
            --fs10: 11px;

            --ff500: 500;
            --ff700: 700;

            --transition: .3s ease-in-out;
        }

        *, *::before, *::after { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }

        a { text-decoration: none; }
        li { list-style: none; }

        button, img, input, a, span, ion-icon { display: block; }

        button {
            color: inherit;
            background: none;
            border: none;
            font: inherit;
            cursor: pointer;
        }

        input { 
            font: inherit; 
            border: none;
        }

        html {
            font-family: var(--ff-roboto);
            color: var(--quick-silver);
            line-height: 1.3;
            scroll-behavior: smooth;
        }

        body { 
            background-color: var(--rich-black-fogra39); 
            min-width: 280px;
            overflow-x: hidden;
        }

        button, a, input, [tabindex] { outline-offset: 4px; }

        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { 
            background-color: var(--rich-black-fogra39); 
            border-left: 1px solid var(--onyx1); 
        }
        ::-webkit-scrollbar-thumb { 
            background: linear-gradient(to bottom, var(--golden-puppy), var(--neon-purple));
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover { 
            background: linear-gradient(to bottom, var(--neon-purple), var(--golden-puppy));
        }
        ::-webkit-scrollbar-button { height: 5px; }

        .container { padding: 0 12px; }

        .h1, .h2, .h3 { color: var(--white); }
        .h1 { font-size: var(--fs1); text-transform: capitalize; font-family: var(--ff-montserrat); }
        .h2 { font-size: var(--fs3); font-family: var(--ff-montserrat); }
        .h3 { font-size: var(--fs2); font-family: var(--ff-montserrat); }
        .h4 { font-size: var(--fs2); color: inherit; font-weight: var(--ff700); }
        .h5 { font-size: var(--fs6); font-weight: var(--ff500); }

        /* Enhanced button styles */
        .btn {
            color: var(--white);
            font-size: var(--fs9);
            font-weight: var(--ff500);
            text-transform: uppercase;
            min-width: 130px;
            padding: 12px 18px;
            border: 1px solid var(--golden-puppy);
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
     
        .btn-primary { 
            background: var(--golden-puppy); 
            color: var(--black);
            box-shadow: 0 0 10px rgba(255, 217, 0, 0.5);
        }
        .btn-primary:hover, .btn-primary:focus { 
            background: hsl(47, 100%, 45%);
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(255, 217, 0, 0.8);
        }

        .btn-secondary { 
            background: transparent;
            box-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
        }
        .btn-secondary:hover, .btn-secondary:focus { 
            background: hsla(47, 100%, 45%, .1);
            transform: translateY(-2px);
            box-shadow: 0 0 15px rgba(255, 217, 0, 0.5);
        }

        /* Enhanced header */
        header { 
            padding: 20px 0; 
            border-bottom: 1px solid var(--onyx1);
            background: rgba(2, 2, 2, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        header .container { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }

        .logo img {
            transition: var(--transition);
            filter: drop-shadow(0 0 5px var(--golden-puppy));
        }
        
        .logo:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 10px var(--golden-puppy));
        }

        .header-nav-wrapper { position: relative; }

        .navbar {
            background: var(--onyx1);
            position: absolute;
            top: calc(100% + 20px);
            right: 0;
            width: 250px;
            padding: 15px;
            border-radius: 8px;
            transform: scale(0.8);
            transform-origin: top right;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .navbar.active {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        .navbar-link {
            background: transparent;
            color: var(--white);
            font-size: var(--fs7);
            padding: 8px 10px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .navbar-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--golden-puppy), transparent);
            transition: var(--transition);
            opacity: 0.2;
        }
        
        .navbar-link:hover::before {
            left: 100%;
        }

        .navbar-link:hover, .navbar-link:focus { 
            color: var(--golden-puppy);
            transform: translateX(5px);
        }

        .navbar-toggle-btn {
            color: var(--white);
            font-size: 30px;
            padding: 5px;
            transition: var(--transition);
        }
        
        .navbar-toggle-btn:hover {
            color: var(--golden-puppy);
            transform: rotate(90deg);
        }

        .header-actions { display: none; }

        /* Enhanced hero section */
        .hero { 
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, transparent 20%, var(--rich-black-fogra39) 70%);
            animation: rotateSlow 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-content { 
            text-align: center; 
            margin-bottom: 50px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title { 
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--white), var(--golden-puppy), var(--white));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .hero-title > span {
            display: inline-block;
            -webkit-text-stroke-width: 1px; 
            -webkit-text-stroke-color: var(--golden-puppy); 
            -webkit-text-fill-color: transparent; 
        }

        .hero-text { 
            color: var(--white); 
            font-size: var(--fs7); 
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .hero-banner { 
            border: 20px solid var(--eerie-black1); 
            border-radius: 50%; 
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 50px rgba(255, 217, 0, 0.3);
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }
        
        .hero-banner img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover;
            transition: var(--transition);
        }
        
        .hero-banner:hover img {
            transform: scale(1.05);
        }

        /* Enhanced product cards */
        .new-product { 
            background: var(--eerie-black2); 
            padding: 60px 0;
            position: relative;
        }
        
        .new-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://i.postimg.cc/FFk32PS6/favicon-1.png') center/200px repeat;
            opacity: 0.03;
            pointer-events: none;
        }

        .section-header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .product-list { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 25px;
        }

        .product-card {
            background: var(--eerie-black1);
            padding: 18px;
            border: 1px solid var(--onyx2);
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 217, 0, 0.05), transparent);
            opacity: 0;
            transition: var(--transition);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--golden-puppy);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .product-banner {
            position: relative;
            height: 210px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .product-banner img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-banner img {
            transform: scale(1.1);
        }

        .product-actions {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }

        .product-card-menu, .add-to-wishlist {
            width: 25px;
            height: 25px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .product-card-menu { 
            background: var(--golden-puppy); 
            color: var(--black);
            box-shadow: 0 0 10px var(--golden-puppy);
        }
        
        .add-to-wishlist { 
            background: var(--eerie-black1); 
            color: var(--white);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        .add-to-wishlist.active { 
            color: var(--red-crayola);
            background: var(--white);
        }
        .add-to-wishlist:hover, .add-to-wishlist:focus { 
            color: var(--red-crayola);
            transform: scale(1.1);
        }

        .place-bid-btn {
            background: var(--golden-puppy);
            color: var(--black);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 0);
            font-size: var(--fs7);
            text-transform: capitalize;
            padding: 8px 16px;
            border-radius: 4px;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            font-weight: bold;
            box-shadow: 0 0 15px var(--golden-puppy);
        }

        .product-card:hover .place-bid-btn, 
        .place-bid-btn:focus { 
            transform: translate(-50%, -50%); 
            opacity: 1;
        }
        
        .place-bid-btn:hover {
            background: var(--black);
            color: var(--golden-puppy);
        }

        .product-title { 
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .product-card:hover .product-title, 
        .product-card:focus .product-title { 
            color: var(--golden-puppy);
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .product-author {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
        }

        .author-img { 
            background: var(--black); 
            border-radius: 50%; 
            overflow: hidden;
            width: 40px;
            height: 40px;
            border: 2px solid var(--golden-puppy);
            transition: var(--transition);
        }
        
        .author-img:hover {
            transform: scale(1.1);
            box-shadow: 0 0 10px var(--golden-puppy);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-username, .product-price .label { 
            color: inherit; 
            font-size: var(--fs8);
            transition: var(--transition);
        }
        .author-username:hover, .author-username:focus { 
            color: var(--golden-puppy);
        }
        
        .author-username {
            position: relative;
            display: inline-block;
        }
        
        .author-username::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--golden-puppy);
            transition: var(--transition);
        }
        
        .author-username:hover::after {
            width: 100%;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: var(--fs8);
        }

        .tag {
            background: var(--golden-puppy);
            color: var(--black);
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 217, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 217, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 217, 0, 0); }
        }

        /* Enhanced about section */
        .about { 
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 217, 0, 0.05), transparent);
            opacity: 0.1;
            pointer-events: none;
        }

        .about-title { 
            text-align: center; 
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--golden-puppy), transparent);
        }

        .about-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .about-item {
            background: var(--eerie-black2);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .about-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--golden-puppy), var(--neon-purple));
            transition: var(--transition);
        }
        
        .about-item:hover::before {
            height: 100%;
        }

        .about-item:hover { 
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .about-item:hover .about-card-title { 
            color: var(--golden-puppy);
        }

        .about-card {
            position: relative;
            padding: 30px 10px 20px;
            border: 1px solid var(--onyx1);
            border-radius: 4px;
            text-align: center;
            z-index: 1;
        }

        .about-card::before, .about-card::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: -2px;
            background: var(--sonic-silver);
            border-radius: 10px;
            transition: var(--transition);
        }

        .about-card::before { width: 3px; height: 100px; }
        .about-card::after { width: 100px; height: 3px; }

        .about-item:hover .about-card::before, 
        .about-item:hover .about-card::after { 
            background: var(--golden-puppy);
        }

        .about-card .card-number {
            position: absolute;
            background: var(--eerie-black2);
            color: var(--onyx2);
            top: -15px;
            left: -15px;
            padding: 5px 15px;
            font-size: 24px;
            font-weight: var(--ff700);
            border-top-left-radius: 18px;
            border: 14px solid var(--eerie-black2);
            transition: var(--transition);
        }
        
        .about-item:hover .card-number {
            color: var(--golden-puppy);
        }

        .card-icon {
            width: max-content;
            margin-inline: auto;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .about-item:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .about-card-title { 
            margin-bottom: 20px; 
            transition: var(--transition); 
        }
        .about-card-text { 
            font-size: var(--fs7); 
            line-height: 1.5; 
        }

        /* Enhanced explore product section */
        .explore-product { 
            background: var(--eerie-black2); 
            padding: 60px 0;
            position: relative;
        }
        
        .explore-product::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--golden-puppy), transparent);
        }

        /* Enhanced top seller section */
        .top-seller { 
            padding: 60px 0;
            position: relative;
        }
        
        .top-seller::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect fill="none" width="200" height="200"/><path fill="%23FFD900" fill-opacity="0.05" d="M0,100 L200,100 M100,0 L100,200"/></svg>') center/cover repeat;
            pointer-events: none;
        }

        .top-seller .card-number {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--eerie-black1);
            font-size: var(--fs10);
            font-weight: var(--ff700);
            color: var(--onyx2);
            padding: 5px 10px;
            border-top-right-radius: 10px;
            border: 7px solid var(--eerie-black2);
            transition: var(--transition);
        }
        
        .top-seller-card:hover .card-number {
            color: var(--golden-puppy);
        }

        .top-seller .card-title { 
            color: var(--quick-silver); 
            transition: var(--transition); 
        }
        .top-seller .card-content data { 
            color: var(--quick-silver); 
            font-size: var(--fs10);
            transition: var(--transition);
        }
        
        .top-seller-card:hover data {
            color: var(--golden-puppy);
        }

        .top-seller-title {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 40px;
            gap: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .top-seller-title:hover {
            transform: translateX(10px);
        }

        .top-seller-title span { 
            color: var(--golden-puppy);
            transition: var(--transition);
        }
        
        .top-seller-title:hover span {
            text-shadow: 0 0 10px var(--golden-puppy);
        }
        
        .top-seller-title ion-icon { 
            margin-left: 10px;
            transition: var(--transition);
        }
        
        .top-seller-title:hover ion-icon {
            transform: rotate(180deg);
        }

        .top-seller-list { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 25px; 
        }
        .top-seller-item { 
            background: var(--eerie-black2); 
            padding: 10px; 
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .top-seller-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .top-seller-card {
            position: relative;
            padding: 13px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 20px;
            border: 1px solid var(--onyx2);
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .top-seller-card:hover {
            border-color: var(--golden-puppy);
        }

        .top-seller-card::before,
        .top-seller-card::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: -1px;
            background: var(--sonic-silver);
            transition: var(--transition);
        }

        .top-seller-card::before { width: 2px; height: 37px; }
        .top-seller-card::after { width: 37px; height: 2px; }
        .top-seller-card:hover::after, 
        .top-seller-card:hover::before { 
            background: var(--golden-puppy);
        }
        .top-seller-card:hover .card-title { 
            color: var(--golden-puppy);
        }

        .card-avatar { 
            position: relative; 
            background: var(--black); 
            border-radius: 50%;
            width: 50px;
            height: 50px;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .top-seller-card:hover .card-avatar {
            border-color: var(--golden-puppy);
            transform: scale(1.1);
        }

        .card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-badge {
            position: absolute;
            bottom: 5px;
            right: 0;
            background: var(--golden-puppy);
            border-radius: 50%;
            height: 14px;
            width: 14px;
            font-size: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--black);
            transition: var(--transition);
        }
        
        .top-seller-card:hover .avatar-badge {
            transform: scale(1.2);
            box-shadow: 0 0 10px var(--golden-puppy);
        }

        .avatar-badge ion-icon { 
            --ionicon-stroke-width: 70px; 
        }

        /* Enhanced footer */
        .footer-top { 
            background: var(--eerie-black2); 
            padding: 60px 0;
            position: relative;
        }
        
        .footer-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--golden-puppy), transparent);
        }
        
        .footer-top .logo { 
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .footer-top .logo:hover {
            transform: scale(1.05);
        }

        .footer-brand { margin-bottom: 40px; }
        .footer-brand-text { display: none; }

        .social-title { 
            color: var(--white); 
            font-size: var(--fs4); 
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .social-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50%;
            height: 2px;
            background: var(--golden-puppy);
        }

        .social-list {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
        }

        .social-link {
            background: var(--eerie-black1);
            color: var(--quick-silver);
            padding: 9px;
            font-size: 20px;
            border-radius: 50%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, var(--golden-puppy), transparent);
            opacity: 0;
            transition: var(--transition);
        }
        
        .social-link:hover::before {
            opacity: 0.2;
        }

        .social-link:hover { 
            color: var(--golden-puppy);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .footer-link-box { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 25px; 
        }
        .footer-item-title { 
            font-weight: var(--ff500); 
            margin-bottom: 10px;
            color: var(--white);
            position: relative;
            display: inline-block;
        }
        
        .footer-item-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30%;
            height: 2px;
            background: var(--golden-puppy);
        }
        
        .footer-item { 
            position: relative; 
            transition: var(--transition); 
        }

        .footer-item::before {
            position: absolute;
            content: '';
            top: 4px;
            left: 0;
            width: 8px;
            height: 8px;
            background: var(--quick-silver);
            border-radius: 50%;
            border: 2px solid var(--sonic-silver);
            transition: var(--transition);
        }

        .footer-item:hover::before { 
            background: var(--golden-puppy); 
            border-color: var(--field-drab);
            transform: scale(1.2);
        }
        .footer-item:hover .footer-link { 
            color: var(--golden-puppy);
        }
        .footer-item:hover::before, 
        .footer-item:hover .footer-link { 
            transform: translateX(10px);
        }

        .footer-link {
            color: var(--quick-silver);
            font-size: var(--fs7);
            margin-bottom: 8px;
            padding-left: 15px;
            transition: var(--transition);
        }

        .footer-bottom { 
            background: var(--eerie-black1); 
            padding: 25px 0; 
            color: var(--quick-silver);
            position: relative;
        }
        
        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--golden-puppy), transparent);
        }

        .copyright {
            font-size: var(--fs7);
            padding: 0 20px;
            text-align: center;
            margin-bottom: 15px;
        }

        .copyright > a { 
            display: inline-block; 
            color: var(--white);
            transition: var(--transition);
        }
        .copyright > a:hover { 
            color: var(--golden-puppy);
            text-decoration: underline;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 20px;
        }

        .footer-bottom-links a { 
            color: var(--quick-silver); 
            font-size: var(--fs7); 
            transition: var(--transition);
        }
        .footer-bottom-links a:hover { 
            color: var(--golden-puppy);
        }

        /* Enhanced go top button */
        .go-top {
            background: var(--eerie-black1);
            color: var(--golden-puppy);
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            font-size: 24px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: var(--transition);
            z-index: 1000;
            border: 1px solid var(--golden-puppy);
        }
        
        .go-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 217, 0, 0.1), transparent);
            border-radius: 50%;
            animation: rotate 2s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .go-top.active { 
            opacity: 1; 
            visibility: visible; 
            pointer-events: all;
        }
        .go-top:hover { 
            background: var(--golden-puppy);
            color: var(--black);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 217, 0, 0.5);
        }

        /* Advanced loader */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--rich-black-fogra39);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            width: 100px;
            height: 100px;
            position: relative;
        }
        
        .loader-inner {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top: 4px solid var(--golden-puppy);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }
        
        .loader-inner:nth-child(2) {
            border: 4px solid transparent;
            border-bottom: 4px solid var(--neon-purple);
            animation: spinReverse 1.5s linear infinite;
        }
        
        .loader-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white);
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .loader-progress {
            position: absolute;
            bottom: 20%;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: var(--onyx1);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--neon-purple), var(--golden-puppy));
            transition: width 0.3s ease;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes spinReverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }

        /* Media queries */
        @media (min-width: 450px) {
            .container { max-width: 400px; margin: auto; }

            .footer-link-box { grid-template-columns: 1fr 1fr; }
        }

        @media (min-width: 650px) {
            .container { max-width: 600px; }

            .hero .container { max-width: 450px; }

            .product-list, .about-list, .top-seller-list { grid-template-columns: 1fr 1fr; }

            .footer-brand { text-align: center; }
            .footer-top .logo { width: max-content; margin-inline: auto; }

            .footer-brand-text {
                display: block;
                font-size: var(--fs7);
                max-width: 400px;
                margin: auto;
                margin-bottom: 25px;
            }

            .social-list { justify-content: center; }
            .footer-link-box { grid-template-columns: repeat(3, 1fr); }
            .footer-item-title { --fs2: 22px; margin-bottom: 30px; }
            .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
            .copyright { margin-bottom: 0; }
        }

        @media (min-width: 768px) {
            :root {
                --fs1: 38px;
                --fs3: 35px;
                --fs7: 15px;
                --fs9: 14px;
            }

            .container { max-width: 700px; }
            .btn { padding: 14px 20px; }

            .hero { padding: 100px 0; }

            .hero .container {
                min-height: 70vh;
                max-width: 700px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                place-items: center;
                gap: 25px;
            }

            .hero-content { text-align: left; margin-bottom: 0; }
            .btn-group { justify-content: flex-start; }

            .new-product, .about, .explore-product, .top-seller, .footer-top { padding: 100px 0; }

            .section-header-wrapper, .about-title, .top-seller-title { margin-bottom: 60px; }

            .go-top { width: 60px; height: 60px; font-size: 30px; }
        }

        @media (min-width: 1024px) {
            :root {
                --fs1: 45px;
                --fs9: 16px;
            }

            .container { max-width: 950px; }

            .header-right {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
            }

            .header-actions {
                display: flex;
                justify-content: center;
                gap: 20px;
            }

            .search-field {
                background: var(--eerie-black1);
                color: var(--gray-web);
                padding: 0 15px;
                border: 1px solid var(--onyx1);
                border-radius: 4px;
                height: 40px;
                width: 200px;
                transition: var(--transition);
            }
            
            .search-field:focus {
                border-color: var(--golden-puppy);
                box-shadow: 0 0 10px rgba(255, 217, 0, 0.3);
            }

            .hero .container { max-width: 950px; gap: 20px; }
            .hero-title, .hero-text { margin-bottom: 30px; }
            .hero-text { --fs7: 18px; }
            .btn-group { gap: 20px; }
            
            .product-list, .about-list, .top-seller-list { grid-template-columns: repeat(3, 1fr); }

            .footer-top .container { display: flex; justify-content: space-between; align-items: flex-start; }
            .footer-brand { max-width: 200px; text-align: left; margin-bottom: 0; }
            .social-list { justify-content: flex-start; }
            .footer-link-box { gap: 60px; }
            .footer-item-title { --fs2: 25px; margin-bottom: 30px; } 
        }

        @media (min-width: 1200px) {
            :root { --fs1: 55px; }

            .container { max-width: 1150px; }

            .header-right, .header-nav-wrapper { flex-grow: 1; }
            .navbar-toggle-btn { display: none; }

            .navbar {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
                transform: scale(1);
                position: static;
                background: none;
                width: 100%;
                padding: 0;
            }

            .navbar-list { display: flex; justify-content: center; align-items: center; }
            .navbar-link { position: relative; }
            .navbar-link:is(:hover, :focus) { background: none; color: var(--red-crayola); }

            .navbar-link::after {
                --scaleY: scaleY(0);

                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%) var(--scaleY);
                transform-origin: bottom;
                width: 2px;
                height: 10px;
                background: linear-gradient(to top, var(--red-crayola), transparent);
                transition: var(--transition);
            }

            .navbar-link:hover::after, .navbar-link:focus::after { --scaleY: scaleY(1); }

            .hero .container { max-width: 1150px; gap: 50px; }
            .hero-title .hero-text { margin-bottom: 35px; }

            .product-list, .about-list, .top-seller-list { grid-template-columns: repeat(4, 1fr); }

            .about-card {
                display: flex;
                flex-direction: column;
                height: 100%;
                justify-content: space-between;
                align-items: center;
            }

            .footer-list { min-width: 180px; }
        }