:root {
  --primary-color: #F0A55A;
  --secondary-color: #E89549;
  --accent-color: #D67F38;
  --light-color: #FFF8F2;
  --dark-color: #4A3022;
  --gradient-primary: linear-gradient(135deg, #F0A55A 0%, #E89549 100%);
  --hover-color: #D98B42;
  --background-color: #FFFDFB;
  --text-color: #5C4A3D;
  --border-color: rgba(240, 165, 90, 0.2);
  --divider-color: rgba(240, 165, 90, 0.12);
  --shadow-color: rgba(240, 165, 90, 0.18);
  --highlight-color: #F7DC6F;
  --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);
  direction: rtl;
}

.pattern-bg {
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(240, 165, 90, 0.02) 50px, rgba(240, 165, 90, 0.02) 100px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(240, 165, 90, 0.03) 50px, rgba(240, 165, 90, 0.03) 100px),
    radial-gradient(circle at 30% 40%, rgba(232, 149, 73, 0.04) 0%, transparent 40%);
  background-size: 100px 100px, 100px 100px, 600px 600px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(45deg);
  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.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid rgba(240, 165, 90, 0.3);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  border: 2px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 25px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 30px 40px;
  }
}

.product-image:hover {
  transform: scale(1.03);
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.4rem;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  border-bottom: 4px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 14px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 1px;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.2rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 1rem;
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(247, 220, 111, 0.35);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  font-size: 0.9rem;
}

.features-list li:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 12px var(--shadow-color);
  border-color: var(--primary-color);
}

.feature-check {
  width: 24px;
  height: 24px;
  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.8rem;
}

.benefits-section {
  padding: 2.8rem 1.2rem;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
  pointer-events: none;
}

.benefits-content {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  text-align: center;
  color: white;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.6rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: white;
  transform: translateY(-4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: white;
  letter-spacing: 0.5px;
}

.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  max-width: 1150px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid rgba(240, 165, 90, 0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.87rem;
  opacity: 0.92;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.2rem;
}

.footer-content {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding-bottom: 1.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: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-start;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  max-width: 1150px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}