   * {
            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: #1a1a1a;
            --darker: #111111;
            --light: #ffffff;
            --accent: #111111;
            --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);
                   font-family: "Roboto Mono", monospace;
        }
        
        body {
            background-color: #fff;
            color: #333;
            font-family: 'Inter', sans-serif;
            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;
            z-index: 1;
            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);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
            height: 75vh;
            min-height: 550px;
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            color: white;
            padding: 0 40px;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .mobile-menu-container{
            display: none;
        }
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 90%;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 15px;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid white;
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--darker);
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
            color: var(--darker);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .category-card {
            position: relative;
            height: 320px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .category-card:hover img {
            transform: scale(1.05);
        }
        
        .category-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            color: white;
        }
        
        .category-info h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }






button:focus, a:focus { outline: none; }

        .products-section {
            background-color: var(--light-gray);
            padding: 70px 0;
            margin-bottom: 60px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .view-all {
            color: var(--darker);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .view-all:hover {
            color: var(--accent);
            gap: 12px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.2,.8,.2,1);
  will-change: max-height;
}
.mobile-menu-category .mobile-dropdown-toggle i {
  display: inline-block;
  transition: transform 220ms ease;
}
.mobile-menu-category.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}
.mobile-menu-category.open .mobile-dropdown {
}
        .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: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .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);
        }
        
        .reviews-section {
            padding: 70px 0;
            margin-bottom: 60px;
        }
        
        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .rating i {
            color: #f1c40f;
            font-size: 18px;
        }
        
        .reviews-carousel {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-width: thin;
        }
        
        .review-card {
            min-width: 380px;
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-header img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--accent);
        }
           .burger-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--darker);
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            z-index: 1001;
        }
          .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);
        }
        
        .mega-menu {
            display: flex;
        }
        
        @media (max-width: 991px) {
            .burger-menu {
                display: block;
            }
            .mega-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 1000;
                flex-direction: column;
                padding: 15px 0;
            }
            
            .mega-menu.active {
                display: flex;
            }
            
            .menu-category {
                width: 100%;
                border-bottom: 1px solid #eee;
            }
                .mobile-menu-container {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100%;
            background: #fff;
            z-index: 1100;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.7s cubic-bezier(0.23, 1, 0.32, 1);
            overflow-y: auto;
            color: #000;
        }
        .mobile-menu-category{
            color: #ffffff;
        }
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            background: #f9f9f9;
            z-index: 1200;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-menu-logo {
            font-size: 22px;
            font-weight: 600;
            color: #111;
        }
        
        .close-mobile-menu {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #555;
            transition: all 0.3s;
        }
        
        .close-mobile-menu:hover {
            color: #e74c3c;
            transform: rotate(90deg);
        }
        
        .mobile-nav {
            padding: 20px;
        }
        
        .mobile-menu-category {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .mobile-menu-category > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            color: #333;
            font-weight: 500;
            font-size: 17px;
        }
        
        .mobile-dropdown-toggle {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            border-radius: 4px;
            transition: all 0.3s;
            
        }
        
        .mobile-menu-category.active .mobile-dropdown-toggle {
            transform: rotate(180deg);
            background: #111;
            color: white;
        }
        
        .mobile-dropdown {
            display: none;
            padding: 0 0 15px 15px;
        }
        
        .mobile-menu-category.active .mobile-dropdown {
            display: block;
        }
        
        .mobile-dropdown a {
            display: block;
            padding: 10px 0;
            color: #555;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .mobile-dropdown a:hover {
            color: #111;
            padding-left: 5px;
        }
        
        .mobile-menu-actions {
            padding: 20px;
            border-top: 1px solid #eee;
            margin-top: 20px;
        }
        
        .mobile-menu-actions a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            color: #333;
            font-weight: 500;
            font-size: 16px;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: all 0.3s;
        }
        
        .overlay.active {
            display: block;
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #111;
            margin-left: 20px;
            z-index: 1001;
        }
        
        @media (max-width: 991px) {
            .burger-menu {
                display: block;
            }
            
            .mega-menu {
                display: none;
            }
            
            .mobile-menu-container {
                display: block;
            }
            
            .header-top {
                position: relative;
            }
        }
            .menu-category > a {
                display: block;
                padding: 15px;
                position: relative;
            }
            
            .dropdown {
                display: none;
                position: static;
                box-shadow: none;
                padding: 0 15px 15px 15px;
            }
            
            .menu-category.open .dropdown {
                display: block;
            }
            
            .dropdown a {
                display: block;
                padding: 8px 0;
            }
            
            .header-top {
                position: relative;
                padding-right: 50px;
            }
            
            .search-bar {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
        }
        .review-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .review-stars {
            color: #f1c40f;
        }
        
        .review-text {
            color: #555;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }
        
        .review-text::before {
            content: "";
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 60px;
         color: rgba(232, 180, 168, 0.2);
            font-family: serif;
            line-height: 1;
        }
        
         .newsletter {
            background-color: var(--darker);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .newsletter h2 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.8;
            font-size: 18px;
        }
        
        .newsletter-form {
            max-width: 550px;
            margin: 0 auto;
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 16px 25px;
            border: none;
            border-radius: 4px 0 0 4px;
      font-size: 16px;
        }
        
        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            font-size: 16px;
        }
        
        .newsletter-form button:hover {
            background: var(--accent-hover);
        }
        
        
        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;
        }
        
  .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow: auto;
        }
        
        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalOpen 0.6s;
        }
        
        @keyframes modalOpen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 28px;
            color: #aaa;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--accent);
        }
        
        .modal-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .modal-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--darker);
            margin-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-group input {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-group input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 180, 168, 0.2);
        }
        
        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
        }
        
        .form-switch {
            color: #555;
            font-size: 14px;
        }
        
        .form-switch a {      
              color: var(--accent);
            font-weight: 500;

            margin-left: 5px;
        }
       .cart-items {
            max-height: 400px;
            overflow-y: auto;
         margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .cart-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
      
        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
          flex: 1;
        }
        
        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .cart-item-price {
            color: var(--darker);
            font-weight: 600;
            margin-bottom: 10px;
          display: block;
        }
        
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .quantity-btn {
            background: #f5f5f5;
            border: none;
            width: 36px;
            height: 36px;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .quantity-btn:hover {
            background: #eee;
       }
        
        .quantity-input {
            width: 50px;
            height: 36px;
            text-align: center;
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            font-size: 16px;
        }
        
      .remove-item {
            color: #e74c3c;
            background: none;
            border: none;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        
        .remove-item:hover {
            color: #c0392b;
        }
        
        .cart-summary {
            padding: 20px;       
             background: #f9f9f9;
           border-radius: 8px;
            margin-top: 20px;
        }
  
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }
        
        .cart-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn-continue {
            background: #555;
        }
        
        .btn-continue:hover {
            background: #333;
        }

        .profile-page {
            display: none;
            padding: 60px 0;
            min-height: 70vh;
        }
        
        .profile-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .profile-header {
            background: linear-gradient(135deg, var(--darker), var(--accent));
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid white;
            margin: 0 auto 20px;
            background: #f5f5f5;
       display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: #777;
        }
        
        .profile-name {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .profile-email {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .profile-body {
            padding: 40px;
        }
        
    .profile-section {
            margin-bottom: 40px;
        }
        
        .profile-section h3 {
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            color: var(--darker);
        }
        
        .order-history {
            list-style: none;
        }
        
        .order-item {
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
        margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .order-item:hover {
            box-shadow: var(--shadow);
        }
        
        .order-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .order-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .status-completed {
            background: rgba(46, 204, 113, 0.2);
            color: #27ae60;
        }
        
        .order-details {
            color: #777;
            font-size: 14px;
        }
        
        .account-info p {
            margin-bottom: 10px;
            display: flex;
        }
        
        .account-info strong {
            width: 150px;
            display: inline-block;
            color: #555;
        }
            .btn-logout {
            background: #e74c3c;
        }
        
        .btn-logout:hover {
            background: #c0392b;     }
            @media (max-width: 1200px) {
            .categories-grid,
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .search-bar {
                display: none;
            }
            
            .mega-menu {
                display: none;
            }
            
            .hero {
                height: 60vh;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-actions a span {
                display: none;
            }
            
            .header-actions a i {
                font-size: 18px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero {
                height: 50vh;
            }
            
            .hero-content {
                text-align: center;
                padding: 0 20px;
            }
            
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .footer-grid {
                gap: 40px;
            }
            
            .cart-item {
                flex-direction: column;
            }
            
            .cart-item-image {
                margin-bottom: 15px;
            }
            
            .cart-buttons {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .categories-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: 4px;
            }
        }
           .products-page {
            padding: 60px 0;
        }
        
        .page-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .page-title {
            font-family: "Roboto Mono", monospace;
            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;
        }
        
        .price-slider .progress {
            height: 100%;
            left: 25%;
            right: 25%;
            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;
        }
        
        .range-input::-webkit-slider-thumb {
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background: var(--accent);
            pointer-events: auto;
            -webkit-appearance: none;
            cursor: pointer;
        }
        
        .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);
        }
        
        .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: cover;
            transition: var(--transition);
        }
        
        .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;
        }
        
        @media (max-width: 992px) {
            .products-grid-view {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .list-view-image {
                width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .products-container {
                flex-direction: column;
            }
            
            .filters-sidebar {
                width: 100%;
                position: static;
                display: none;
            }
            
            .filters-sidebar.active {
                display: block;
            }
            
            .mobile-filters-btn {
                display: block;
            }
            
            .list-view-product {
                flex-direction: column;
            }
            
            .list-view-image {
                width: 100%;
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid-view {
                grid-template-columns: 1fr;
            }
            
            .products-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
        #cart-total-amount{
            font-weight: bolder;
        }