* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
        }

        /* Header */
        header {
            background-color: #000;
            padding: 15px 40px;
            border-bottom: 1px solid #222;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 30px;
        }

        .header-nav {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .header-nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header-nav a:hover {
            color: #fff;
        }

        .search-bar {
            background-color: #111;
            border: 1px solid #333;
            padding: 8px 15px;
            border-radius: 4px;
            width: 250px;
            color: #fff;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 20px 40px;
            font-size: 14px;
            color: #999;
        }

        .breadcrumb a {
            color: #999;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        /* Main Section */
        .main-section {
            padding: 40px;
        }

        .main-title {
            font-size: 64px;
            font-weight: bold;
            margin-bottom: 50px;
            letter-spacing: 2px;
        }

        /* Filters */
        .filters-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background-color: transparent;
            border: 1px solid #444;
            color: #fff;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .filter-btn:hover {
            border-color: #fff;
        }

        .sort-section {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .sort-btn, .results-btn {
            background-color: transparent;
            border: 1px solid #444;
            color: #fff;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        /* Results Info */
        .results-info {
            margin-bottom: 30px;
            font-size: 14px;
            color: #ccc;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .product-card {
            background-color: #111;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            background-color: #1a1a1a;
            padding: 40px;
            text-align: center;
            position: relative;
        }

        .product-image img {
            max-width: 100%;
            height: 250px;
            object-fit: contain;
        }

        .new-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #00d4ff;
            color: #000;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 12px;
        }

        .product-info {
            padding: 25px;
            text-align: center;
        }

        .product-name {
            font-size: 32px;
            font-weight: bold;
            color: #7ed321;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .product-type {
            font-size: 14px;
            color: #ccc;
        }

        .color-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .color-dot.active {
            border-color: #fff;
        }

        .color-dot.black {
            background-color: #000;
            border: 2px solid #fff;
        }

        .color-dot.white {
            background-color: #fff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-title {
                font-size: 48px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .header-nav {
                display: none;
            }

            .breadcrumb {
                padding: 15px 20px;
            }

            .main-section {
                padding: 20px;
            }

            .main-title {
                font-size: 36px;
            }

            .filters-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filters {
                justify-content: center;
            }

            .sort-section {
                justify-content: space-between;
                width: 100%;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 28px;
            }

            .filter-btn, .sort-btn, .results-btn {
                padding: 10px 15px;
                font-size: 12px;
            }

            .product-name {
                font-size: 24px;
            }
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .product-card {
            background-color: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            padding: 40px;
            text-align: center;
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            max-width: 100%;
            height: 250px;
            object-fit: contain;
        }

        .badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .new-badge {
            background-color: #00d4ff;
            color: #000;
        }

        .best-seller-badge {
            background-color: #00d4ff;
            color: #000;
        }

        .product-info {
            padding: 30px 25px;
            text-align: center;
        }

        .product-name {
            font-size: 28px;
            font-weight: bold;
            color: #7ed321;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .product-type {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 50px 0;
        }

        .pagination button,
        .pagination span {
            background-color: transparent;
            color: #fff;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            transition: color 0.3s;
        }

        .pagination button:hover {
            color: #7ed321;
        }

        .pagination .active {
            color: #7ed321;
            font-weight: bold;
        }

        .pagination .arrow {
            font-size: 20px;
        }

        /* Footer */
        footer {
            background-color: #0a0a0a;
            padding: 60px 40px 40px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-section h3 {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #fff;
        }

        .newsletter-section {
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 8px;
        }

        .newsletter-section h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .newsletter-section p {
            color: #ccc;
            font-size: 13px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .newsletter-btn {
            background-color: #7ed321;
            color: #000;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            letter-spacing: 0.5px;
        }

        .newsletter-btn:hover {
            background-color: #6bc014;
        }

        .shure-logo-footer {
            color: #7ed321;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .newsletter-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .product-name {
                font-size: 24px;
            }

            .product-image {
                min-height: 250px;
                padding: 30px;
            }

            .product-image img {
                height: 200px;
            }
        }