* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2C2420;
  background-color: #F5F1ED;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo h1 {
  font-size: 28px;
  font-weight: bold;
  color: #8B7355;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 16px;
  color: #2C2420;
  transition: color 0.3s;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #8B7355;
  border-bottom-color: #8B7355;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero {
  background: linear-gradient(rgba(139,115,85,0.8), rgba(139,115,85,0.8)), url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?w=1600');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 20px;
}

.section {
  padding: 80px 20px;
}

.bg-light {
  background-color: #EBE5DE;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #2C2420;
}

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

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 18px;
  padding: 15px 20px 10px;
}

.product-card .price {
  font-size: 20px;
  font-weight: bold;
  color: #8B7355;
  padding: 0 20px 10px;
}

.product-card .description {
  font-size: 14px;
  color: #666;
  padding: 0 20px 20px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.badge.new {
  background: #4CAF50;
}

.badge.hot {
  background: #FF5722;
}

.product-card {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-content p {
  color: #666;
  font-size: 14px;
}

.footer {
  background: #2C2420;
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #A08B6F;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 10px;
}

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

.footer-section a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #A08B6F;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
}

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #8B7355;
}

.story-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.7;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 25px;
  border: 2px solid #8B7355;
  background: white;
  color: #8B7355;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #8B7355;
  color: white;
}

.store-search {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-input,
.province-select {
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
}

.search-input:focus,
.province-select:focus {
  outline: none;
  border-color: #8B7355;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.store-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.store-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.store-info {
  padding: 20px;
}

.store-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #8B7355;
}

.store-info p {
  margin-bottom: 10px;
  color: #666;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-item-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.news-item-large .news-content {
  padding: 40px;
}

.news-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-item .news-content {
  padding: 25px;
}

.news-category {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.news-content h2,
.news-content h3 {
  margin-bottom: 15px;
  color: #2C2420;
}

.news-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
}

.news-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  color: #8B7355;
  font-weight: bold;
  transition: color 0.3s;
}

.read-more:hover {
  color: #A08B6F;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .brand-story {
    grid-template-columns: 1fr;
  }

  .news-item-large,
  .news-item {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }
}
