:root {
  --accent: #3CB815;
  --hover: #F65005;
  --light-bg: #f4fbf2;
  --dark-text: #1e1e1e;
}
img {
  max-width: 100%;
}
body {
  padding-top: 80px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 1030;
  padding: 10px 0;
  border-bottom: 1px solid rgba(60, 184, 21, 0.15);
}

.header-note {
  background-color: var(--accent);
  color: white;
  font-size: 0.8rem;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-accent {
  background-color: var(--accent);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  transition: all 0.25s;
}

.btn-accent:hover {
  background-color: var(--hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(246, 80, 5, 0.15);
}

.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
}

.btn-outline-accent:hover {
  background-color: var(--hover);
  border-color: var(--hover);
  color: white;
}

.main-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.mini-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
}

.mini-thumb:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

.mini-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(60, 184, 21, 0.2);
}

.price-old {
  text-decoration: line-through;
  color: #8a8a8e;
  font-size: 1.4rem;
  margin-left: 12px;
}

.price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-icon-block img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-link {
  color: #333;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--hover);
}

.bg-soft-accent {
  background-color: var(--light-bg);
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  border-left: 6px solid var(--accent);
  padding-left: 20px;
}

.product-specs li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}

.similar-item {
  background: white;
  border-radius: 18px;
  padding: 16px 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.similar-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(60, 184, 21, 0.05);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #5e5e5e;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-thanks .modal-content {
  border-radius: 32px;
  border: none;
  background: white;
}

.modal-thanks .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-thanks .btn-close {
  background-color: var(--light-bg);
  border-radius: 50%;
  padding: 10px;
}

.qty-selector {
  max-width: 140px;
}
.products img {
  display: block;margin: 0 auto;
}
.contact-info {
  background-color: var(--accent);
  padding: 24px 16px;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.form-control {
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--hover);
}
.contact-info img {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 10px;
}
.contact-info .section-title {
  border-color: var(--hover);
}
@media screen and (max-width:991.98px) {
  .row.hero {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
@media screen and (max-width:767.98px) {
  .sticky-header .d-flex {
    flex-direction: column;
    row-gap: 6px;
  }
    .sticky-header {
      padding-top: 10px !important;
      padding-bottom: 10px !important;
    }
    .sticky-header .d-flex .text-end {
      text-align: center !important;
    }
}
.docs {
  word-break: break-word;
  padding: 50px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  color: var(--accent);
  text-decoration: none;
}