    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-decoration: none;
            font-family: "Roboto Mono", monospace;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }
        
        :root {
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #ffffff;
            --accent: #080808;
            --accent-hover: #161616;
            --sale: #e74c3c;
            --light-gray: #f5f5f5;
            --border: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .top-banner {
            background-color: var(--darker);
            color: var(--light);
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-banner strong {
            color: var(--sale);
            font-weight: 600;
        }
        
        header {
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 600;
            color: var(--darker);
            letter-spacing: 0.5px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            padding-left: 45px;
            transition: var(--transition);
        }
        
        .search-bar input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(232, 180, 168, 0.2);
            outline: none;
        }
        
        .search-bar i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .header-actions a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .header-actions a:hover {
            color: var(--accent);
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--sale);
            color: white;
            font-size: 11px;
            font-weight: 600;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .mega-menu {
            background-color: #fff;
            border-top: 1px solid #eee;
            padding: 15px 0;
            position: relative;
            z-index: 999;
        }
        
        .menu-container {
            display: flex;
            justify-content: space-between;
        }
        
        .menu-category {
            position: relative;
        }
        
        .menu-category > a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 15px;
            transition: var(--transition);
            display: block;
            position: relative;
        }
        
        .menu-category > a:hover {
            color: var(--accent);
        }
        
        .menu-category > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .menu-category:hover > a::after {
            width: calc(100% - 30px);
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            background: white;
            box-shadow: var(--shadow);
            border-radius: 4px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
        }
        
        .menu-category:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown a {
            display: block;
            padding: 10px 20px;
            color: #555;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }
        
        .dropdown a:hover {
            color: var(--accent);
            background: rgba(232, 180, 168, 0.05);
        }
        
        .products-page {
            padding: 60px 0;
        }
        
        .page-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .page-title {
            font-size: 36px;
            margin-bottom: 15px;
            color: var(--darker);
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 20px;
            color: #777;
            font-size: 14px;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:after {
            content: '/';
            position: absolute;
            right: -12px;
        }
        
        .breadcrumb li:last-child:after {
            display: none;
        }
        
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .products-container {
            display: flex;
            gap: 30px;
        }
        
        .filters-sidebar {
            width: 280px;
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: flex-start;
            position: sticky;
            top: 20px;
        }
        
        .filter-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-section:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        
        .filter-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--darker);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .filter-title button {
            background: none;
            border: none;
            color: var(--accent);
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-title button:hover {
            color: var(--accent-hover);
        }
        
        .filter-options {
            list-style: none;
        }
        
        .filter-options li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .filter-options input[type="checkbox"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            accent-color: var(--accent);
            cursor: pointer;
        }
        
        .filter-options label {
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-options label:hover {
            color: var(--accent);
        }
        
        .filter-options .count {
            margin-left: auto;
            color: #777;
            font-size: 14px;
        }
        
        .color-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .color-option:hover, .color-option.active {
            border-color: var(--darker);
            transform: scale(1.1);
        }
        
        .price-range {
            margin-top: 15px;
        }
        
        .price-inputs {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 15px;
        }
        
        .price-input {
            width: 48%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .price-slider {
            width: 100%;
            height: 5px;
            background: #eee;
            margin-top: 15px;
            position: relative;
            border-radius: 5px;
        }
        
        .price-slider .progress {
            height: 100%;
            left: 0%;
            right: 0%;
            background: var(--accent);
            position: absolute;
            border-radius: 5px;
        }
        
        .range-input {
            position: absolute;
            width: 100%;
            height: 5px;
            top: -5px;
            background: none;
            pointer-events: none;
            -webkit-appearance: none;
            z-index: 2;
        }
        
        .range-input::-webkit-slider-thumb {
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background: var(--accent);
            pointer-events: auto;
            -webkit-appearance: none;
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .filter-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .filter-btn {
            flex: 1;
            padding: 12px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .apply-btn {
            background: var(--accent);
            color: white;
            border: none;
        }
        
        .apply-btn:hover {
            background: var(--accent-hover);
        }
        
        .reset-btn {
            background: white;
            color: var(--darker);
            border: 1px solid #ddd;
        }
        
        .reset-btn:hover {
            background: #f9f9f9;
        }
        
        .products-main {
            flex: 1;
        }
        
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .sorting-options {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .sorting-options label {
            font-size: 15px;
            color: #555;
        }
        
        .sorting-options select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            font-size: 14px;
            cursor: pointer;
        }
        
        .view-options {
            display: flex;
            gap: 10px;
        }
        
        .view-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            background: white;
        }
        
        .view-btn.active, .view-btn:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        .lang-switcher{
            width: 200px;
        }
          .lang-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            float: left;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            background: white;
            margin: 5px;
        }
        
        .lang-btn.active, .lang-btn:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        
        .products-grid-view {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .products-list-view {
            display: none;
            flex-direction: column;
            gap: 20px;
        }
        
        .products-list-view.active {
            display: flex;
        }
        
        .list-view-product {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .list-view-product:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .list-view-image {
            width: 300px;
            height: 250px;
            overflow: hidden;
        }
        
        .list-view-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: var(--transition);
              padding-top: 30px;
        }
        
        .list-view-product:hover .list-view-image img {
            transform: scale(1.05);
        }
        
        .list-view-info {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .list-view-info .product-name {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .list-view-info .product-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .list-view-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 10px;
        }
        
        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .pagination-btn:hover, .pagination-btn.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        
        .mobile-filters-btn {
            display: none;
            padding: 12px 20px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 4px;
            margin-bottom: 20px;
            cursor: pointer;
            font-weight: 500;
            width: 100%;
        }
        
        .mobile-filters-btn i {
            margin-right: 10px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--sale);
            color: white;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 20px;
            z-index: 2;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding-top: 30px;
            transition: var(--transition);
        }
        
     
        
        .product-info {
            padding: 25px;
        }
        
        .product-category {
            color: #777;
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
        }
        
        .product-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #333;
            line-height: 1.4;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .current-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--darker);
        }
        
        .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 16px;
        }
        
        .add-to-cart {
            margin-top: 15px;
            width: 100%;
            padding: 12px;
            background: var(--darker);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .add-to-cart:hover {
            background: var(--accent);
        }
        
        footer {
            background-color: #f9f9f9;
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--darker);
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            gap: 15px;
        }
        
        .footer-links i {
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #eee;
            border-radius: 50%;
            color: #555;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #eee;
            color: #777;
            font-size: 14px;
        }
        
        @media (max-width: 1200px) {
            .products-grid-view {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .search-bar {
                display: none;
            }
            
            .mega-menu {
                display: none;
            }
            
            .filters-sidebar {
                width: 100%;
                position: static;
                display: none;
            }
            
            .filters-sidebar.active {
                display: block;
            }
            
            .mobile-filters-btn {
                display: block;
            }
            
            .list-view-image {
                width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .header-actions a span {
                display: none;
            }
            
            .header-actions a i {
                font-size: 18px;
            }
            
            .products-grid-view {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .list-view-product {
                flex-direction: column;
            }
            
            .list-view-image {
                width: 100%;
                height: 200px;

            }
            
            .products-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid-view {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .logo {
                font-size: 24px;
            }
        }