:root {
  --primary-color: #7B3A2E;
  --secondary-color: #5C2A20;
  --accent-color: #C4856A;
  --light-color: #FAF0EC;
  --dark-color: #2E1A14;
  --gradient-primary: linear-gradient(135deg, #7B3A2E 0%, #5C2A20 100%);
  --hover-color: #5C2A20;
  --background-color: #FDF6F3;
  --text-color: #3A2218;
  --border-color: rgba(196, 133, 106, 0.3);
  --divider-color: rgba(123, 58, 46, 0.12);
  --shadow-color: rgba(46, 26, 20, 0.09);
  --highlight-color: #F0A55A;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pattern-bg {
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(196, 133, 106, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(240, 165, 90, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(123, 58, 46, 0.04) 0%, transparent 45%);
  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;
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  display: none;
  gap: 8px;
  align-items: center;
}

.header-deco-diamond {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(240, 165, 90, 0.3);
  transform: rotate(45deg);
}

.header-deco-line {
  width: 40px;
  height: 1px;
  background: rgba(240, 165, 90, 0.2);
}

@media (min-width: 768px) {
  .header-deco {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.5px;
  font-style: italic;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(240, 165, 90, 0.2);
  border: 1.5px solid rgba(240, 165, 90, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
}

.main-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
}

.product-section {
  align-items: flex-start;
}

.product-image {
  border-radius: 12px;
  box-shadow: 0 8px 28px var(--shadow-color);
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
  border: 3px solid rgba(196, 133, 106, 0.2);
}

.product-image:hover {
  transform: scale(1.012);
}

.guarantee-block {
  background: white;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin-top: 1.1rem;
  box-shadow: 0 3px 12px var(--shadow-color);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.guarantee-block-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.guarantee-block p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.cart-button {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  box-shadow: 0 4px 14px rgba(240, 165, 90, 0.35);
  font-family: var(--main-font);
  letter-spacing: 0.3px;
}

.cart-button:hover {
  background: #d9904a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(240, 165, 90, 0.45);
}

.product-title {
  font-family: var(--main-font);
  font-size: 2.1rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  letter-spacing: 0.3px;
  font-style: italic;
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, #7B3A2E 0%, #C4856A 100%);
  color: white;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.1rem 0;
  text-align: center;
  font-size: 0.97rem;
  font-family: var(--main-font);
  box-shadow: 0 4px 16px rgba(123, 58, 46, 0.25);
}

/* FEATURES LIST — numbered with accent border left */
.features-list {
  list-style: none;
  margin: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(196, 133, 106, 0.35);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:hover {
  color: var(--primary-color);
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.75rem 0;
  font-family: var(--main-font);
}

/* BIG FEATURES — 2x2 grid with top-border accent */
.big-features {
  margin: 1.1rem 0;
}

.big-feature {
  text-align: left;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.25s ease;
}

.big-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.big-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(196, 133, 106, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(196, 133, 106, 0.25);
}

.big-feature h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.big-feature p {
  font-size: 0.81rem;
  line-height: 1.55;
  color: var(--text-color);
  margin: 0;
}

/* INFO BLOCK — full-width with icon tiles */
.info-block {
  background: linear-gradient(135deg, #2E1A14 0%, #4A2519 100%);
  color: white;
  padding: 2.2rem 0;
  position: relative;
  overflow: hidden;
}

.info-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(240, 165, 90, 0.5), transparent);
}

.info-block h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.3px;
}

.info-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .info-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(240, 165, 90, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(240, 165, 90, 0.3);
  transform: translateY(-3px);
}

.info-icon {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  display: block;
}

.info-item h3 {
  font-family: var(--main-font);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--highlight-color);
}

.info-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.88;
  margin: 0;
}

/* TESTIMONIALS — dark background with quote style */
.testimonials {
  background: #2E1A14;
  color: white;
  padding: 2.2rem 0;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--highlight-color);
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 133, 106, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.4rem;
  right: 0.9rem;
  font-family: var(--main-font);
  font-size: 3rem;
  color: rgba(240, 165, 90, 0.2);
  line-height: 1;
  font-style: italic;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: rgba(240, 165, 90, 0.2);
  border: 1px solid rgba(240, 165, 90, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--highlight-color);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--highlight-color);
}

.testimonial-stars {
  font-size: 0.78rem;
  color: var(--highlight-color);
  margin-top: 0.1rem;
  opacity: 0.85;
}

.testimonial p {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.9;
}

.footer {
  background: #1C0E0A;
  color: white;
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.85rem;
}

@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: 0.85rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.84rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}

.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;
}