:root {
  --primary-color: #6B4423;
  --secondary-color: #4A2C1A;
  --accent-color: #8B6239;
  --light-color: #D4C4B0;
  --dark-color: #2C1810;
  --gradient-primary: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  --hover-color: #5A3A1F;
  --background-color: #FAF8F5;
  --text-color: #3E2723;
  --border-color: rgba(139, 98, 57, 0.22);
  --divider-color: rgba(107, 68, 35, 0.15);
  --shadow-color: rgba(107, 68, 35, 0.2);
  --highlight-color: #A0826D;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Poppins', 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: 
    radial-gradient(circle at 25% 35%, rgba(212, 196, 176, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(139, 98, 57, 0.12) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(107, 68, 35, 0.08) 1px, transparent 1px);
  background-size: 50px 50px, 40px 40px, 30px 30px;
  background-position: 0 0, 25px 25px, 15px 15px;
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.info-section {
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  color: white;
  padding: 5.2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 196, 176, 0.1) 0%, transparent 65%);
  border-radius: 50%;
}

.info-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(212, 196, 176, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.info-content {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.info-title {
  font-family: var(--main-font);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.9rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-subtitle {
  font-size: 1.12rem;
  line-height: 1.8;
  opacity: 0.93;
  max-width: 800px;
  margin: 0 auto 3.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.13);
  padding: 2.3rem 1.7rem;
  border-radius: 14px;
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-7px);
}

.info-box-icon {
  width: 63px;
  height: 63px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 1.1rem;
}

.info-box-title {
  font-family: var(--main-font);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-box-text {
  font-size: 0.94rem;
  line-height: 1.65;
  opacity: 0.93;
}

header {
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 68px;
  height: 68px;
  transform: translateY(-50%);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 3px solid rgba(212, 196, 176, 0.2);
  border-radius: 15px;
  transform: rotate(45deg);
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 2px solid rgba(212, 196, 176, 0.14);
  border-radius: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  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.8rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--light-color);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.22);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 13px;
  box-shadow: 0 7px 22px var(--shadow-color);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 20px 40px;
  }
}

.product-image:hover {
  transform: translateY(-3px);
}

.guarantee-block {
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  color: white;
  padding: 1.9rem;
  border-radius: 11px;
  box-shadow: 0 6px 19px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -18%;
  right: -9%;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.95rem;
  font-size: 1.18rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 4px 13px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.feature-item span {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.cart-button {
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  color: white;
  padding: 1.25rem 2.4rem;
  border: none;
  border-radius: 11px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 19px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.cart-button:hover {
  background: linear-gradient(135deg, #5A3A1F 0%, #A0826D 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.4rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.99rem;
  margin-bottom: 1.9rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, #6B4423 0%, #8B6239 100%);
  color: white;
  padding: 1.7rem;
  border-radius: 11px;
  font-weight: 600;
  margin: 1.9rem 0;
  text-align: center;
  font-size: 1.18rem;
  box-shadow: 0 6px 19px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.features-list {
  list-style: none;
  margin: 1.9rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding: 1.15rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 4px 11px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.feature-check {
  width: 23px;
  height: 23px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.88rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 4rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.9rem;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.11);
  padding: 2.1rem;
  border-radius: 13px;
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}

.testimonial-icon {
  width: 49px;
  height: 49px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.18rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.96rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.9rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  align-items: center;
  padding-bottom: 1.9rem;
}

@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.4rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.89rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}