.bph_product_intro_simple {
  min-height: calc(100vh - 69px);
  background: radial-gradient(600px, rgba(59, 130, 246, 0.3), transparent) rgb(15, 23, 42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.bph_product_intro_simple.bg_dark_blue {
  background: radial-gradient(600px, rgba(59, 130, 246, 0.3), transparent) rgb(15, 23, 42);
}
.bph_product_intro_simple.bg_dark_green {
  background: radial-gradient(500px at 50% 300px, rgba(16, 185, 129, 0.35), transparent) rgb(2, 6, 23);
}
.bph_product_intro_simple.bg_dark_grey {
  background: radial-gradient(500px at 50% 200px, rgb(62, 62, 62), transparent) rgb(2, 6, 23);
}
.bph_product_intro_simple .bph_container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.bph_product_intro_simple .bph_product_wrapper {
  width: 100%;
}
.bph_product_intro_simple .bph_product_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bph_product_intro_simple .bph_product_image_column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.bph_product_intro_simple .bph_product_image_wrapper {
  position: relative;
  width: 100%;
  transition: opacity 0.3s ease;
}
.bph_product_intro_simple .bph_product_image_wrapper.loading {
  opacity: 0.5;
}
.bph_product_intro_simple .bph_product_image_wrapper.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bph_spin 0.8s linear infinite;
}
.bph_product_intro_simple .bph_product_image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.bph_product_intro_simple .bph_product_image:hover {
  transform: scale(1.05);
}
.bph_product_intro_simple .bph_product_info_column {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bph_product_intro_simple .bph_product_title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}
.bph_product_intro_simple .bph_product_short_description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 500px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.bph_product_intro_simple .bph_product_price .bph_price_value {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.bph_product_intro_simple .bph_product_variations {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bph_product_intro_simple .bph_variation_group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bph_product_intro_simple .bph_variation_label {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.bph_product_intro_simple .bph_variation_options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.bph_product_intro_simple .bph_variation_option {
  position: relative;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
}
.bph_product_intro_simple .bph_variation_option:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgb(255, 255, 255);
}
.bph_product_intro_simple .bph_variation_option.selected, .bph_product_intro_simple .bph_variation_option.active {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.bph_product_intro_simple .bph_variation_option.not_available {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.bph_product_intro_simple .bph_variation_option.not_available:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.bph_product_intro_simple .bph_variation_input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bph_product_intro_simple .bph_variation_text {
  font-weight: 500;
}
.bph_product_intro_simple .bph_product_action {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.bph_product_intro_simple .bph_cta_link {
  padding: 18px 50px;
  background-color: #00527a;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bph_product_intro_simple .bph_cta_link:hover {
  background-color: #003867;
  border: 2px solid #ffffff;
}
.bph_product_intro_simple .bph_cta_link:active {
  transform: translateY(0);
}
.bph_product_intro_simple .bph_cta_link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.bph_product_intro_simple .bph_cta_text {
  display: inline-block;
}
.bph_product_intro_simple .bph_cta_spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bph_spin 0.6s linear infinite;
}
.bph_product_intro_simple .bph_cta_spinner.active {
  display: inline-block;
}
.bph_product_intro_simple .bph_additional_link {
  padding: 18px 50px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bph_product_intro_simple .bph_additional_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgb(255, 255, 255);
}
.bph_product_intro_simple .bph_additional_link:active {
  transform: translateY(0);
}
.bph_product_intro_simple .preview_wrapper {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
}
.bph_product_intro_simple .preview_wrapper .current_selection {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.bph_product_intro_simple .preview_wrapper .product_image {
  margin-bottom: 15px;
  max-width: 300px;
}
.bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_title {
  text-align: right;
}
.bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_short_description {
  max-width: unset;
  text-align: right;
}
.bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_price {
  text-align: right;
}
.bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_variations .bph_variation_group {
  align-items: end;
}
.bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_action {
  justify-content: end;
}
@media (max-width: calc(992px - 1px)) {
  .bph_product_intro_simple .bph_product_grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding-bottom: 20px;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_image_column .bph_product_image_wrapper a picture img {
    max-width: 400px;
    margin: 0 auto;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_title {
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_short_description {
    text-align: center;
    margin: 0 auto;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_price {
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_variations {
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_variations .bph_variation_group {
    align-items: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_cta_btn {
    justify-content: space-between;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_additional_link {
    justify-content: space-between;
  }
  .bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column {
    order: 2;
  }
  .bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_title {
    text-align: center;
  }
  .bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_price {
    text-align: center;
  }
  .bph_product_intro_simple.img_right .bph_product_grid .bph_product_info_column .bph_product_action {
    justify-content: center;
  }
  .bph_product_intro_simple.img_right .bph_product_grid .bph_product_image_column {
    order: 1;
  }
}
@media (max-width: calc(768px - 1px)) {
  .bph_product_intro_simple {
    padding: 20px 15px;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_image_column .bph_product_image_wrapper a picture img {
    max-width: 80%;
    margin: 0 auto;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_title {
    text-align: center;
    font-size: 2.4rem;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_description {
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_variations {
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_variations .bph_variation_group {
    align-items: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_cta_btn {
    justify-content: space-between;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_additional_link {
    justify-content: space-between;
  }
}
@media (max-width: calc(576px - 1px)) {
  .bph_product_intro_simple {
    padding: 20px 15px;
    min-height: unset;
  }
  .bph_product_intro_simple .bph_product_grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 20px;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_cta_btn,
  .bph_product_intro_simple .bph_product_grid .bph_product_info_column .bph_product_action .bph_additional_link {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px 30px;
  }
  .bph_product_intro_simple .bph_product_info_column {
    gap: 10px;
  }
  .bph_product_intro_simple .bph_product_image_wrapper img {
    width: 70%;
    margin: 0 auto;
  }
  .bph_product_intro_simple .bph_product_title {
    font-size: 1.8rem;
  }
  .bph_product_intro_simple .bph_product_description {
    font-size: 1rem;
    text-align: center;
  }
  .bph_product_intro_simple .bph_product_price .bph_price_value {
    font-size: 2rem;
  }
  .bph_product_intro_simple .bph_product_variations {
    justify-content: center;
    align-items: center;
  }
  .bph_product_intro_simple .bph_product_variations .bph_variation_group {
    align-items: center;
  }
  .bph_product_intro_simple .bph_variation_label {
    font-size: 1rem;
  }
  .bph_product_intro_simple .bph_variation_option {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .bph_product_intro_simple .bph_product_image_column {
    padding: 20px;
  }
}
@keyframes bph_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bph_shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/*# sourceMappingURL=BPHProductIntroSimple.css.map */
