Changed around line 1
+ :root {
+ --primary: #ff6b6b;
+ --secondary: #4ecdc4;
+ --accent: #ffe66d;
+ --text: #2f2f2f;
+ --background: #ffffff;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ /* Header & Navigation */
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem var(--spacing);
+ background: var(--background);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .logo {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .logo h1 {
+ font-size: 2rem;
+ color: var(--primary);
+ margin: 0;
+ }
+
+ .tagline {
+ font-size: 0.9rem;
+ color: var(--text);
+ opacity: 0.8;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ .hero {
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ min-height: 60vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ padding: var(--spacing);
+ }
+
+ .hero-content h2 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--accent);
+ color: var(--text);
+ text-decoration: none;
+ border-radius: 50px;
+ font-weight: bold;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ }
+
+ /* Product Grid */
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: var(--spacing);
+ padding: var(--spacing);
+ }
+
+ .product-card {
+ background: var(--background);
+ border-radius: 15px;
+ overflow: hidden;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .product-image {
+ position: relative;
+ padding-top: 100%;
+ }
+
+ .product-image img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .ribbon {
+ position: absolute;
+ top: 1rem;
+ right: 1rem;
+ background: var(--accent);
+ padding: 0.5rem 1rem;
+ border-radius: 20px;
+ font-weight: bold;
+ }
+
+ .product-info {
+ padding: 1rem;
+ text-align: center;
+ }
+
+ /* Category Grid */
+ .category-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: var(--spacing);
+ padding: var(--spacing);
+ }
+
+ .category-card {
+ background: var(--background);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ text-decoration: none;
+ color: var(--text);
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .category-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .category-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--text);
+ color: var(--background);
+ padding: var(--spacing);
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: var(--spacing);
+ }
+
+ .footer-section h3 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--background);
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ opacity: 1;
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .mobile-menu span {
+ width: 25px;
+ height: 2px;
+ background: var(--text);
+ transition: 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--background);
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero-content h2 {
+ font-size: 2rem;
+ }
+ }