:root {
  --primary-color: #FF6F61;
  --secondary-color: #E85D51;
  --accent-color: #2C7FB2;
  --light-color: #F2D4C9;
  --dark-color: #9B4A3F;
  --gradient-primary: linear-gradient(135deg, #FF6F61 0%, #E85D51 100%);
  --hover-color: #F56558;
  --background-color: #FFFAF8;
  --text-color: #453935;
  --border-color: rgba(255, 111, 97, 0.2);
  --divider-color: rgba(232, 93, 81, 0.12);
  --shadow-color: rgba(232, 93, 81, 0.14);
  --highlight-color: #3498DB;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', 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: 
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255, 111, 97, 0.02) 10px, transparent 20px),
    repeating-linear-gradient(rgba(242, 212, 201, 0.03), rgba(242, 212, 201, 0.03));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.essentials-section {
  background: white;
  padding: 3.5rem 1.2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.essentials-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.essentials-content {
  max-width: 1150px;
  margin: 0 auto;
}

.essentials-section h2 {
  font-family: var(--main-font);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.6rem;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.essentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
}

@media (min-width: 768px) {
  .essentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.essential-card {
  background: var(--light-color);
  padding: 2rem 1.6rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.essential-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.essential-card:hover::before {
  opacity: 1;
}

.essential-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: 0 10px 32px var(--shadow-color);
}

.essential-card-icon {
  width: 62px;
  height: 62px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  color: white;
  box-shadow: 0 4px 16px var(--shadow-color);
  position: relative;
  z-index: 1;
}

.essential-card h3 {
  font-family: var(--main-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  position: relative;
  z-index: 1;
}

.essential-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 35px;
  height: 35px;
  background: var(--light-color);
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  display: none;
}

@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.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 3px 12px var(--shadow-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.9rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.9rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 22px var(--shadow-color);
  border: 2px solid var(--light-color);
}

.product-image {
  width: 100%;
  padding: 29px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 29px 58px;
  }
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.75rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 3px 12px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.95rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 7px 25px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 46px;
  height: 46px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.28rem 2.35rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 22px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 9px 30px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.7rem;
  color: var(--primary-color);
  margin-bottom: 1.18rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.price {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.18rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1.75rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 22px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.features-list {
  list-style: none;
  margin: 1.75rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.05rem;
  margin-bottom: 1.18rem;
  padding: 1.18rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(6px);
  border-color: var(--primary-color);
  box-shadow: 0 7px 25px var(--shadow-color);
}

.feature-check {
  width: 29px;
  height: 29px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.92rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3.5rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.9rem;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.18rem;
  margin-bottom: 1.18rem;
}

.testimonial-header > div {
  min-width: 0;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.08rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-break: break-word;
}

.testimonial p {
  line-height: 1.65;
  font-size: 0.9rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.9rem 1.2rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 1.75rem;
}

@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.45rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  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: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}