:root {
  --primary-color: #8B5A2B;
  --secondary-color: #D4A96A;
  --accent-color: #5C3D1E;
  --light-color: #FDF6EC;
  --dark-color: #2E1A0E;
  --gradient-primary: linear-gradient(135deg, #8B5A2B 0%, #A0713D 100%);
  --hover-color: #6E4520;
  --background-color: #FAF5EE;
  --text-color: #3D2B1A;
  --border-color: rgba(139, 90, 43, 0.15);
  --divider-color: rgba(139, 90, 43, 0.08);
  --shadow-color: rgba(46, 26, 14, 0.1);
  --highlight-color: #C0652B;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

.pattern-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  overflow: hidden;
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(212, 169, 106, 0.18) 0%, transparent 65%);
  border-radius: 50%;
}

.pattern-bg::after {
  content: '';
  position: absolute;
  bottom: 15%; left: -4%;
  width: 220px; height: 220px;
  background: radial-gradient(ellipse, rgba(139, 90, 43, 0.07) 0%, transparent 65%);
  border-radius: 50%;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: none;
  gap: 10px;
  align-items: center;
}

.header-deco span {
  display: block;
  background: rgba(255,255,255,0.1);
}

.header-deco span:nth-child(1) { width: 48px; height: 4px; border-radius: 2px; }
.header-deco span:nth-child(2) { width: 32px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); }
.header-deco span:nth-child(3) { width: 20px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.04); }

@media (min-width: 768px) {
  .header-deco { display: flex; flex-direction: column; }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section { grid-template-columns: 1fr 1fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--secondary-color);
  box-shadow: 0 4px 14px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 55%;
  height: auto;
  padding: 18px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.guarantee-block-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-color);
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-item .feature-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.feature-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--alt-font);
}

.cart-button {
  background: var(--highlight-color);
  color: white;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px rgba(192, 101, 43, 0.3);
  font-family: var(--main-font);
  letter-spacing: 0.8px;
}

.cart-button:hover {
  background: #a3541e;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(192, 101, 43, 0.38);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--highlight-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.84rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.product-description p + p { margin-top: 0.7rem; }

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 5px var(--shadow-color);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.features-list li:hover {
  border-bottom-color: var(--secondary-color);
}

.feature-check {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 2px;
}

.features-list li span:last-child {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Wide block between main and testimonials */
.wide-block {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(160deg, #FDF0E0 0%, #F5DDB8 100%);
}

.wide-block-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wide-block h2 {
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 1.6rem;
  letter-spacing: 0.8px;
}

.wide-block-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wide-block-grid { grid-template-columns: repeat(3, 1fr); }
}

.wide-block-card {
  background: white;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  border-top: 3px solid var(--secondary-color);
  text-align: center;
}

.wide-block-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  display: block;
}

.wide-block-card h3 {
  font-family: var(--main-font);
  font-size: 0.92rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.wide-block-card p {
  font-size: 0.8rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: rgba(255,255,255,0.06);
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  border-left: 3px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.testimonial:hover { transform: translateY(-2px); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.testimonial-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: var(--secondary-color);
  letter-spacing: 0.4px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.76);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
  border-top: 1px solid rgba(212, 169, 106, 0.12);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.77rem;
}

.footer-nav a:hover { color: var(--secondary-color); }

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.36);
  font-size: 0.73rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a { color: rgba(255,255,255,0.58); text-decoration: none; }
.footer-logo { color: white; }