Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #e74c3c;
+ --text-color: #333;
+ --light-gray: #f5f5f5;
+ --white: #ffffff;
+ --shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ background: var(--white);
+ box-shadow: var(--shadow);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .nav-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo a {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .search-input {
+ padding: 0.5rem 1rem;
+ border: 1px solid #ddd;
+ border-radius: 20px;
+ width: 200px;
+ }
+
+ .cart-icon {
+ position: relative;
+ }
+
+ .cart-count {
+ position: absolute;
+ top: -8px;
+ right: -8px;
+ background: var(--accent-color);
+ color: white;
+ border-radius: 50%;
+ padding: 0.2rem 0.5rem;
+ font-size: 0.8rem;
+ }
+
+ .hero {
+ height: 80vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
+ padding: 2rem;
+ margin-top: 60px;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ color: var(--white);
+ }
+
+ .cta-button {
+ background: var(--accent-color);
+ color: var(--white);
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ text-decoration: none;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .products-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .product-card {
+ background: var(--white);
+ border-radius: 10px;
+ padding: 1rem;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .product-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ border-radius: 5px;
+ }
+
+ .add-to-cart {
+ width: 100%;
+ padding: 0.8rem;
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .add-to-cart:hover {
+ background: var(--accent-color);
+ }
+
+ .cart-section {
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .main-footer {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 3rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 0 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section a {
+ color: var(--white);
+ text-decoration: none;
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .products-grid {
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ }
+ }