:root {
  --primary-color: #4B1461;
  --secondary-color: #9C1C66;
  --accent-color: #F2D4C9;
  --light-color: #F1A9B8;
  --dark-color: #630E76;
  --gradient-primary: linear-gradient(135deg, #4B1461 0%, #F2D4C9 100%);
  --hover-color: #6A1E9C;
  --background-color: #F5F5F5;
  --text-color: #261E6B;
  --border-color: rgba(242, 212, 201, 0.3);
  --divider-color: rgba(75, 20, 97, 0.15);
  --shadow-color: rgba(75, 20, 97, 0.2);
  --highlight-color: #E74C3C;
  --main-font: 'Oswald', 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(ellipse 40px 30px at 50px 50px, rgba(75, 20, 97, 0.04), transparent),
    radial-gradient(ellipse 60px 40px at 100px 100px, rgba(242, 212, 201, 0.05), transparent),
    polygon(50% 0%, 0% 100%, 100% 100%);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  background-position: 0 0, 50px 50px, 25px 25px;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.8rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: -35%;
  right: -6%;
  width: 140px;
  height: 40px;
  border-radius: 20px;
  background: rgba(241, 169, 184, 0.08);
  transform: rotate(-15deg);
  display: none;
}

@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: 1.1rem;
  color: white;
  font-family: var(--main-font);
  font-size: 2.1rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 10px 20px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 10px 50px;
  }
}

.product-image:hover {
  transform: translateY(-6px);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: 22px;
  box-shadow: 0 12px 32px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .features-icons {
    gap: 1.8rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 1.5rem;
  background: white;
  border-radius: 22px;
  box-shadow: 0 8px 24px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .feature-item {
    padding: 1.8rem;
  }
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.8rem 3.5rem;
  border: none;
  border-radius: 22px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 12px 32px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--highlight-color) 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 36px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 2rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 22px;
  font-weight: 700;
  margin: 3rem 0;
  text-align: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 32px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
}

.features-list {
  list-style: none;
  margin: 3rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  padding: 1.6rem;
  background: white;
  border-radius: 22px;
  box-shadow: 0 8px 22px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 8px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 26px var(--shadow-color);
}

.feature-check {
  width: 32px;
  height: 32px;
  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: 1.1rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 5.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 4.5rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.15);
  padding: 3rem;
  border-radius: 22px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.testimonial-icon {
  width: 58px;
  height: 58px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--main-font);
  text-transform: uppercase;
}

.testimonial p {
  line-height: 1.8;
  font-size: 1.1rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 4.5rem 1.5rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding-bottom: 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: 2rem;
  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: 1.05rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}