.data_product_b3 {
  width: 100%;
  max-width: 340px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 28px;
  border: 1px solid #f0f4f8;
  position: relative;
  transition: all 0.3s ease;
  height: fit-content;
  min-width: 300px;
}

.stock-badge_pp {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6b6b;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(255, 107, 107, 0.2);
}

.pricing_pp {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.main-price_pp {
  font-size: 36px;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.main-price_pp:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #7cc440;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.installment_pp {
  font-size: 16px;
  color: #7d8b99;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.action-buttons_pp {
  display: flex;
  gap: 14px;
/*  margin-bottom: 20px;*/
}

.add-to-cart_pp {
  background: #7cc440;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(124, 196, 64, 0.3);
}

.add-to-cart_pp:hover {
  background: #6db133;
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 7px 18px rgba(124, 196, 64, 0.4);*/
}

.add-to-cart_pp:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(124, 196, 64, 0.3);
}

.add-to-cart_pp .cart-text_pp {
  transition: transform 0.3s ease;
}

.add-to-cart_pp .cart-icon_pp {
  position: absolute;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.add-to-cart_pp .cart-icon_pp svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.add-to-cart_pp.added .cart-text_pp {
  transform: translateY(-30px);
  opacity: 0;
}

.add-to-cart_pp.added .cart-icon_pp {
  transform: translateY(0);
  opacity: 1;
  animation: cartBounce 0.6s;
}

@keyframes cartBounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-12px);}
  60% {transform: translateY(-6px);}
}

.icon-buttons_pp {
  display: flex;
}

.icon-btn_pp {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn_pp:hover {
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);*/
}

.heart-icon_pp {
  width: 28px;
  height: 28px;
  fill: transparent;
  stroke: #94a3b8;
  stroke-width: 1.5;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.like-btn:hover .heart-icon_pp {
  stroke: #7cc440;
}

.like-btn.active .heart-icon_pp {
  fill: #ff4757;
  stroke: #ff4757;
  transform: scale(1.15);
}

.like-btn.active {
  animation: heartBeat 0.6s ease;
  border-color: rgba(255, 71, 87, 0.2);
  background: rgba(255, 71, 87, 0.05);
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.notify-block {
  display: none;
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  margin: 20px 0;
  border: 1px solid #f1f5f9;
}

.notify-title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 14px;
}

.notify-form {
  display: flex;
  gap: 10px;
}

.notify-input {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.notify-input:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.15);
}

.notify-btn {
  background: #7cc440;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-btn:hover {
  background: #6db133;
}

.footer-note_pp {
  font-size: 12px;
  color: #94a3b3;
  text-align: center;
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  margin-top: 18px;
}

.add-to-cart_pp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.add-to-cart_pp:active::after {
  width: 300px;
  height: 300px;
}

/* Стили для состояния "Нет в наличии" */
.data_product_b3.out-of-stock .stock-badge_pp {
  display: block;
}

.data_product_b3.out-of-stock .pricing_pp {
  opacity: 0.6;
}

.data_product_b3.out-of-stock .main-price_pp {
  text-decoration: line-through;
  color: #94a3b8;
}

.data_product_b3.out-of-stock .main-price_pp:after {
  background: #e2e8f0;
}

.data_product_b3.out-of-stock .installment {
  color: #cbd5e1;
}

.data_product_b3.out-of-stock .add-to-cart_pp {
  background: #e2e8f0;
  color: #94a3b8;
  box-shadow: none;
  cursor: not-allowed;
}

.data_product_b3.out-of-stock .add-to-cart_pp:hover {
  transform: none;
  box-shadow: none;
}

.data_product_b3.out-of-stock .add-to-cart_pp .cart-icon_pp svg {
  stroke: #94a3b8;
}

