/* ============ CSS VARIABLES ============ */
        :root {
            --primary: #C41E3A;
            --primary-dark: #A01830;
            --primary-light: #E8354F;
            --secondary: #2D3748;
            --accent: #1A202C;
            --text-dark: #1A202C;
            --text-light: #4A5568;
            --text-muted: #718096;
            --white: #FFFFFF;
            --off-white: #F7FAFC;
            --gray-light: #E2E8F0;
            --gray: #CBD5E0;
            --success: #25D366;
            --gold: #D4AF37;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            --shadow-sm: 0 2px 10px rgba(26, 32, 44, 0.08);
            --shadow-md: 0 4px 20px rgba(26, 32, 44, 0.1);
            --shadow-lg: 0 10px 40px rgba(26, 32, 44, 0.15);
            --shadow-xl: 0 20px 50px rgba(26, 32, 44, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 30px;
        }

        /* ============ RESET & BASE ============ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            transition: all 0.3s ease;
        }
	


        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .top-bar {
            background: var(--accent);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar a {
            color: var(--white);
            margin-left: 15px;
            opacity: 0.9;
        }

        .top-bar a:hover {
            opacity: 1;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
        }

        .nav-main {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .nav-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 12px 25px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
		/* ============ PAGE HERO ============ */
        .page-hero {
            margin-top: 110px;
            background: var(--white);
            padding: 50px 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .page-hero h1 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .page-hero h1 span {
            color: var(--primary);
        }

        .page-hero p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb span {
            color: var(--text-muted);
        }
 /* ============ FILTER SECTION ============ */
        .filter-section {
            background: var(--white);
            padding: 20px 0;
            position: sticky;
            top: 110px;
            z-index: 100;
            border-bottom: 1px solid var(--gray-light);
        }

        .filter-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 10px 20px;
            background: var(--off-white);
            border: 2px solid var(--gray-light);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .product-count {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .product-count strong {
            color: var(--text-dark);
        }

        /* ============ PRODUCTS GRID ============ */
        .products-section {
            padding: 40px 0 80px;
        }

        .category-title {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-light);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .category-title .brand-logo {
            height: 30px;
        }

        .category-badge {
            background: var(--primary);
            color: var(--white);
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        /* ============ PRODUCT CARD - TrueBasics Style ============ */
        .product-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: var(--shadow-large);
            transform: translateY(-5px);
            border-color: transparent;
        }

        .product-image {
            position: relative;
            padding:10px;
            background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }

        .product-image img {
            max-width: 100%;
            max-height: 300px;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-brand {
            position: absolute;
            top: 15px;
            left: 15px;
            height: 25px;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: var(--white);
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .product-badge.new {
            background: var(--success);
        }

        .product-badge.premium {
            background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
        }

        .product-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-name {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-features {
            margin-bottom: 12px;
        }

        .product-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .product-feature svg {
            width: 16px;
            height: 16px;
            color: var(--success);
            flex-shrink: 0;
        }

        .product-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .product-meta .dot {
            width: 4px;
            height: 4px;
            background: var(--gray);
            border-radius: 50%;
        }

        /* Star Rating */
        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            color: var(--star-color);
            font-size: 0.9rem;
        }

        .star.empty {
            color: var(--gray);
        }

        .rating-count {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Price */
        .product-price {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 15px;
            margin-top: auto;
        }

        .price-current {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .price-original {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .price-discount {
            font-size: 0.8rem;
            color: var(--success);
            font-weight: 600;
        }

        /* Product Actions */
        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-enquire {
            width: 100%;
            padding: 12px 20px;
            background: var(--white);
            border: 2px solid var(--text-dark);
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-enquire:hover {
            background: var(--text-dark);
            color: var(--white);
        }

        .btn-whatsapp {
            width: 100%;
            padding: 12px 20px;
            background: var(--accent);
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-whatsapp:hover {
            background: var(--success);
        }

        .btn-whatsapp svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
		.color-size-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 15px 0;
}

.product-colors {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.size-select {
    width: 120px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .color-size-row {
        flex-wrap: wrap;
    }

    .size-select {
        width: 100%;
    }
}


.color-option input {
    display: none;
}

.color-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #ccc;
}

.color-option input:checked + .color-circle {
    border: 2px solid #000;
}

.color-circle.black { background: #000; }
.color-circle.tan { background: #d2a679; }
.color-circle.brown { background: #6b3e26; }

        /* ============ FLOATING WHATSAPP ============ */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }


/* ============ FOOTER ============ */
       .footer {
            background: var(--off-white);
            color: var(--text-dark);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
            gap: 50px;
            padding-bottom: 50px;
        }
		.footer-brand img {
            width:45%;
            height:22%;
           /* object-fit: cover;
            min-height: 280px;*/
        }
		.footer-brand logo
		 {
            width:45%;
            height:22%;
           /* object-fit: cover;
            min-height: 280px;*/
        }

        .footer-brand .logo-text {
            color: var(--text-dark);
            font-size: 2.2rem;
            margin-bottom: 5px;
        }

        .footer-brand .logo-tagline {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .footer-contact-info {
            margin-top: 15px;
        }

        .footer-contact-info p {
            margin-bottom: 5px;
        }

        .footer-contact-info strong {
            color: var(--primary);
        }

        .footer h5 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: var(--text-dark);
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
        }

        .footer-links li::before {
            content: '›';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-social {
            margin-bottom: 25px;
        }

        .footer-social p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
            font-weight: bold;
        }

        .social-icons a:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-app {
            margin-top: 20px;
        }

        .footer-app p {
            color: var(--primary);
            font-style: italic;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .google-play-badge {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s;
        }

        .google-play-badge:hover {
            background: #333;
        }

        .google-play-badge span {
            display: block;
            font-size: 1rem;
            font-weight: 600;
        }

        .footer-bottom {
            background: var(--accent);
            padding: 20px 0;
            margin-top: 0;
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .footer-bottom p strong {
            color: var(--white);
        }

        .footer-bottom a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }
        

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                margin-top: 90px;
                padding: 30px 0;
            }
            .page-hero h1 {
                font-size: 1.75rem;
            }
            .filter-section {
                top: 90px;
            }
            .filter-tabs {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            .filter-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .product-image {
                min-height: 200px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom .container {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                display: none;
            }
            .page-hero {
                margin-top: 80px;
            }
            .filter-section {
                top: 80px;
            }
        }

        /* Category Sections */
        .category-section {
            display: none;
        }

        .category-section.active {
            display: block;
        }
		.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

/* Brand colors */
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.youtube { background: #ff0000; }
.linkedin { background: #0a66c2; }
.whatsapp { background: #25d366; }

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}
