:root {
  --primary: #B57900;
  --primary-hover: #9a6600;
  --secondary: #EFD334;
  --secondary-hover: #d1b72a;
  --tertiary: #FFE4B2;
  --bg-color: #FAFAFA;
  --text-color: #333333;
  --white: #FFFFFF;
  --gray-light: #F0F0F0;
  --border-color: #DDDDDD;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

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

/* Header & Nav */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

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

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Blocks & Layout */
.block {
  padding: 80px 0;
}

.hero-block {
  padding: 60px 0 100px;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.block-content {
  flex: 1;
}

.block-image {
  flex: 1;
}

.block-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: block;
  object-fit: cover;
}

.text-only-block {
  background-color: var(--tertiary);
}

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
}

.small {
  font-size: 14px;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--tertiary);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--text-color);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

.btn-link:hover {
  color: var(--primary);
}

/* Accordion */
.accordion {
  margin-top: 30px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover, .accordion-header.active {
  background: var(--tertiary);
}

.accordion-header::after {
  content: '+';
  font-size: 24px;
}

.accordion-header.active::after {
  content: '-';
}

.accordion-content {
  padding: 0 20px;
  display: none;
}

.accordion-content p {
  padding: 10px 0 20px;
  margin: 0;
}

/* Table */
.table-responsive {
  overflow-x: auto;
  margin-top: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
  border-top: 6px solid var(--secondary);
  transition: transform 0.3s ease;
}

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

.card h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.card .price {
  font-size: 36px;
  color: var(--primary);
  font-weight: 700;
  margin: 20px 0;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-header h4 {
  margin: 0;
  font-size: 18px;
}

/* Form */
.subscribe-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary);
}

.subscribe-form .btn {
  width: 100%;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

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

footer h3 {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 20px;
}

footer p {
  margin-bottom: 10px;
  color: var(--white);
}

footer a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--tertiary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  margin: 0;
}

/* Cookie Banner & Modal */
.hidden {
  display: none !important;
}

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

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 5px;
}

.cookie-option:last-of-type {
  border-bottom: none;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .flex-row, .row-reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .block-image {
    width: 100%;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* Simplified for mobile */
  }
  
  .logo {
    margin: 0 auto;
  }
}
