
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        #wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Header Styles */
        .top-header {
            background-color: var(--primary);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .logo h1 {
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .search-bar {
            display: flex;
            margin-top: 8px;
        }
        
        .search-bar input {
            border-radius: 4px 0 0 4px;
            border: 1px solid #ddd;
            padding: 8px 12px;
            width: 100%;
        }
        
        .search-bar button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 0 4px 4px 0;
        }
        
        .header-icons {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        
        .icon-box {
            text-align: center;
            color: var(--dark);
            cursor: pointer;
        }
        
        .icon-box i {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        /* Navigation */
        .navbar {
            background-color: var(--secondary) !important;
            padding: 0;
        }
        
        .navbar .nav-link {
            color: white !important;
            padding: 12px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .navbar .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        .dropdown-menu {
            border-radius: 0;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 70px 0 40px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .breadcrumb {
            justify-content: center;
            background: transparent;
            padding: 0;
        }
        
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255,255,255,0.8);
        }
        /* Sidebar */
        #sidebar {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .widget {
            margin-bottom: 25px;
        }
        
        .widget h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        
        .brands ul {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .brands li {
            flex: 1;
            min-width: 12px;
            text-align: center;
        }
        
        .brands img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        
        .brands img:hover {
            transform: scale(1.05);
        }
        
        .more-products {
            display: block;
            text-align: center;
            background: var(--secondary);
            color: white;
            padding: 10px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
        }
        
        .more-products:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Main Content */
        #main {
            flex: 1;
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        
        .page-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .product-thumb {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }
        
        .product-thumb img {
            max-height: 180px;
            object-fit: contain;
        }
        
        .product-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .product-desc {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            flex: 1;
        }
        
        .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
            margin-bottom: 15px;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 15px;
        }
        
        .product-meta span {
            display: flex;
            align-items: center;
        }
        
        .product-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .cart-button {
            background: var(--success);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            transition: all 0.3s;
        }
        
        .cart-button:hover {
            background: #219653;
        }
        
        .cart-button i {
            margin-right: 8px;
        }
        
        /* Services */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            font-size: 2.5rem;
            color: var(--secondary);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .service-button:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Contact Page */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        
        .contact-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .contact-details p {
            color: #666;
            margin-bottom: 0;
        }
        
        .contact-form {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-button {
            background: var(--success);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-button:hover {
            background: #219653;
        }
        
        .map-container {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        /* Footer */
        .footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Utility Classes */
        .cl {
            clear: both;
        }
        
        .mb-30 {
            margin-bottom: 30px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .page-content {
            display: none;
        }
        
        .active-page {
            display: block;
        }
        .shopping-cart {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 999;
}

.shopping-cart h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.shopping-cart ol {
    list-style: none;
    padding-left: 0;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.cart-itm {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.cart-itm .remove-itm a {
    color: var(--accent);
    font-weight: bold;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 3px;
}

.cart-itm .remove-itm a:hover {
    background-color: #e74c3c;
    color: white;
}

.check-out-txt {
    font-size: 0.95rem;
    text-align: right;
}

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .shopping-cart {
        display: none;
        }