:root {
  --primary-color: #B85C3E;
  --secondary-color: #A0694F;
  --accent-color: #D4856F;
  --light-color: #F9F1EE;
  --dark-color: #5A3025;
  --gradient-primary: linear-gradient(135deg, #B85C3E 0%, #A0694F 100%);
  --hover-color: #C96E52;
  --background-color: #FDF8F6;
  --text-color: #6B4238;
  --border-color: rgba(184, 92, 62, 0.16);
  --divider-color: rgba(160, 105, 79, 0.11);
  --shadow-color: rgba(90, 48, 37, 0.1);
  --highlight-color: #E8B5A4;
  --main-font: 'Lalezar', cursive;
  --alt-font: 'Almarai', 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: 
    radial-gradient(circle, rgba(184, 92, 62, 0.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(212, 133, 111, 0.03) 1px, transparent 1px);
  background-size: 30px 30px, 50px 50px;
  background-position: 0 0, 25px 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--primary-color);
  padding: 3rem 1rem;
  margin: 2.5rem 0 0 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, var(--accent-color), var(--secondary-color));
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.8rem;
  text-align: center;
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.2rem 1.7rem;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(90, 48, 37, 0.15);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(90, 48, 37, 0.2);
}

.benefit-card-icon {
  width: 65px;
  height: 65px;
  background: var(--secondary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
  color: white;
  box-shadow: 0 4px 12px rgba(160, 105, 79, 0.3);
  transform: rotate(45deg);
}

.benefit-card-icon span {
  transform: rotate(-45deg);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  border-bottom: 4px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  left: 3%;
  width: 55px;
  height: 55px;
  background: var(--light-color);
  transform: translateY(-50%) rotate(45deg);
  border: 3px solid var(--accent-color);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  border-radius: 0;
  transform: rotate(45deg);
}

.logo-icon span {
  transform: rotate(-45deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 0;
  box-shadow: 0 5px 15px var(--shadow-color);
  border: 3px solid var(--light-color);
}

.product-image {
  width: 100%;
  padding: 35px;
  height: auto;
  border-radius: 0;
}

@media (min-width: 768px) {
  .product-image {
    padding: 35px 55px;
  }
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.7rem;
  border-radius: 0;
  border: 2px solid var(--border-color);
  border-right: 4px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 0.6rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--light-color);
  border-top: 3px solid var(--accent-color);
  text-align: center;
}

.feature-item:hover {
  transform: scale(1.05);
  border-top-color: var(--primary-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
  transform: rotate(45deg);
}

.feature-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.15rem 2.4rem;
  border: none;
  border-radius: 0;
  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 4px 15px var(--shadow-color);
  font-family: var(--main-font);
  position: relative;
  overflow: hidden;
}

.cart-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.cart-button:hover::before {
  left: 100%;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.price {
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--accent-color);
  margin: 1.2rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.94rem;
  margin-bottom: 1.7rem;
  line-height: 1.85;
  color: var(--text-color);
}

.highlight-text {
  background: var(--secondary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 0;
  font-weight: 700;
  margin: 1.7rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px var(--shadow-color);
  font-family: var(--main-font);
  border-right: 4px solid var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 1.7rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1.3rem;
  background: white;
  border-radius: 0;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--light-color);
  border-right: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(-7px);
  border-right-color: var(--primary-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.95rem;
  transform: rotate(45deg);
}

.feature-check::before {
  content: '✓';
  transform: rotate(-45deg);
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3rem 1rem;
  border-top: 4px solid var(--primary-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.7rem;
  border-radius: 0;
  border: 2px solid var(--border-color);
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.85;
  font-size: 0.94rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.4rem 1rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
  padding-bottom: 1.4rem;
}

@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.2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-start;
  }
}

.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.89rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}