:root {
  --primary-color: #7A1F3D;
  --secondary-color: #5D1730;
  --accent-color: #9C2C54;
  --light-color: #E8D4DC;
  --dark-color: #3A0F1E;
  --gradient-primary: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  --hover-color: #6A1B35;
  --background-color: #FCF8FA;
  --text-color: #4A1728;
  --border-color: rgba(156, 44, 84, 0.23);
  --divider-color: rgba(122, 31, 61, 0.14);
  --shadow-color: rgba(122, 31, 61, 0.19);
  --highlight-color: #B54D72;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', 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, transparent 48%, rgba(232, 212, 220, 0.08) 49%, rgba(232, 212, 220, 0.08) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(232, 212, 220, 0.08) 49%, rgba(232, 212, 220, 0.08) 51%, transparent 52%),
    radial-gradient(circle at 60% 40%, rgba(156, 44, 84, 0.05) 2px, transparent 2px);
  background-size: 55px 55px, 55px 55px, 40px 40px;
  background-position: 0 0, 0 0, 20px 20px;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.info-section {
  background: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  color: white;
  padding: 5.3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: -95px;
  right: -95px;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(232, 212, 220, 0.11) 0%, transparent 68%);
  border-radius: 50%;
}

.info-section::after {
  content: '';
  position: absolute;
  bottom: -85px;
  left: -85px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 212, 220, 0.09) 0%, transparent 68%);
  border-radius: 50%;
}

.info-content {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.info-title {
  font-family: var(--main-font);
  font-size: 2.65rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.info-subtitle {
  font-size: 1.13rem;
  line-height: 1.78;
  opacity: 0.94;
  max-width: 840px;
  margin: 0 auto 3.3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3rem;
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.14);
  padding: 2.2rem 1.65rem;
  border-radius: 13px;
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.19);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-7px);
}

.info-box-icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.82rem;
  margin: 0 auto 1.05rem;
}

.info-box-title {
  font-family: var(--main-font);
  font-size: 1.23rem;
  margin-bottom: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.48px;
}

.info-box-text {
  font-size: 0.93rem;
  line-height: 1.64;
  opacity: 0.93;
}

header {
  background: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 72px;
  height: 72px;
  transform: translateY(-50%);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 3px solid rgba(232, 212, 220, 0.18);
  border-radius: 50%;
  animation: rotate 8s linear infinite;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid rgba(232, 212, 220, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 6s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1150px;
  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.88rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--light-color);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.42rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.23);
  transform: rotate(-5deg);
}

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 23px 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, #7A1F3D 0%, #9C2C54 100%);
  color: white;
  padding: 1.95rem;
  border-radius: 11px;
  box-shadow: 0 6px 20px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -19%;
  right: -9%;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.97rem;
  font-size: 1.19rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.47px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.27rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 4px 14px 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: 51px;
  height: 51px;
  background: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.77rem;
  font-size: 1.42rem;
}

.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.47px;
}

.cart-button {
  background: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  color: white;
  padding: 1.27rem 2.45rem;
  border: none;
  border-radius: 11px;
  font-size: 1.19rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.95px;
}

.cart-button:hover {
  background: linear-gradient(135deg, #6A1B35 0%, #B54D72 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.45rem;
  color: var(--primary-color);
  margin-bottom: 1.42rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.42rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.99rem;
  margin-bottom: 1.95rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, #7A1F3D 0%, #9C2C54 100%);
  color: white;
  padding: 1.75rem;
  border-radius: 11px;
  font-weight: 600;
  margin: 1.95rem 0;
  text-align: center;
  font-size: 1.19rem;
  box-shadow: 0 6px 20px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.47px;
}

.features-list {
  list-style: none;
  margin: 1.95rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.17rem;
  padding: 1.17rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 4px 12px 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 17px 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.87rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 4.1rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.28rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.35px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.95rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 2.15rem;
  border-radius: 13px;
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.27rem;
  margin-bottom: 1.42rem;
}

.testimonial-icon {
  width: 49px;
  height: 49px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.67rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.19rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.47px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.96rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.95rem;
  align-items: center;
  padding-bottom: 1.95rem;
}

@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.42rem;
  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.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  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;
}