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

:root {
  --bg-main: #1a0a08;
  --bg-light: #2d1511;
  --text-dark: #0d0000;
  --text-light: #2d1511;
  --accent-primary: #d4721f;
  --accent-secondary: #c41e3a;
  --highlight: #ff6b2c;
  --copper: #b87333;
  --white: #ffffff;
  --gray-light: #f5f1ee;
  --gray-dark: #3d2817;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin: 1rem 0 0.5rem 0;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

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

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--highlight);
}

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

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--accent-primary);
}

nav {
  display: flex;
  gap: 2rem;
  flex: 1;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

nav a:hover {
  color: var(--accent-primary);
  transform: scale(1.02);
}

.cta-button {
  background-color: var(--accent-primary);
  color: var(--white);
  border: 2px solid var(--accent-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--highlight);
  border-color: var(--highlight);
  transform: scale(1.04);
  color: var(--white);
}

.cta-button-outline {
  background-color: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.cta-button-outline:hover {
  background-color: var(--accent-primary);
  color: var(--white);
  transform: scale(1.04);
}

.hero {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #c41e3a 100%);
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.section {
  padding: 4rem 1rem;
}

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

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

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

.section-dark p {
  color: var(--gray-light);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  nav {
    gap: 1.5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  nav {
    gap: 2rem;
  }
}

.tile {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}

.tile:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 16px rgba(212, 114, 31, 0.1);
  transform: scale(1.02);
}

.tile img {
  margin: 0 auto 1rem;
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.tile h3 {
  margin-top: 0;
  color: var(--text-dark);
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(212, 114, 31, 0.15);
  transform: scale(1.04);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #8b4513 0%, #c41e3a 100%);
}

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

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

.product-card:hover .product-image::after {
  opacity: 0.5;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.4) 0%, rgba(196, 30, 58, 0.3) 100%);
  opacity: 0.3;
  transition: opacity 0.2s;
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-secondary);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

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

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 1rem 0;
}

.product-button {
  background-color: var(--accent-primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
  margin-top: auto;
}

.product-button:hover {
  background-color: var(--highlight);
  transform: scale(1.04);
}

footer {
  background-color: var(--bg-main);
  color: var(--gray-light);
  padding: 3rem 1rem 1rem;
  border-top: 1px solid var(--gray-dark);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--gray-light);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-dark);
  font-size: 0.85rem;
  color: var(--gray-dark);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-notes {
  background-color: var(--gray-light);
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .quick-notes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-notes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.note-item {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.sparks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .sparks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sparks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spark-item {
  background-color: var(--white);
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem;
  border-radius: 2px;
  transition: all 0.2s;
}

.spark-item:hover {
  box-shadow: 0 4px 12px rgba(212, 114, 31, 0.15);
  transform: translateY(-2px);
}

.faq-item {
  background-color: var(--gray-light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover {
  background-color: #ebe6e1;
}

.faq-item h4 {
  margin-top: 0;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active p {
  display: block;
}

.faq-item p {
  display: none;
  margin-top: 1rem;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-primary);
}

form {
  max-width: 500px;
  margin: 2rem auto;
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 4px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-dark);
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: normal;
}

form button {
  background-color: var(--accent-primary);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  font-size: 1rem;
}

form button:hover {
  background-color: var(--highlight);
  transform: scale(1.02);
}

.thank-you {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-dark);
}

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

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

.hidden {
  display: none;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-main);
  color: var(--gray-light);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.cookie-accept {
  background-color: var(--accent-primary);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--highlight);
  transform: scale(1.04);
}

.cookie-decline {
  background-color: transparent;
  color: var(--gray-light);
  border: 1px solid var(--gray-light);
}

.cookie-decline:hover {
  background-color: rgba(212, 114, 31, 0.1);
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-page ol,
.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-page li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.switcher-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--accent-primary);
  background-color: var(--white);
  color: var(--accent-primary);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.switcher-btn.active {
  background-color: var(--accent-primary);
  color: var(--white);
}

.switcher-btn:hover {
  background-color: var(--accent-primary);
  color: var(--white);
  transform: scale(1.04);
}

.content-block {
  display: none;
}

.content-block.active {
  display: block;
}

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

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-image {
  position: relative;
  background: linear-gradient(135deg, #8b4513 0%, #c41e3a 100%);
  border-radius: 4px;
  overflow: hidden;
  min-height: 350px;
}

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

.product-detail-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.3) 0%, rgba(196, 30, 58, 0.2) 100%);
}

.product-detail-content h1 {
  margin-top: 0;
}

.product-detail-specs {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.9rem;
}

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

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

.spec-value {
  color: var(--text-light);
}

header nav {
  display: none;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  header nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.mobile-nav a {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-dark);
  display: block;
  text-decoration: none;
  transition: background-color 0.2s;
}

.mobile-nav a:hover {
  background-color: var(--gray-light);
}

.mobile-nav.active {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}
