:root {
  --primary-color: #8C6B5A;
  --secondary-color: #7C5B4A;
  --accent-color: #AC8B7A;
  --light-color: #E8D5C8;
  --dark-color: #6C4B3A;
  --gradient-primary: linear-gradient(135deg, #8C6B5A 0%, #AC8B7A 100%);
  --hover-color: #9C7B6A;
  --background-color: #F5F5F5;
  --text-color: #8C6B5A;
  --border-color: rgba(172, 139, 122, 0.2);
  --divider-color: rgba(140, 107, 90, 0.1);
  --shadow-color: rgba(140, 107, 90, 0.15);
  --highlight-color: #D8C5B8;
  --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: 
    linear-gradient(90deg, rgba(140, 107, 90, 0.02) 50%, transparent 50%),
    linear-gradient(rgba(172, 139, 122, 0.03) 50%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(140, 107, 90, 0.02) 30%, transparent 30%),
    radial-gradient(circle at 60% 40%, rgba(172, 139, 122, 0.02) 25%, transparent 25%);
  background-size: 50px 50px, 50px 50px, 100px 100px, 80px 80px;
  background-position: 0 0, 25px 25px, 0 0, 50px 50px;
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.64rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: -16%;
  right: -2.4%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(232, 213, 200, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.84rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.74rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.44rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3.14rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.14rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.04rem;
}

.product-image-container {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 17px;
  box-shadow: 0 12px 27px var(--shadow-color);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-3px);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 2.04rem;
  border-radius: 17px;
  box-shadow: 0 8px 24px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -16%;
  right: -4%;
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 1.04rem;
  font-size: 1.14rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.04rem;
}

@media (min-width: 600px) {
  .features-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.24rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 17px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 135px;
  justify-content: center;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.79rem;
  font-size: 1.34rem;
}

.feature-item span {
  font-size: 0.89rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.24rem 2.44rem;
  border: none;
  border-radius: 16px;
  font-size: 1.24rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 7px 22px var(--shadow-color);
  font-family: var(--main-font);
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--highlight-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 27px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.34rem;
  color: var(--primary-color);
  margin-bottom: 1.54rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.44rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.54rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 1.04rem;
  margin-bottom: 2.04rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 1.79rem;
  border-radius: 16px;
  font-weight: 600;
  margin: 2.04rem 0;
  text-align: center;
  font-size: 1.24rem;
  box-shadow: 0 7px 22px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 2.04rem 0;
  display: grid;
  gap: 1.44rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1.04rem;
  padding: 1.24rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px 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 6px 18px var(--shadow-color);
}

.feature-check {
  width: 24px;
  height: 24px;
  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.82rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 4.04rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3.04rem;
  font-size: 2.34rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.04rem;
  max-width: 1350px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.04rem;
  border-radius: 17px;
  backdrop-filter: blur(8px);
  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.24rem;
  margin-bottom: 1.54rem;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.64rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.24rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.7;
  font-size: 1.04rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3.04rem 1.5rem;
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.04rem;
  align-items: center;
  padding-bottom: 2.04rem;
}

@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.54rem;
  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.97rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2.04rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
  max-width: 1350px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}