.flagship {
  position: relative;
  width: 100%;
  background-color: #FAFAFA;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 5rem 2rem;
  box-sizing: border-box;
  color: var(--black);
  overflow: hidden;
}

.flagship__bg-img-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flagship__bg-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.flagship__container {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.flagship__left {
  max-width: 27rem;
  width: 100%;
}

.flagship__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 1.25rem;
}

.flagship__title {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin: 0 0 1.25rem 0;
  color: var(--black);
}

.flagship__title strong {
  color: var(--red);
}

.flagship__desc {
  font-size: 1.25rem;
  color: var(--grey-text-light);
  margin-bottom: 4.25rem;
}

.flagship__accordion {
  border-top: 1px solid #B8B8B8;
  margin-bottom: 2.5rem;
  background-color: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 8px;
}

.flagship__acc-item {
  border-bottom: 1px solid #B8B8B8;
}

.flagship__acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0.5rem;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
}

.flagship__acc-header::-webkit-details-marker {
  display: none;
}

.flagship__acc-icon svg{
  width: 0.9375rem;
  height: 0.9375rem;
  fill: #A5A5A5;
}

.flagship__acc-body {
  padding: 0 0.5rem 0.875rem 0.5rem;
  font-size: 1.125rem;
  color: var(--grey-text-light);
}

.flagship__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flagship__link {
  font-size: 1.25rem;
  color: var(--grey-text-light);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.flagship__right {
  max-width: 28rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flagship__price-block {
  background-color: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.flagship__price-label {
  font-size: 1.25rem;
  color: var(--black);
  display: block;
  margin-bottom: 1.25rem;
}

.flagship__prices {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.flagship__price-current {
  font-size: 4.375rem;
  color: var(--black);
  text-wrap: nowrap;
  letter-spacing: -0.07em;
  line-height: 100%;
}

.flagship__price-old {
  font-size: 2.625rem;
  color: #A6A6A6;
  text-decoration: line-through;
  letter-spacing: -0.07em;
  line-height: 100%;
  text-wrap: nowrap;
}

.flagship__dose-info {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--black);
  margin: 0;
}

.flagship__dose-sub {
  color: var(--grey-text-light);
}

.flagship__disclaimer {
  font-size: 1rem;
  color: var(--grey-text-light);
}
.btn.product-btn{
  width: 100%;
}

@media (max-width: 992px) {
  .flagship__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .flagship__bg-img-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    height: auto;
    max-height: 350px;
    margin: 2rem auto;
  }

  .flagship__bg-img {
    max-width: 100%;
    height: auto;
  }

  .flagship__left,
  .flagship__right {
    max-width: 100%;
  }
  .flagship__title {
    font-size: 2.5rem;
  }
  .flagship__link {
    font-size: 0.9375rem;
   }
   .flagship__links {
    gap: 0.5rem;
   }
   .flagship__price-block{
    padding: 0;
   }
   .flagship__price-current {
    font-size: 2.8rem;
    }

    .flagship__price-old {
    font-size: 2.225rem;
    }
}