:root {
            --asics-red: #e21a1a;
            --asics-blue: #00274c;
            --asics-light: #f8f9fa;
            --asics-dark: #212529;
            --asics-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--asics-blue);
        }
        .asics-bg-primary {
            background-color: var(--asics-red) !important;
        }
        .asics-bg-secondary {
            background-color: var(--asics-blue) !important;
        }
        .asics-text-primary {
            color: var(--asics-red) !important;
        }
        .asics-text-secondary {
            color: var(--asics-blue) !important;
        }
        .btn-asics {
            background-color: var(--asics-red);
            color: white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-asics:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .navbar-brand img {
            max-height: 50px;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 39, 76, 0.85), rgba(0, 39, 76, 0.9)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0 100px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .product-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(226, 26, 26, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .icon-box i {
            font-size: 30px;
            color: var(--asics-red);
        }
        .flink {
            display: inline-block;
            background: #f1f1f1;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 5px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--asics-red);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--asics-blue);
            color: white;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--asics-red);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-padding {
                padding: 50px 0;
            }
            h1 {
                font-size: 2rem;
            }
        }
