:root {
  --color-bg: #f9f8f6;
  --color-text: #2a2a2a;
  --color-dark: #1a1a1a;
  --color-accent-teal: #3a7a78;
  --color-light-gray: #e8e6e1;
  --color-white: #ffffff;
  --color-border: #d4d2ce;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

a {
  color: var(--color-accent-teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo:hover {
  opacity: 1;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  color: var(--color-white);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-accent-teal);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-accent-teal);
  background: transparent;
  color: var(--color-accent-teal);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: var(--color-accent-teal);
  color: var(--color-white);
  transform: scale(1.02);
}

.btn-primary {
  background: var(--color-accent-teal);
  color: var(--color-white);
  border-color: var(--color-accent-teal);
}

.btn-primary:hover {
  background: #2d6565;
  border-color: #2d6565;
}

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3a3a 100%);
  color: var(--color-white);
  padding: 4rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

.hero-text .accent {
  color: var(--color-accent-teal);
}

.hero-text p {
  color: #d0d0d0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  border: 2px solid var(--color-accent-teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light-gray);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.section.light {
  background: var(--color-bg);
}

.section.dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.section.dark h2,
.section.dark h3 {
  color: var(--color-white);
}

.section.dark p {
  color: #d0d0d0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--color-accent-teal);
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-accent-teal);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 15px;
}

.category-card {
  position: relative;
  padding: 2rem;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-accent-teal);
  box-shadow: var(--shadow-soft);
}

.product-image {
  width: 100%;
  height: 250px;
  background: var(--color-light-gray);
  overflow: hidden;
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent-teal);
  color: var(--color-white);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-teal);
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid #3a3a3a;
}

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

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-accent-teal);
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #808080;
}

.quick-specs {
  background: var(--color-light-gray);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.quick-specs h4 {
  margin-bottom: 1rem;
  margin-top: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.spec-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.spec-value {
  color: #666;
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--color-text);
}

.faq-item p {
  font-size: 0.95rem;
  color: #666;
}

.pill-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.pill:hover {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
}

.pill.active {
  background: var(--color-accent-teal);
  color: var(--color-white);
  border-color: var(--color-accent-teal);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-message h1 {
  color: var(--color-accent-teal);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-text {
  font-size: 0.9rem;
  flex: 1;
}

.cookie-text a {
  color: var(--color-accent-teal);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-actions button:hover {
  background: var(--color-accent-teal);
  border-color: var(--color-accent-teal);
}

.cookie-actions button.accept {
  background: var(--color-accent-teal);
  border-color: var(--color-accent-teal);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.product-detail-image {
  width: 100%;
  height: 450px;
  background: var(--color-light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content h1 {
  margin-bottom: 1rem;
}

.product-detail-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.product-details-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-teal);
  margin: 2rem 0;
}

.what-you-get {
  background: var(--color-light-gray);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.what-you-get h4 {
  margin-bottom: 1rem;
  margin-top: 0;
}

.what-you-get ul {
  list-style: none;
  padding: 0;
}

.what-you-get li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.what-you-get li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent-teal);
  font-weight: bold;
}

.label-guide {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.label-guide h4 {
  margin-bottom: 1rem;
  margin-top: 0;
}

.label-guide ol {
  margin-left: 1.5rem;
}

.label-guide li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.section-divider {
  height: 1px;
  background: var(--color-border);
  margin: 3rem 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
}

.page-title h1 {
  color: var(--color-text);
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #888;
}

.breadcrumb a {
  color: var(--color-accent-teal);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

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

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