Changed around line 1
+ :root {
+ --primary-color: #ff6b35;
+ --secondary-color: #2e4057;
+ --accent-color: #7fc29b;
+ --text-color: #333;
+ --light-text: #fff;
+ --background: #faf3e0;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Lato', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background);
+ }
+
+ .polynesian-bg {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('images/polynesian-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ color: var(--light-text);
+ padding: 2rem 0;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: var(--light-text);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light-text);
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .auth-button {
+ background: var(--primary-color);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ }
+
+ .featured-product {
+ text-align: center;
+ padding: 5rem 2rem;
+ }
+
+ .cta-buttons {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .primary-button {
+ background: var(--primary-color);
+ color: var(--light-text);
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ text-decoration: none;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .benefit-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .benefit-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .benefit-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .product-card {
+ background: white;
+ border-radius: 10px;
+ padding: 1rem;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .add-cart-btn {
+ background: var(--primary-color);
+ color: var(--light-text);
+ border: none;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ text-align: center;
+ }
+ }