:root {
  --primary-color: #C88D3F;
  --secondary-color: #8B5A2B;
  --accent-color: #DBA55E;
  --light-color: #F5EBD9;
  --dark-color: #3E3E3E;
  --gradient-primary: linear-gradient(115deg, #C88D3F 0%, #8B5A2B 100%);
  --hover-color: #D69D4F;
  --background-color: #FFFEF8;
  --text-color: #4F4F4F;
  --border-color: rgba(219, 165, 94, 0.28);
  --divider-color: rgba(200, 141, 63, 0.2);
  --shadow-color: rgba(139, 90, 43, 0.22);
  --highlight-color: #E8C080;
  --main-font: 'Crimson Text', serif;
  --alt-font: 'Karla', 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 {
  background-image: 
    linear-gradient(30deg, rgba(200, 141, 63, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(200, 141, 63, 0.03) 87.5%, rgba(200, 141, 63, 0.03)),
    linear-gradient(150deg, rgba(200, 141, 63, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(200, 141, 63, 0.03) 87.5%, rgba(200, 141, 63, 0.03)),
    radial-gradient(circle at 40% 20%, rgba(245, 235, 217, 0.1) 0%, transparent 65%);
  background-size: 80px 80px, 80px 80px, 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: linear-gradient(180deg, #FAF6EE 0%, #FFFFFF 100%);
  padding: 4.5rem 1.5rem;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  position: relative;
}

.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.benefits-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.benefit-card {
  flex: 1;
  background: white;
  padding: 3rem 2.2rem;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid var(--primary-color);
  position: relative;
  box-shadow: 8px 8px 0 var(--light-color);
}

.benefit-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--light-color);
}

.benefit-card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.8rem;
  color: white;
  border: 3px solid var(--secondary-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
  letter-spacing: 0.4px;
}

.benefit-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
  border-bottom: 4px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 60px;
  height: 8px;
  background: var(--primary-color);
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.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: 1rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.8px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  border: 3px solid var(--secondary-color);
  transform: rotate(45deg);
}

.logo-icon span {
  transform: rotate(-45deg);
  display: block;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 0;
  box-shadow: 10px 10px 0 var(--light-color);
  border: 3px solid var(--primary-color);
}

.product-image {
  width: 100%;
  padding: 38px;
  height: auto;
  border-radius: 0;
  transition: transform 0.3s ease;
  position: relative;
}

@media (min-width: 768px) {
  .product-image {
    padding: 38px 65px;
  }
}

.product-image:hover {
  transform: scale(1.06);
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.3rem;
  border-radius: 0;
  border: 3px solid var(--primary-color);
  position: relative;
  box-shadow: 6px 6px 0 rgba(139, 90, 43, 0.15);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--secondary-color);
  margin-bottom: 1.3rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: space-between;
}

.feature-item {
  flex: 1;
  min-width: calc(50% - 0.65rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.6rem 1.2rem;
  background: white;
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--light-color);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.feature-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--light-color);
}

.feature-item .feature-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: white;
  border: 2px solid var(--secondary-color);
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem 2.8rem;
  border: none;
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 6px 6px 0 var(--secondary-color);
  font-family: var(--main-font);
  letter-spacing: 0.6px;
  border: 3px solid var(--secondary-color);
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--secondary-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.4rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.98rem;
  margin-bottom: 2.3rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 2.1rem;
  border-radius: 0;
  font-weight: 700;
  margin: 2.3rem 0;
  text-align: center;
  font-size: 1.15rem;
  box-shadow: 6px 6px 0 var(--secondary-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
  border: 3px solid var(--secondary-color);
}

.features-list {
  list-style: none;
  margin: 2.3rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  margin-bottom: 1.4rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--light-color);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.features-list li:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--light-color);
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.95rem;
  border: 2px solid var(--secondary-color);
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 4.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 2.3rem;
  border-radius: 0;
  border: 3px solid var(--primary-color);
  box-shadow: 6px 6px 0 rgba(139, 90, 43, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 rgba(139, 90, 43, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.testimonial-header > div {
  min-width: 0;
}

.testimonial-icon {
  width: 58px;
  height: 58px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.3px;
  word-break: break-word;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.94rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3.5rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  align-items: center;
  padding-bottom: 2.3rem;
}

@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: 1.8rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}