:root {
  --primary-color: #9C1C66;
  --secondary-color: #6A1E9C;
  --accent-color: #F4D03F;
  --light-color: #B2B3B1;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #9C1C66 0%, #F4D03F 100%);
  --hover-color: #8C1A5C;
  --background-color: #F9F9F9;
  --text-color: #1C2833;
  --border-color: rgba(244, 208, 63, 0.3);
  --divider-color: rgba(156, 28, 102, 0.12);
  --shadow-color: rgba(156, 28, 102, 0.15);
  --highlight-color: #6A1E9C;
  --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(circle at 75% 15%, var(--accent-color) 0.8px, transparent 0.8px),
    radial-gradient(circle at 25% 85%, var(--primary-color) 0.5px, transparent 0.5px),
    linear-gradient(30deg, transparent 30%, rgba(156, 28, 102, 0.02) 55%, transparent 80%);
  background-size: 58px 42px, 74px 52px, 95px 68px;
  background-position: 0 0, 29px 21px, 0 0;
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: -18%;
  right: 7%;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: rgba(178, 179, 177, 0.18);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3.3rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.3rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background: white;
  border-radius: 11px;
  box-shadow: 0 7px 23px var(--shadow-color);
  padding: 2.25rem;
  transition: transform 0.3s ease;
}

.product-image-container:hover {
  transform: translateY(-2px);
}

.product-image {
  height: auto;
  border-radius: 5px;
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: 11px;
  box-shadow: 0 7px 23px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -21%;
  right: -8%;
  width: 59px;
  height: 59px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.9rem;
  font-size: 1.04rem;
  font-weight: 600;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .features-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.18rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-item:hover {
  transform: translateY(-1px);
  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.68rem;
  font-size: 1.24rem;
}

.feature-item span {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.3rem 2.5rem;
  border: none;
  border-radius: 9px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 7px 23px 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(-1px);
  box-shadow: 0 9px 27px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.18rem;
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 2.18rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.3rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.98rem;
  margin-bottom: 2rem;
  line-height: 1.67;
  color: var(--text-color);
}

.highlight-text {
  background: var(--gradient-primary);
  color: white;
  padding: 1.58rem;
  border-radius: 9px;
  font-weight: 600;
  margin: 2rem 0;
  text-align: center;
  font-size: 1.04rem;
  box-shadow: 0 7px 23px var(--shadow-color);
  font-family: var(--main-font);
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  padding: 1rem;
  background: white;
  border-radius: 9px;
  box-shadow: 0 4px 13px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 2px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-check {
  width: 19px;
  height: 19px;
  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.74rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 3.9rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.7rem;
  font-size: 2.18rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.078);
  padding: 2rem;
  border-radius: 11px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-1px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.18rem;
  margin-bottom: 1.3rem;
}

.testimonial-icon {
  width: 45px;
  height: 45px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.44rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.04rem;
  font-family: var(--main-font);
}

.testimonial p {
  line-height: 1.67;
  font-size: 0.92rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.8rem 1.5rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
}

@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.3rem;
  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.88rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}