Changed around line 1
+ :root {
+ --primary-color: #ff6f61;
+ --secondary-color: #4a90e2;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --light-text-color: #666;
+ --border-color: #ddd;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .header {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 20px 0;
+ }
+
+ .header .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .header .nav ul {
+ list-style: none;
+ display: flex;
+ gap: 20px;
+ }
+
+ .header .nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .hero {
+ background: url('images/hero.jpg') no-repeat center center/cover;
+ color: white;
+ text-align: center;
+ padding: 100px 0;
+ }
+
+ .hero h2 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 30px;
+ }
+
+ .btn {
+ background-color: var(--secondary-color);
+ color: white;
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ text-decoration: none;
+ display: inline-block;
+ }
+
+ .btn:hover {
+ background-color: darken(var(--secondary-color), 10%);
+ }
+
+ .featured, .categories, .about, .contact {
+ padding: 60px 0;
+ }
+
+ .featured h2, .categories h2, .about h2, .contact h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2rem;
+ }
+
+ .grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+ }
+
+ .card {
+ background: white;
+ border: 1px solid var(--border-color);
+ border-radius: 10px;
+ overflow: hidden;
+ text-align: center;
+ padding: 20px;
+ }
+
+ .card img {
+ width: 100%;
+ height: auto;
+ border-radius: 10px;
+ }
+
+ .card h3 {
+ margin: 15px 0 10px;
+ font-size: 1.5rem;
+ }
+
+ .card p {
+ color: var(--light-text-color);
+ margin-bottom: 15px;
+ }
+
+ .card .price {
+ font-size: 1.2rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ margin-bottom: 15px;
+ }
+
+ .category {
+ background: white;
+ border: 1px solid var(--border-color);
+ border-radius: 10px;
+ overflow: hidden;
+ text-align: center;
+ padding: 20px;
+ }
+
+ .category img {
+ width: 100%;
+ height: auto;
+ border-radius: 10px;
+ }
+
+ .category h3 {
+ margin: 15px 0 10px;
+ font-size: 1.5rem;
+ }
+
+ .about p {
+ text-align: center;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .contact form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 15px;
+ }
+
+ .contact form input, .contact form textarea {
+ padding: 10px;
+ border: 1px solid var(--border-color);
+ border-radius: 5px;
+ }
+
+ .footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ margin-top: 60px;
+ }
+
+ @media (max-width: 768px) {
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+
+ .grid {
+ grid-template-columns: 1fr;
+ }
+ }