        :root {
            --primary: #111827;
            --secondary: #f97316;
            --light-bg: #f8fafc;
            --text: #1f2937;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: #fff;
        }

        a {
            text-decoration: none;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary);
            color: #fff;
            font-size: 14px;
            padding: 8px 0;
        }

        /* Navbar */
        .navbar {
            padding: 18px 0;
            border-bottom: 1px solid #eee;
            background: #fff;
        }

        .navbar-brand {
            font-size: 27px;
            font-weight: 800;
            color: var(--primary);
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            margin: 0 8px;
        }

        .nav-link:hover {
            color: var(--secondary) !important;
        }

        .nav-icon {
            color: var(--primary);
            font-size: 21px;
            margin-left: 18px;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -9px;
            right: -10px;
            background: var(--secondary);
            color: #fff;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* Hero */
        .hero {
            min-height: 560px;
            background:
                linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
                url("https://prowith.com/1knaira/beta/assets/img/bg.webp?auto=format&fit=crop&w=1800&q=80")
                center/cover;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.05;
        }

        .hero p {
            font-size: 19px;
            margin: 25px 0;
        }

        .btn-shop {
            background: var(--secondary);
            border: none;
            color: #fff;
            padding: 14px 28px;
            font-weight: 700;
            border-radius: 6px;
        }

        .btn-shop:hover {
            background: #ea580c;
            color: #fff;
        }

        .btn-outline-light {
            padding: 13px 28px;
            margin-left: 8px;
        }

        /* Section */
        .section-title {
            font-weight: 800;
            font-size: 34px;
        }

        .section-subtitle {
            color: #6b7280;
        }

        /* Categories */
        .category-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            height: 250px;
            cursor: pointer;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }

        .category-card:hover img {
            transform: scale(1.08);
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent, rgba(0,0,0,.75));
            display: flex;
            align-items: flex-end;
            padding: 25px;
            color: #fff;
        }

        .category-overlay h4 {
            font-weight: 700;
            margin: 0;
        }

        /* Product Cards */
        .product-card {
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            height: 100%;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,.09);
        }

        .product-image {
            height: 270px;
            background: #f3f4f6;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s;
        }




             #logo {
  display: inline-block;
  margin: 15px; /* margin: 20px was off */
  float: left;
  height: 60px;
  width: auto; /* correct proportions to specified height */
  /* border-radius: 80%; makes it a circle */
}


        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .badge-sale {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--secondary);
            color: #fff;
            padding: 6px 10px;
            font-size: 12px;
            border-radius: 4px;
            font-weight: bold;
        }

        .wishlist {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #fff;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            font-size: 18px;
        }

        .product-info {
            padding: 18px;
        }

        .product-info h5 {
            font-size: 17px;
            font-weight: 700;
        }

        .stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .price {
            font-size: 20px;
            font-weight: 800;
        }

        .old-price {
            text-decoration: line-through;
            color: #9ca3af;
            margin-left: 8px;
            font-size: 14px;
        }

        /* Promo */
        .promo {
            background: #111827;
            color: #fff;
            padding: 65px 0;
        }

        .promo h2 {
            font-size: 42px;
            font-weight: 800;
        }

        /* Features */
        .feature {
            text-align: center;
            padding: 30px 15px;
        }

        .feature i {
            font-size: 35px;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .feature h5 {
            font-weight: 700;
        }

        .feature p {
            color: #6b7280;
            font-size: 14px;
        }

        /* Newsletter */
        .newsletter {
            background: var(--light-bg);
            padding: 70px 0;
        }

        .newsletter input {
            height: 52px;
            border: 1px solid #ddd;
        }

        .newsletter button {
            height: 52px;
        }

        /* Footer */
        footer {
            background: #111827;
            color: #d1d5db;
            padding: 65px 0 20px;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
        }

        footer a {
            color: #9ca3af;
            display: block;
            margin-bottom: 10px;
        }

        footer a:hover {
            color: #fff;
        }

        .social-icons a {
            display: inline-flex;
            width: 38px;
            height: 38px;
            border: 1px solid #374151;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 6px;
        }

        .copyright {
            border-top: 1px solid #374151;
            margin-top: 40px;
            padding-top: 20px;
            color: #9ca3af;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 500px;
            }

            .hero h1 {
                font-size: 44px;
            }

            .btn-outline-light {
                margin-left: 0;
                margin-top: 10px;
            }

            .product-image {
                height: 220px;
            }

            .category-card {
                height: 210px;
            }
        }