Changed around line 1
+ :root {
+ --primary-color: #2a6bf2;
+ --secondary-color: #1a1b4b;
+ --accent-color: #ff6b6b;
+ --background: #f8f9fa;
+ --text-color: #2c3e50;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ color: var(--text-color);
+ background: var(--background);
+ line-height: 1.6;
+ }
+
+ .top-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: white;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .search-bar {
+ display: flex;
+ gap: 0.5rem;
+ flex: 0 1 400px;
+ }
+
+ .search-bar input {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #eee;
+ border-radius: 25px;
+ transition: all 0.3s ease;
+ }
+
+ .search-bar input:focus {
+ border-color: var(--primary-color);
+ outline: none;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .product-card {
+ background: white;
+ border-radius: 15px;
+ padding: 1rem;
+ transition: transform 0.3s ease;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ @media (max-width: 768px) {
+ .top-nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .search-bar {
+ width: 100%;
+ }
+ }