:root {
  --color-cream: #FAF7F2;
  --color-wood-light: #E8DFD0;
  --color-text: #3D2B1F;
  --color-forest: #2D4739;
  --color-amber: #C17F24;
  --color-cream-light: #FAF7F2;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Lora', serif;
}

body {
  color: var(--color-text);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.bg-cream { background-color: var(--color-cream); }
.bg-wood-light { background-color: var(--color-wood-light); }
.bg-forest { background-color: var(--color-forest); }
.bg-amber { background-color: var(--color-amber); }

.bg-black-80 {
  background-color: var(--color-wood-light) !important;
}

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

nav {
  background-color: var(--color-wood-light);
}

.white-90 { color: #3D2B1F; }
.white-80 { color: #3D2B1F; }
.light-silver { color: #3D2B1F; }

.hover-white:hover { color: #3D2B1F; }
.hover-dark-brown:hover { color: var(--color-amber); }

.f3.fw2.hover-white.white-90 { color: #3D2B1F; }

a {
  color: var(--color-amber);
  text-decoration: none !important;
}

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

a.link {
  text-decoration: none !important;
}

a.color-inherit {
  color: inherit !important;
}

.amazon-link {
  display: block;
  width: fit-content;
  margin: 1.5rem auto;
  padding: 0.6rem 1.5rem;
  background-color: var(--color-amber);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.amazon-link:hover {
  background-color: #a86b1d;
  color: #fff !important;
  transform: translateY(-1px);
}

.site-logo {
  height: auto !important;
  width: auto !important;
  display: block;
}

.site-nav .site-logo {
  height: 70px !important;
  width: auto !important;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link:focus {
  position: absolute !important;
  left: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 3rem 0.75rem !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-desc {
    font-size: 0.9rem !important;
  }
}

a, button {
  touch-action: manipulation;
}

.menu-toggle svg line {
  transition: opacity 0.2s ease;
}

.nested-copy-line-height img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid rgba(61,43,31,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(61,43,31,0.08), 0 4px 20px rgba(61,43,31,0.04);
}

.product-card-img {
  flex-shrink: 0;
}

.product-card-img img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f9f9;
}

.product-card-body {
  flex: 1;
  min-width: 0;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.product-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.product-card-desc p {
  margin: 0 0 0.5rem;
}

.product-card-desc p:last-child {
  margin-bottom: 0;
}

.product-card-btn {
  display: block;
  width: fit-content;
  margin: 0.75rem auto 0;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-amber);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.product-card-btn:hover {
  background-color: #a86b1d;
  color: #fff !important;
  transform: translateY(-1px);
}

.nested-copy-line-height table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: 0 1px 6px rgba(61,43,31,0.06);
  border: 2px solid #2a1a10;
}

.nested-copy-line-height thead th {
  background-color: var(--color-forest);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #5a4032;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.nested-copy-line-height thead th:last-child {
  border-right: none;
}

.nested-copy-line-height tbody tr:nth-child(even) {
  background-color: rgba(232,223,208,0.4);
}

.nested-copy-line-height tbody tr:nth-child(odd) {
  background-color: #fff;
}

.nested-copy-line-height tbody tr:hover {
  background-color: rgba(232,223,208,0.7);
}

.nested-copy-line-height td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #b5a899;
  border-right: 1px solid #d1c7ba;
}

.nested-copy-line-height td:last-child {
  border-right: none;
}

.nested-copy-line-height tbody tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 600px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .product-card-img img {
    width: 160px;
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
  .nav-menu {
    display: none !important;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #E8DFD0;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 1rem !important;
    width: 100%;
  }
  .nav-menu ul li {
    width: 100%;
  }
  .nav-menu ul li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(61,43,31,0.1);
  }
  .nav-container {
    position: relative;
    flex-wrap: wrap;
  }
}
