        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, sans-serif;
            background-color: #f8f8f8;
            min-height: 100vh;
            line-height: 1.6;
        }

        body.menu-open {
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px 0 10px;
        }

        /* Header Styles */
        header {
            background-color: #000;
            color: white;
            padding: 1rem 0;
            position: relative;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

	.logo a {
	    text-decoration:none;
	    color:white;
	}

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            position: relative;
            z-index: 1001;
        }

        .logo svg {
            width: 32px;
            height: 32px;
        }

        nav {
            position: relative;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
            position: relative;
            z-index: 1001;
        }

        .main-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .main-menu > li {
            position: relative;
        }

        .main-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            white-space: nowrap;
            display: block;
            padding: 0.5rem;
        }

        .main-menu a:hover {
            color: #FFD700;
        }

        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #000;
            min-width: 200px;
            padding: 1.0rem;
            list-style: none;
            z-index: 100;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .submenu li a {
          padding:0.25rem 0.25rem 0 0.25rem;
        }

        .main-menu li:hover .submenu {
            display: block;
        }
        
        .filterhref {
    	    text-decoration:none;
    	    color:#1a1a1a;
        }

        /* Main Content Styles */
        main {
            padding: 3rem 0;
        }

	main p {
	    padding-bottom: 1rem;
	}
	
	/*p.product-price,*/ p.product-description {
	    padding-bottom:0 !important;
	}

        .hero-section {
            text-align: center;
            max-width: 100%;
            margin: 0 auto 1rem; /* 0 auto 4rem */
            padding: 0 1rem;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.0rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            margin-top:1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            position: relative;
        }

        h1::after {
            content: '';
            display: block;
            width: 300px;
            max-width:50%;
            height: 3px;
            background: #FFD700;
            margin: 1.5rem auto 0;
        }

        h2 {
            font-size: 1.5rem;
            color: #4a4a4a;
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 0.02em;
        }

        .seo-text {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }






        /* Mobile Menu Overlay */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .main-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.95);
                padding: 5rem 2rem 2rem;
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
                justify-content: flex-start;
                z-index: 1000;
                opacity: 0;
                transition: opacity 0.3s ease;
                overflow-y:scroll;
            }

            .main-menu.active {
                display: flex;
                opacity: 1;
            }

            .main-menu > li {
                width: 100%;
                text-align: center;
            }

            .main-menu a {
                font-size: 1.5rem;
                padding: 0rem;
            }

            .submenu {
                position: static;
                background: transparent;
                box-shadow: none;
                min-width: unset;
                width: 100%;
                margin-top: 0.5rem;
                padding: 0;
                display: none;
                animation: fadeIn 0.3s ease;
            }

            .submenu a {
                font-size: 1.2rem;
                padding: 0.75rem;
                color: #999;
            }

            .main-menu li.active .submenu {
                display: block;
            }

            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: scale(1.05);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-info {
            padding: 1.5rem 1rem 0 1rem;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        .product-name:after {
    	    content:none;
    	    margin:none;
        }

        .product-description {
            color: #666;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .product-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            text-align: right;
        }

        /* Filter Section */
        .filters {
            margin: 0rem 0; /* 2rem 0 */
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .filter-group {
            position: relative;
        }

        .filter-button {
            width: 100%;
            padding: 0.75rem;
            background: #f8f8f8;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            text-align: left;
            font-size: 0.9rem;
            transition: all 0.3s;
            color: black;
        }

        .filter-button:hover {
            background: #f0f0f0;
        }

        .filter-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 0.5rem;
            margin-top: 0.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .filter-group.active .filter-dropdown {
            display: block;
        }

        .filter-option {
            padding: 0.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .filter-option:hover {
            background: #f8f8f8;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .filter-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
    	    .product-grid {
    		grid-template-columns: 1fr 1fr;
    	    }
            .filter-grid {
                grid-template-columns: 1fr;
            }
           .seo_text, .seo_text2 {
        	display:none;
           }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr 1fr;
                column-gap: 0px;
            }
         .seo_text { display:none; }
         .product-card {max-width:170px; overflow:hidden; padding:0; margin:0;}
         .product-name { font-size:1.0rem; padding:0; margin:0; }
         .product-description { font-size:0.75rem; }
         .product-price { font-size:1.25rem !important; }
         .product-info { margin:0 0.5rem; padding:0; }
/*         .hero-section { margin:0; padding: 0; } */
         .brand-section { margin:0 !important; padding:1rem 0 0 0 !important;}
        }

        /* Footer Styles */
        footer {
            background-color: #000;
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #999;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            color: #999;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }
    




        /* Pagination Styles */
        .pagination {
            display: flex;
	    flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;
            gap: 0.5rem;
            max-width:90%;
        }

        .pagination-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            font-size: 1rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination a {
    	    text-decoration:none;
        }

        .pagination-button:hover {
            border-color: #000;
            color: #000;
        }

        .pagination-button.active {
            background: #000;
            color: white;
            border-color: #000;
        }

        .pagination-button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-ellipsis {
            color: #666;
            padding: 0 0.5rem;
        }







       /* Brand Grid Styles */
        .brand-section {
            margin-top: 0rem;
            padding: 0rem; /* 1rem 0 */
            background: white;
            _border:1px solid red;
            width: calc(100% - 0px);
        }

        .brand-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        .brand-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .brand-item {
            aspect-ratio: 1;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .brand-item:hover {
            transform: scale(1.05);
        }

        .brand-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .brand-item:hover img {
            filter: grayscale(0%);
        }

        @media (max-width: 1024px) {
            .brand-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .brand-section {
                margin-top: 4rem;
                padding: 2rem 0;
            }

            .brand-section h2 {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            .brand-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: /*1.5rem*/ 0 rem;
                padding: /*0 1rem*/ 0;
            }
        }
















	 /* Main content */
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        .product-details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .product-details-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Image slider */
        .product-slider {
            position: relative;
            aspect-ratio: 1;
            background: #f3f4f6;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .product-slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            transition: background-color 0.2s;
        }

        .product-slider-button:hover {
            background: white;
        }

        .product-slider-button.prev {
            left: 1rem;
        }

        .product-slider-button.next {
            right: 1rem;
        }

        .product-slider-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .product-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .product-dot.active {
            width: 16px;
            background: black;
            border-radius: 4px;
        }

        /* Product info */
        .product-brand {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }
        .product-brand a {
            color:#6b7280;
        }

        h1.product-name {
            font-size: 1.50rem;
            margin-bottom: 1.0rem;
        }

        .product-divider {
            width: 5rem;
            height: 2px;
            background: black;
            margin-bottom: 0.5rem;
        }

        .product-price {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .product-description {
            color: #374151;
            margin-bottom: 0rem;
        }

        /* Specifications */
        .product-specs {
            margin-top: 0.5rem;
        }

        .product-spec-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .product-spec-label {
            font-weight: 500;
        }

        .product-spec-value, .product-spec-value a {
            color: #6b7280;
        }

        /* Button */
        .product-cta {
            width: 100%;
            background: black;
            color: white;
            border: none;
            border-radius: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 2rem;
            transition: background-color 0.2s;
        }

        .product-cta:hover {
            background: #1a1a1a;
        }














/*
	h1 {
	    margin: 0 0 16px 0;
	}
    
	h2 {
	    margin: 16px 0 0 0; 
	}
*/
	img.brand {
	    border:1px solid #c0c0c0;
	    border-radius:16px;
	}

	a.nodecor {
	    color:#1a1a1a;
	    text-decoration:none;
	}

	@media (max-width: 768px) {
	    p.seo_text { display:none; }
	}





	.seo_text2 {
	    padding:24px 0 0 24px;
	}

	.seo_text2 li {
	    list-style-position:inside;
	}
	
	.seo_text2 h2 {
	    margin:0 0 12px 0;
	}
	.seo_text2 ul {
	    margin:0 0 12px; 0;
	}

