:root {
            --primary-blue: #0062a6;
            --accent-orange: #f26722;
            --light-bg: #e8f4f8;
            --text-dark: #333;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-dark);
            background-color: #f9f9f9;
        }

        /* Header */
        .top-header {
            background: #fff;
            padding: 15px 0;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }
        .logo span {
            color: var(--accent-orange);
        }
        .search-bar {
            border: 2px solid var(--primary-blue);
            border-radius: 30px;
            overflow: hidden;
        }
        .search-bar input {
            border: none;
            padding: 10px 20px;
        }
        .search-bar input:focus {
            box-shadow: none;
        }
        .search-bar button {
            background: var(--primary-blue);
            color: #fff;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
        }
        .user-actions a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-left: 20px;
        }
        .user-actions i {
            font-size: 20px;
            margin-bottom: 5px;
        }
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-orange);
            color: #fff;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 10px;
        }

        /* Navbar */
        .main-nav {
            background: var(--primary-blue);
        }
        .main-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            padding: 15px 15px !important;
        }
        .main-nav .nav-link:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, #0f8a8d 0%, #f7941d 100%);
            border-radius: 10px;
            padding: 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: center;
        }
        .hero-banner h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
        }
        .hero-badge {
            background: var(--accent-orange);
            color: #fff;
            padding: 8px 20px;
            border-radius: 5px;
            font-size: 24px;
            font-weight: 700;
            display: inline-block;
            margin-top: 15px;
        }
        .hero-images {
            position: absolute;
            right: 20px;
            bottom: 0;
            max-height: 90%;
        }

        /* Categories */
        .category-card {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s;
            height: 100%;
        }
        .category-card:hover {
            transform: translateY(-5px);
        }
        .category-card img {
            max-height: 80px;
            margin-bottom: 10px;
        }

        /* Product Cards */
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            background: #fff;
            padding: 15px;
            position: relative;
            height: 100%;
            transition: box-shadow 0.2s;
        }
        .product-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .wishlist-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #ccc;
            cursor: pointer;
        }
        .wishlist-icon:hover {
            color: var(--accent-orange);
        }
        .product-img {
            text-align: center;
            margin-bottom: 10px;
        }
        .product-img img {
            max-height: 120px;
        }
        .product-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
            min-height: 40px;
        }
        .rating {
            color: #ffc107;
            font-size: 12px;
            margin-bottom: 10px;
        }
        .rating span {
            color: #999;
        }
        .price {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
        }
        .btn-cart {
            background: var(--primary-blue);
            color: #fff;
            border-radius: 5px;
            padding: 5px 10px;
            border: none;
        }
        .btn-cart:hover {
            background: #004d80;
        }

        /* Promo Blocks */
        .promo-block {
            border-radius: 10px;
            padding: 20px;
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .promo-green { background: #3ca55c; }
        .promo-orange { background: var(--accent-orange); }

        /* Section Titles */
        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin: 30px 0 20px;
        }

        /* Slider Arrows */
        .slider-arrow {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .slider-arrow:hover {
            background: var(--primary-blue);
            color: #fff;
        }

        /* Footer */
        footer {
            background: #333;
            color: #fff;
            padding: 40px 0;
            margin-top: 50px;
        }