.data_product_b3.out-of-stock .notify-block {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



























/*[for=add_to_cart] {
  position: fixed;bottom: 50px;background: #7cc440;width: 100%;height: 50px;align-items: center;justify-content: space-between;color: white;font-size: 14px;border-radius: 5px 5px 0px 0px;z-index: 1;padding: 15px;box-sizing: border-box;font-weight: 600;fill: white;
}

@media (min-width: 0px) {
  [for=add_to_cart] {
    display: flex;
  }
}
@media (min-width: 650px) {
  [for=add_to_cart] {
    display: none;
  }
}

[for=add_to_cart] > :nth-child(1 of div) {
  display: flex;align-items: center;
}

[for=add_to_cart] > :nth-child(1 of div) > :nth-child(1 of div) {
  width: 16px;height: 16px;display: flex;margin-right: 5px;
}*/

.alert_sale {
  box-shadow: 0 0 4px rgb(198, 198, 198);border-radius: 8px;padding: 15px;font-size: 13px;background: #e14c29;color: white;
}

.wrapper_select_model {
  margin-top: 20px;font-size: 17px;
}

.wrapper_select_model > :nth-child(1 of div) {
  font-weight: 600;
  margin-bottom: 10px;
}

.select_model_list {
/*  display: flex;padding-left: 10px;padding-right: 10px;*/
}

.select_model_list > div {
	padding: 1px;display: flex;border-width: 2px; border-style: solid; border-color: #7cc44000; margin-right: 5px;width: 60px;height: 60px;border-radius: 5px;overflow: hidden;min-width: 60px;min-height: 60px;display: inline-block;
}

[for=select_model].active {
  border-color: #7cc440;
}

.d_p_sizes {
  box-shadow: 0 0 4px rgb(198, 198, 198);margin-top: 8px;border-radius: 8px;padding: 15px;font-size: 13px;color: #737373;background: white;padding-left: 0px;padding-right: 0px;
}

.d_p_sizes > :nth-child(1 of div) {
  font-weight: 600;font-size: 14px;margin-bottom: 10px;padding-left: 15px;
}

.d_p_sizes_list {
  display: flex;padding-left: 15px;
  padding-right: 15px;
}

.d_p_sizes_list > div {
  font-size: 16px;padding: 5px;border-width: 1px;border-style: solid;margin-right: 5px;border-radius: 25px;min-width: 35px;display: flex;align-items: center;justify-content: center;box-shadow: 0 0 2px rgba(125, 125, 125, 0.57);margin-top: 3px;margin-bottom: 3px;border-color: #a4a6a3;
}

[for=select_size].active {
  border-color: #7cc440;
  background: #7cc440;
  color: white;
}

.d_p_info {
  box-shadow: 0 0 4px rgb(198, 198, 198);margin-top: 8px;border-radius: 8px;padding: 15px;font-size: 13px;color: #737373;background: white;
}

.d_p_info > :nth-child(1 of div) {
  font-weight: 600;font-size: 14px;margin-bottom: 10px;
}

.d_p_info_list {
  display: grid;gap: 5px 5px;
}

.d_p_info_list > div {
  display: flex;justify-content: space-between;
}


.wrapper_data_product {
  height: 100%;
}
@media (min-width: 0px) {
  .wrapper_data_product {
    display: block;
    gap: 0em 2em;
  }
}
@media (min-width: 650px) {
  .wrapper_data_product {
    display: flex;
    gap: 0em 2em;
  }
}
@media (min-width: 800px) {
  .wrapper_data_product {
    gap: 0em 4em;
  }
}
/*@media (min-width: 930px) {
  .wrapper_data_product {
    gap: 0em 4em;
  }
}*/


.data_product_b2 {
  font-size: 14px;
}


@media (min-width: 650px) {
  .data_product_b2 {
    min-width: 40%;
  }
}
@media (min-width: 1050px) {
  .data_product_b2 {
    min-width: 25%;
  }
}



















@media (max-width: 0px) {
  .data_product_b3 {
    margin-top: 25px;

  }
}
@media (max-width: 1100px) {
  .data_product_b3 {
    margin-left: 15px;
    margin-right: 15px;
    min-width: calc(100% - 30px);
    box-sizing: border-box;
  }
}


@media (min-width: 1100px) {
  .data_product_b3 {
    top: 100px;
    margin-top: 0px;
    position: sticky;
  }
}









.data_product_b1 > div {
  position: sticky;top: 90px;border-radius: 5px;
}

.params_product > div {
  gap: 0px 60px;display: flex;justify-content: space-between;border-bottom-width: 1px;border-bottom-style: solid;padding-bottom: 15px;border-color: #dbdbdb;padding-top: 15px;
}

.params_product > div > :nth-child(1 of div) {
  color: #939393;
}

.params_product > div > :nth-child(2 of div) {
  color: #333;
}

@media (min-width: 0px) {
  .wrapper_params_product {
    margin-top: 25px;
  }
}
@media (min-width: 650px) {
  .wrapper_params_product {
    margin-top: 0px;
  }
}

.title_data_product_b2 {
  font-weight: 600;font-size: 18px;margin-bottom: 10px;
}


.add_to_cart_pc {
  width: 100%;color: #fff;background: #7cc440;border-radius: 3px;padding: 10px;font-size: 14px;box-shadow: 0 0 1px rgba(0, 0, 0, 0.34);display: flex;align-items: center;justify-content: center;font-weight: 600;box-sizing: border-box;padding-left: 0px;padding-right: 0px;
}

.data_product_b3_data_info_post {
  display: grid;gap: 10px 0px;color: #8c8c8c;fill: #8c8c8c;font-size: 14px;
}

.data_product_b3_title_info_post {
  font-size: 20px;font-weight: 600;color: #000;margin-top: 10px;display: flex;justify-content: space-between;
}
.data_product_b3_title_info_post > :nth-child(2 of div) {
  text-decoration: underline;font-weight: 400;font-size: 16px;color: #7faf57;
}

.data_product_b3_data_info_post > div {
  display: flex;align-items: center;gap: 0px 7px;
}

.info_oferta {
  font-size: 12px;margin-top: 20px;color: #b7b7b7;font-style: italic;
}

.data_product_b3_data_info_post > div > :nth-child(1 of div) {
  display: flex;
}

.data_product_b3_data_info_post > div > :nth-child(1 of div) > svg {
  width: 17px;height: 17px;
}

.wrapper_user_size {
  align-items: center;margin-top: 25px;font-weight: 600;font-size: 16px;color: #686868;fill: #686868;gap: 5px;
}

.wrapper_user_size > :nth-child(1 of div) {
  display: flex; text-decoration: underline;gap: 10px; align-items: center;
}

.wrapper_user_size > :nth-child(1 of div) > :nth-child(2 of div) {
  width: 17px;  height: 17px;
}

.wrapper_inputs_user_size {
  display: none;
}

.inputs_user_size {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  margin-top: 10px;
}

.inputs_user_size > input {
  width: inherit;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

/*.alert_outh_pp {
  margin-bottom: 10px;font-weight: 600; display: none;
}*/

/*.price_pp1 {
  color: #7cc440;font-weight: 500;font-size: 23px;
}*/

/*.price_pp_dolyami {
  font-size: 14px;color: #fff;background: #3f3f3fb5;width: fit-content;padding: 3px;padding-right: 3px;padding-left: 3px;border-radius: 3px;padding-left: 5px;padding-right: 5px;
}*/

/*.group_btn_pp {
  display: flex;gap: 10px;width: 100%;align-items: center;
}*/

/*[for=like_product] {
  width: 27px; height: 27px;stroke-width: 40px;fill: #767676;stroke: #767676;display: none;
}*/

/*[for=dislike_product] {
  width: 27px; height: 27px;fill: #7cc440;display: none;
}

[for=like_product].active, [for=dislike_product].active {
  display: flex;
}*/

/*.pp_cashback {
  font-weight: 600;background: #add1f1;color: #4d5cad;padding: 10px;border-radius: 10px;display: flex;justify-content: center;
}*/










