:root {
  --primary: #1a7b88;
  --primary-light: #75c6d1;
  --secondary: #f6c90e;
  --dark: #2d3436;
  --light: #f8f9fa;
  --text: #333333;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 30px;
  justify-content: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cart {
  position: relative;
}

.cart-icon {
  background-color: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, rgba(26, 123, 136, 0.9), rgba(26, 123, 136, 0.7)), url('/api/placeholder/1600/900');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
}

.add-to-cart {
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #e0b70f;
}

.benefits {
  background-color: white;
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background-color: var(--light);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

.benefit-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.collections {
  padding: 80px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
  margin-top: 40px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.collection-item:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.collection-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}

.collection-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

.collection-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.collection-item:hover .collection-bg {
  transform: scale(1.05);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.collection-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.collection-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
}

.reviews {
  background-color: white;
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background-color: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.review-quote {
  font-size: 3rem;
  position: absolute;
  top: -15px;
  left: 20px;
  color: var(--primary-light);
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--primary);
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
}

.stars {
  display: flex;
  color: var(--secondary);
  margin-bottom: 15px;
}

.newsletter {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
}

.newsletter-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.newsletter input {
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.newsletter button {
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter button:hover {
  background-color: #e0b70f;
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-light);
  margin-bottom: 20px;
  display: block;
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--primary);
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-rows: repeat(3, 200px);
  }
}

@media (max-width: 1024px) {
  .collection-item:nth-child(1) {
    grid-column: span 12;
    grid-row: span 1;
  }
}

@media (max-width: 1024px) {
  .collection-item:nth-child(2) {
    grid-column: span 6;
    grid-row: span 1;
  }
}

@media (max-width: 1024px) {
  .collection-item:nth-child(3) {
    grid-column: span 6;
    grid-row: span 1;
  }
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content, .newsletter-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .collection-item:nth-child(2), .collection-item:nth-child(3) {
    grid-column: span 12;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation: fadeIn 0.5s ease forwards;
}

