:root {
  --primary-color: #3D4F5C;
  --secondary-color: #243039;
  --accent-color: #B8922A;
  --light-color: #F0F3F5;
  --dark-color: #181F26;
  --gradient-primary: linear-gradient(135deg, #3D4F5C 0%, #243039 100%);
  --hover-color: #2C3B47;
  --background-color: #F6F8F9;
  --text-color: #2E3A44;
  --border-color: rgba(61, 79, 92, 0.14);
  --divider-color: rgba(36, 48, 57, 0.08);
  --shadow-color: rgba(36, 48, 57, 0.09);
  --highlight-color: #D4A84B;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Open Sans', 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-linear-gradient(
      45deg,
      transparent 0px,
      transparent 30px,
      rgba(61, 79, 92, 0.014) 30px,
      rgba(61, 79, 92, 0.014) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 30px,
      rgba(184, 146, 42, 0.012) 30px,
      rgba(184, 146, 42, 0.012) 31px
    ),
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 75, 0.07) 0%, transparent 50%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HEADER */
header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px var(--shadow-color);
  border-bottom: 2px solid var(--accent-color);
}

.header-decor {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 180px;
  pointer-events: none;
  display: none;
}

.header-decor-bar {
  position: absolute;
  top: 0;
  right: 30px;
  width: 2px;
  height: 100%;
  background: var(--highlight-color);
  opacity: 0.2;
}

.header-decor-bar-sm {
  position: absolute;
  top: 0;
  right: 50px;
  width: 1px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.1;
}

.header-decor-dot {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 10px;
  background: var(--highlight-color);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
}

@media (min-width: 768px) {
  .header-decor { display: block; }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--highlight-color);
  border-radius: 4px;
  border: 2px solid var(--highlight-color);
  flex-shrink: 0;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--shadow-color);
  border: 1px solid var(--border-color);
  padding: 0.9rem;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.guarantee-block {
  background: var(--dark-color);
  color: white;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border-left: 3px solid var(--highlight-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--highlight-color);
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-block p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

/* FEATURES ICONS — single column, full-width rows with gold accent line */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.9rem;
  background: white;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 4px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--highlight-color);
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: var(--light-color);
  border-left-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 32px;
  height: 32px;
  background: var(--light-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-button {
  background: var(--accent-color);
  color: white;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-button:hover {
  background: #9A7822;
  transform: translateY(-1px);
}

/* PRODUCT RIGHT */
.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.55rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
  line-height: 1.68;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.55rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--highlight-color);
}

/* FEATURES LIST — alternating accent style */
.features-list {
  list-style: none;
  margin: 0.7rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.84rem;
  transition: all 0.2s ease;
}

.features-list li:nth-child(even) {
  background: var(--light-color);
}

.features-list li:hover {
  border-color: var(--accent-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.68rem;
}

/* PROMO BLOCK — full-width with large icon cards, 3-col */
.promo-block {
  background: var(--primary-color);
  color: white;
  padding: 2rem 1rem;
}

.promo-block-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.promo-block h2 {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--highlight-color);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promo-card {
  text-align: center;
  padding: 1.2rem 1rem;
  background: rgba(0,0,0,0.18);
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.promo-card-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  display: block;
}

.promo-card h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--highlight-color);
}

.promo-card p {
  font-size: 0.81rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
}

/* TESTIMONIALS */
.testimonials {
  background: #E8EDEF;
  color: var(--text-color);
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.1rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.22s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-icon {
  width: 36px;
  height: 36px;
  background: var(--light-color);
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.testimonial-location {
  font-size: 0.76rem;
  color: var(--text-color);
  opacity: 0.7;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.83rem;
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.4rem 1rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

@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.7rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}

.footer-content .logo { color: white; }
.footer-content .logo-icon {
  background: var(--dark-color);
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.22s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover { color: var(--highlight-color); }

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}