@font-face {
  font-family: "Manrope";
  src: url(fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --accent: #088178;
  --accent-light: #d1f2ef;
  --accent-dark: #05635c;
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 80px;
  font-family: "Manrope", sans-serif;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  padding: 12px 0;
  border-bottom: 2px solid var(--accent-light);
}
img {
  max-width: 100%;
}
.header-logo {
  width: 150px;
}
.advertising-note {
  font-size: 0.85rem;
  color: #4a4a4a;
  background: #f8f9fa;
  padding: 4px 12px;
  border-radius: 30px;
  border-left: 4px solid var(--accent);
}
.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}
.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background-color: var(--accent);
  color: white;
}
.text-accent {
  color: var(--accent) !important;
}
.bg-accent-light {
  background-color: var(--accent-light);
}
.border-accent {
  border-color: var(--accent) !important;
}
.main-slider-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #f4f4f4;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}
.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.thumbnail-item {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f0f0f0;
  transition: border 0.2s;
}
.thumbnail-item.active {
  border-color: var(--accent);
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  max-width: 140px;
  border: 1px solid #ced4da;
  border-radius: 40px;
  overflow: hidden;
}
.quantity-btn {
  width: 40px;
  height: 44px;
  background: white;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s;
}
.quantity-btn:hover {
  background: var(--accent-light);
}
.quantity-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  font-weight: 500;
  font-size: 1.1rem;
  height: 44px;
}
.quantity-input:focus {
  outline: none;
}
.list-group-item {
  padding: 7px;
}
.product-card {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 16px;
  transition: all 0.2s;
  height: 100%;
  background: white;
}
.product-card:hover {
  box-shadow: 0 10px 25px rgba(8, 129, 120, 0.08);
  border-color: var(--accent-light);
}
.product-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #e9ecef;
}
footer a {
  color: #088178;
  transition: 0.3s;
  text-decoration: none;
}
footer a:hover {
  color: #2d2d2d;
}
.footer-logo {
  height: 32px;
  margin-bottom: 16px;
}
.footer-link {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-link:hover {
  color: var(--accent);
}
.disclaimer-text {
  font-size: 0.8rem;
  color: #5e5e5e;
  line-height: 1.5;
}
.section-title {
  font-weight: 600;
  margin-bottom: 24px;
  border-left: 5px solid var(--accent);
  padding-left: 18px;
}
.old-price {
  text-decoration: line-through;
  color: #6c757d;
  margin-left: 10px;
  font-size: 1.2rem;
}
.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}
@media screen and (max-width: 767.98px) {
  .sticky-header .d-flex {
    flex-direction: column;
    row-gap: 4px;
  }
  .advertising-note {
    padding: 0;
    border: none;
    background-color: transparent;
    text-align: center;
  }
}
@media screen and (max-width: 575.98px) {
  .list-group-item {
    flex-direction: column;
  }
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup a {
  color: #088178;
  text-decoration: none;
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
#cookPopup.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0 150px
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px
}
.thanks p {
  text-align: center;
  font-size: 18px
}
.thanks p.thanks-text {
  font-weight: 700;
  color: #088178;
}
.docs {
  word-break: break-word;
  padding: 40px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px
}
.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 {
  text-decoration: none !important;
  color: #088178;
  transition: 0.3s;
}
.docs a:hover {
  color: #05635c;
}