 /* Mipangilio ya Msingi (CSS Variables) */
        :root {
            --kikuu-orange: #f57224;
            --kikuu-red: #ff3b30;
            --text-dark: #333333;
            --text-gray: #757575;
            --bg-light: #f5f5f5;
            --white: #ffffff;
            --border-color: #e0e0e0;
            --price-color: #f57224;
        }

        /* Kurudisha mipangilio ya chini (Reset) */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* --- HEADER --- */
        .top-bar {
            background-color: #f8f8f8;
            border-bottom: 1px solid var(--border-color);
            font-size: 12px;
            padding: 5px 0;
            color: var(--text-gray);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .top-links a {
            margin-left: 15px;
        }

        .main-header {
            background-color: var(--white);
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--kikuu-orange);
            display: flex;
            align-items: center;
            gap: 5px;
        }
		
		.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
	
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 10px 0;
}

        .search-bar input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid var(--kikuu-orange);
            border-right: none;
            border-radius: 4px 0 0 4px;
            outline: none;
        }

        .search-bar button {
            background-color: var(--kikuu-orange);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }

        .user-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
        }

        .btn-outline {
            border: 1px solid var(--kikuu-orange);
            color: var(--kikuu-orange);
            padding: 6px 15px;
            border-radius: 4px;
        }

        /* --- NAVIGATION & DROPDOWN --- */
        .nav-menu {
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-list {
            display: flex;
            gap: 25px;
            padding: 10px 0;
            font-weight: 500;
            font-size: 15px;
            align-items: center;
        }

        /* Staili ya Dropdown Menu */
        .nav-dropdown {
            position: relative;
            cursor: pointer;
            padding-bottom: 10px; /* Nafasi kwa ajili ya border ya chini ikiwa active */
        }

        .nav-dropdown > a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Mshale wa chini */
        .arrow {
            font-size: 10px;
            transition: transform 0.3s;
        }

        /* Orodha ndani (Dropdown List) */
        .dropdown-list {
            display: none; /* Hainaonekana kwa default */
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 4px;
            z-index: 2000;
            padding: 10px 0;
            border-top: 3px solid var(--kikuu-orange);
        }

        /* Kuonyesha dropdown kwa Hover (Kompyuta) au kwa Class 'active' (Simu/Click) */
        .nav-dropdown:hover .dropdown-list,
        .nav-dropdown.active .dropdown-list {
            display: block;
        }

        .dropdown-list li a {
            display: flex;
            justify-content: space-between;
            padding: 10px 20px;
            font-size: 14px;
            color: var(--text-dark);
            transition: background 0.2s;
        }

        .dropdown-list li a:hover {
            background-color: #fff0e6; /* Rangi nyepesi ya karanga */
            color: var(--kikuu-orange);
        }

        /* Namba ya bidhaa (Counter) */
        .count {
            color: #999;
            font-size: 12px;
            background: #eee;
            padding: 2px 6px;
            border-radius: 10px;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            padding: 20px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 15px;
        }

        .hero-left {
            background: linear-gradient(135deg, #ff9966, #ff5e62);
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-left h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .btn-white {
            background: white;
            color: var(--kikuu-orange);
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            margin-top: 10px;
            display: inline-block;
        }

        .hero-center {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background-color: #eee;
        }

        .hero-center img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-right {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }

        .hero-right h3 {
            color: var(--kikuu-orange);
            margin-bottom: 15px;
        }

        .service-list {
            text-align: left;
            margin-top: 20px;
            font-size: 13px;
        }

        .service-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-cats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 15px;
        }

        .cat-card {
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.2s;
            cursor: pointer;
        }

        .cat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .cat-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;

            margin-bottom: 10px;
            object-fit: cover;
        }

        .cat-title {
            font-size: 14px;
            font-weight: 600;
        }

        /* --- FLASH SALE --- */
        .flash-sale {
            background-color: var(--white);
            margin: 20px 0;
            padding: 20px;
            border-radius: 8px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-left: 5px solid var(--kikuu-red);
            padding-left: 15px;
        }

        .flash-title {
            color: var(--kikuu-red);
            font-weight: bold;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .countdown {
            background: var(--kikuu-red);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 10px;
            transition: box-shadow 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            margin-bottom: 10px;
            background-color: #f9f9f9;
        }

        .product-name {
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 5px;
            height: 40px;
            overflow: hidden;
        }

        .product-price {
            color: var(--price-color);
            font-weight: bold;
            font-size: 16px;
        }

        /* --- KIKUU PICKS & DEALS --- */
        .section-title {
            margin: 30px 0 15px;
            font-size: 18px;
            font-weight: bold;
            border-left: 4px solid var(--kikuu-orange);
            padding-left: 10px;
        }

        .picks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
        }

        .pick-item {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            text-align: center;
            padding-bottom: 10px;
            border: 1px solid transparent;
        }
        
        .pick-item:hover {
            border-color: var(--kikuu-orange);
        }

        .pick-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }

        .pick-name {
            font-size: 13px;
            margin-top: 5px;
            padding: 0 5px;
        }

        .view-all {
            font-size: 11px;
            color: var(--kikuu-orange);
            margin-top: 5px;
            display: block;
        }

        .deals-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .deal-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .discount-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--kikuu-red);
            color: white;
            padding: 2px 8px;
            font-size: 11px;
            border-bottom-left-radius: 8px;
        }

        .deal-img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            background-color: white;
            padding: 10px;
        }

        .deal-info {
            padding: 10px;
        }

        .deal-price {
            font-size: 18px;
            color: var(--price-color);
            font-weight: bold;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #222;
            color: #ddd;
            padding: 40px 0 20px;
            margin-top: 40px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .subscribe-form {
            display: flex;
            margin-top: 10px;
        }

        .subscribe-form input {
            padding: 8px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 70%;
        }

        .subscribe-form button {
            padding: 8px 15px;
            background-color: var(--kikuu-orange);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #444;
            padding-top: 20px;
            font-size: 12px;
        }

        /* --- MOBILE RESPONSIVE --- */
        @media (max-width: 768px) {
            .top-links {
                display: none;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .search-bar {
                width: 100%;
                order: 2;
                margin-top: 10px;
            }
            
            .user-actions {
                width: 100%;
                justify-content: flex-end;
                order: 3;
            }

            .logo {
                order: 1;
            }

            .nav-list {
                white-space: nowrap;
                overflow-x: auto;
                padding-bottom: 15px; /* Nafasi zaidi kwa scroll */
                -webkit-overflow-scrolling: touch;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-cats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-center {
                height: 250px;
                order: -1;
            }

            .hero-left, .hero-right {
                display: none;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Mabadiliko ya Dropdown kwenye Simu */
            .nav-dropdown {
                position: static; /* Dropdown itaonekana chini ya menyu kwenye simu */
            }
            
            .dropdown-list {
                position: static;
                width: 100%;
                box-shadow: none;
                border: none;
                background: #fafafa;
                padding-bottom: 0;
            }
        }
		
		/* Spacing for icons */
.top-left i, .top-links i {
    margin-right: 5px;
    color: #888; /* Rangi ya icon ili iwe sawa */
}

.top-links a:hover i {
    color: var(--kikuu-orange); /* Icon inabadilika rangi ukikanyaga link */
}y

/* Rangi ya Pekee kwa Dropdown List ya Categories */
.dropdown-list {
    /* Badilisha background kuwa rangi ya cream/karanga nyepesi */
    background-color: #fff0e6; 
    
    /* Nyembamba ya rangi kali juu ili ionekane vizuri */
    border-top: 4px solid var(--kikuu-orange); 
    
    /* Hakikisha mwanga wa maandishi ni nyeusi ili usome vizuri */
    color: #333; 
}

/* Style ya links ndani ya dropdown */
.dropdown-list li a {
    color: #333; /* Maandishi meusi */
    transition: all 0.3s ease; /* Mabadiliko ya taratibu */
}

/* Unapokuwa juu ya kipengele (Hover) */
.dropdown-list li a:hover {
    background-color: var(--kikuu-orange); /* Background inakuwa rangi ya KiKUU kamili */
    color: #ffffff; /* Maandishi yakuwe meupe */
    padding-left: 25px; /* Hoja kidomo mada ndani kwa ajili ya athari nzuri */
}

/* Namba ya bidhaa (Counter) uki-hover inabadilisha rangi */
.dropdown-list li a:hover .count {
    background-color: #fff;
    color: var(--kikuu-orange);
    font-weight: bold;
}


/* Mipangilio ya Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Slides (Picha) */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hainaonekana kwa default */
    transition: opacity 0.8s ease-in-out; /* Mabadiliko ya taratibu */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Picha inayoonekana sasa hivi */
.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vitufe vya Next na Previous (Vikali) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6); /* Nyeusi iliyofifia */
    color: #ffffff;
    border: 2px solid #ffffff; /* Mpaka meupe "kali" */
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-weight: bold; /* Font kali */
    transition: all 0.3s;
}

/* Ikiwa ukiweka mouse juu ya kitufe */
.slider-btn:hover {
    background-color: var(--kikuu-orange); /* Rangi ya Kikuu */
    border-color: var(--kikuu-orange);
}

/* Pahali pa vitufe */
.prev-btn {
    left: 0;
    border-radius: 0 5px 5px 0; /* Umbo la mviringo kwenye kona ya ndani */
}

.next-btn {
    right: 0;
    border-radius: 5px 0 0 5px;
}


/* Mipangilio ya Service List (Kama ya picha) */
.service-list {
    list-style: none;
    text-align: left; /* Rudi maandishi kushoto */
    margin-top: 20px;
    padding: 0;
}

.service-list li {
    display: flex; /* Iwe safu wima (horizontal) */
    align-items: flex-start; /* Panga kuanzia juu */
    gap: 15px; /* Nafasi kati ya icon na maandishi */
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fafafa; /* Rangi ya background ya juujuu (nyepesi sana) */
    border: 1px solid #eee; /* Mpaka mzuri utakaonyesha mpaka wa kila kipengele */
    border-radius: 6px;
    transition: background 0.3s;
}

.service-list li:hover {
    background-color: #fff0e6; /* Badilisha rangi ukishika mouse (light orange) */
    border-color: #ffe0cc;
}

/* Style ya Icon (Picha) */
.service-icon {
    color: var(--kikuu-orange);
    font-size: 20px;
    min-width: 25px; /* Hakiikuzi */
    text-align: center;
    margin-top: 2px; /* Kusawazisha ikoni na maandishi */
}

/* Style ya Maandishi */
.service-text h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700; /* Nene (Bold) */
    color: #333;
}

.service-text p {
    margin: 3px 0 0 0;
    font-size: 11px; /* Maelezo madogo */
    color: #777;
    line-height: 1.3;
}


/* Wrapper kwa ajili ya Slider (ili vitufe vionekane vizuri) */
.flash-slider-wrapper {
    position: relative;
    padding: 0 10px; /* Nafasi kidogo upande wa kulia na kushoto */
}



/* Mabadiliko ya Grid kuwa Slider */
.product-grid {
    display: flex; /* Tumia flex badala ya grid */
    overflow-x: auto; /* Ruhusu kusogea kwa upande wa kulia (Horizontal) */
    gap: 15px; /* Nafasi kati ya bidhaa */
    scroll-behavior: smooth; /* Harakiti ya taratibu ukibonyeza button */
    padding-bottom: 10px; /* Nafasi kwa scrollbar (ikiwa isitafutwe) */
    
    /* Ficha scrollbar ili ionekane safi (Optional) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Kazi ya kila kadi - usiiwize (shrink) */
.product-card {
    min-width: 200px; /* Upana wa kila bidhaa */
    max-width: 200px;
    flex-shrink: 0; /* Hupungukiwa ukibadilisha ukubwa wa skrini */
}

/* Vitufe vya Kusogesha (Previous / Next) */
.slider-nav-btn {
    position: absolute;
    top: 35%; /* Kati ya picha */
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    color: var(--kikuu-orange);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.slider-nav-btn:hover {
    background-color: var(--kikuu-orange);
    color: white;
}

.prev-btn { left: -5px; }
.next-btn { right: -5px; }

/*today deals*/



