.payment_wrapper {
  width: 100%;
  min-width: 400px;
}

.payment-dashboard  {
  margin: 0;
  padding: 0;
}

.payment-dashboard {
  width: 100%;
}

.payment-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 24px;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}

.payment-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.total-amount {
  display: flex;
  align-items: baseline;
}

.total-amount .amount {
  font-size: 24px;
  font-weight: 700;
  margin-right: 4px;
}

.total-amount .currency {
  font-size: 18px;
  color: #6B7280;
}

/* Стили для карточки доставки */
.delivery-card {
  background: #F0F9E8;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.edit-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #7CC440;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}

.edit-btn:hover {
  background: rgba(124, 196, 64, 0.1);
}

.edit-btn svg {
  flex-shrink: 0;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-icon svg {
  width: 20px;
  height: 20px;
}

.delivery-text p {
  font-weight: 500;
  margin-bottom: 2px;
}

.delivery-address {
  font-size: 14px;
  color: #6B7280;
}



/* Стили для методов оплаты */
.payment-methods {
  margin-bottom: 24px;
}

.payment-methods h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.method-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.method-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.method-card:hover {
  border-color: #7CC440;
}

.method-card.active {
  border: 2px solid #7CC440;
  background: #F0F9E8;
}

.method-card.active::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #7CC440 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.method-badge {
  position: absolute;
  top: -6px;
  left: 12px;
  background: #7CC440;
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 12px;
}

.method-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.method-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.method-icon svg {
  width: 24px;
  height: 24px;
}

.method-info {
  flex: 1;
}

.method-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.method-info p {
  font-size: 14px;
  color: #6B7280;
}

.method-balance, .method-cashback, .method-installments {
  font-size: 14px;
  font-weight: 500;
}

.method-balance {
  color: #6B7280;
}

.cashback-badge {
  background: #EFF6FF;
  color: #7CC440;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 13px;
}

.installments-badge {
  background: #ECFDF5;
  color: #10B981;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 13px;
}

.method-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #E5E7EB;
  font-size: 13px;
  color: #6B7280;
  display: none;
}

.method-card.active .method-details {
  display: block;
}

.balance-progress {
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #7CC440;
  border-radius: 3px;
}

/* Кнопка оплаты */
.pay-now-btn {
  width: 100%;
  background: #7CC440;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.pay-now-btn:hover {
  background: #5EA62B;
}

.pay-amount {
  font-weight: 700;
}

/* Футер */
.payment-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6B7280;
}

.payment-footer a {
  color: #7CC440;
  text-decoration: none;
}

.payment-footer a:hover {
  text-decoration: underline;
}

.payment-footer svg {
  flex-shrink: 0;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.method-card {
  animation: fadeIn 0.3s ease-out forwards;
}

.method-card:nth-child(1) { animation-delay: 0.1s; }
.method-card:nth-child(2) { animation-delay: 0.2s; }
.method-card:nth-child(3) { animation-delay: 0.3s; }
.method-card:nth-child(4) { animation-delay: 0.4s; }








.product_cart {
  display: flex;
  width: 100%;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 20px;
}

/* Чекбокс */
.checkbox_cart {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}


.checkbox_cart::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 25px;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.63), 0px 3px 5px rgba(0,0,0,0.05);
  will-change: transform;
  transform: translateZ(0);
}






.checkbox_location {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-width: 0px;
}

.checkbox_cart.active .checkbox_location {
  background: #7cc440;
  border-color: #7cc440;
  animation: pulse_checkbox 0.6s ease;
  border-radius: 2px;
  min-width: 20px;
  min-height: 20px;
  border-width: 0px;
  z-index: 1;
}

.checkbox_mark svg {
  width: 16px;
  height: 16px;
}

.checkbox_mark path {
  fill: white;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.checkbox_cart.active .checkbox_mark path {
  opacity: 1;
}

@keyframes pulse_checkbox {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* Изображение */
.product_image_cart {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.product_image_cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  max-width: 120px;
  max-height: 140px;
  border-radius: 10px;
  min-width: 120px;
  min-height: 140px;
}

.quick_view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  backdrop-filter: blur(4px);
  border: 1px solid #e0e0e0;
}

.product_image_cart:hover .quick_view {
  opacity: 1;
}

/* Контент */
.product_content {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p_c_name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.p_c_size, .p_c_color {
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.p_c_size::before, .p_c_color::before {
  content: "•";
  margin-right: 8px;
  color: #7cc440;
}

/* Цена и количество */
.p_c_num_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.p_c_price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.controls_cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity_controls_cart {
  display: flex;
  align-items: center;
  background: #e9f5df;
  border-radius: 50px;
  padding: 4px;
}

.quantity_button_cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.quantity_button_cart:hover {
  background: #7cc440;
}

.quantity_button_cart:hover svg path {
  fill: white;
}

.quantity_button_cart svg {
  width: 16px;
  height: 16px;
}

.quantity_button_cart svg path {
  fill: #7cc440;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quantity_display {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 0 8px;
}

.delete_button_cart {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delete_button_cart:hover {
  background: rgba(255, 82, 82, 0.1);
}

.delete_button_cart svg {
  width: 18px;
  height: 18px;
}

.delete_button_cart svg path {
  fill: #ff5252;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delete_button_cart:hover svg path {
  fill: #e00000;
}

/* Адаптивность */
@media (max-width: 500px) {
  .product_cart {
    flex-direction: column;
    box-shadow: 0 0px 6px rgba(0,0,0,.08); margin-left: 10px; margin-right: 10px; width: calc(100% - 20px);
  }
            
  .product_image_cart, .product_content {
    width: 100%;
  }
            
  .product_image_cart {
    height: 220px;
  }
            
  .p_c_num_price {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: auto;
  }
            
  .controls_cart {
    width: 100%;
    justify-content: space-between;
  }

  .payment_wrapper {
    min-width: fit-content;
    width: calc(100% - 30px);
    max-width: none;
  }
}







.null_cart_wrapper {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.null_cart_wrapper > svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #7cc440;
  position: relative;
}

.null_cart_wrapper > h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.null_cart_wrapper > p {
  color: #718096;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-group_null_cart {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button_null_cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  color: #7cc440;
  text-decoration: none;
  border: 1px solid #7cc440;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-button_null_cart.fill {
  background: #7cc440;
  color: white;
}

.cta-button_null_cart:hover {
  background: rgba(124, 196, 64, 0.05);
  transform: translateY(-1px);
}

.cta-button_null_cart.fill:hover {
  background: #6bb036;
}

.divider {
  height: 1px;
  background: #E2E8F0;
  margin: 3rem 0;
}

.recommendations {
  text-align: left;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #718096;
  margin-bottom: 1.5rem;
}


@media (max-width: 640px) {
  h1 {
    font-size: 1.5rem;
  }
            
  .cta-group_null_cart {
    flex-direction: column;
  }
            
  .cta-button_null_cart {
    justify-content: center;
  }
}










.wrapper_data_cart {
  gap: 0em 4em;
}

@media (min-width: 0px) {
  .wrapper_data_cart {
    display: block;
  }
}
@media (min-width: 1000px) {
  .wrapper_data_cart {
    display: flex;
  }
}

.product_list_cart {
  overflow: hidden;
  width: 100%;
}



.wrapper_product_list_cart_not_stock {
  margin-top: 30px;
}

.cart_num {
  color: #b1b1b1;font-size: 20px;
}










.app-container_modal_delivery {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding: 20px;
}
        
.app-header_modal_delivery {
  margin-bottom: 40px;
}
        
.app-logo_modal_delivery {
  font-size: 2.8rem;
  color: #7cc440;
  margin-bottom: 15px;
}
        
h1.title_modal_delivery {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
        
.subtitle_modal_delivery {
  font-size: 1.1rem;
  color: #5e6d74;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.5;
  font-weight: 300;
}
        
.btn-open_modal_delivery {
  background: #7cc440;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(124, 196, 64, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
        
.btn-open_modal_delivery:hover {
  background: #6ab035;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(124, 196, 64, 0.25);
}
        
.modal-overlay_modal_delivery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
        
.modal-overlay_modal_delivery.active {
  opacity: 1;
  pointer-events: all;
}
        
.modal_modal_delivery {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: 95%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}


        
.modal-overlay_modal_delivery.active .modal_modal_delivery {
  transform: translateY(0);
}

@media (max-width: 700px) {
  .modal_modal_delivery {
    max-height: 75vh;
    transform: translateY(-3vh) !important;
  }
}
        
.modal-header_modal_delivery {
  padding: 20px 25px;
  color: #2d3436;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9f0e4;
}
        
.modal-title_modal_delivery {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
        
.material-icons {
  font-size: 1.4em;
  vertical-align: middle;
}
        
.btn-close_modal_delivery {
  background: transparent;
  color: #a0b2a8;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
        
.btn-close_modal_delivery:hover {
  color: #7cc440;
  background: rgba(124, 196, 64, 0.1);
}
        
.delivery-toggle_modal_delivery {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: #f8fcf9;
  border-bottom: 1px solid #e9f0e4;
}
        
.toggle-btn_modal_delivery {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  border: 1px solid #d0e6c0;
  color: #5e6d74;
  display: flex;
  align-items: center;
  gap: 8px;
}
        
.toggle-btn_modal_delivery.active {
  background: #7cc440;
  color: white;
  border-color: #7cc440;
}
        
.toggle-btn_modal_delivery:hover:not(.active) {
  border-color: #7cc440;
  color: #7cc440;
}
        
.modal-content_modal_delivery {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  background: #ffffff;
}
        
.progress-bar_modal_delivery {
  height: 4px;
  background: #e5f0dd;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
        
.progress_modal_delivery {
  height: 100%;
  background: #7cc440;
  width: 33%;
  transition: width 0.3s ease;
}
        
.section-title_modal_delivery {
  font-size: 1.2rem;
  color: #2d3436;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9f0e4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
        
.option-grid_modal_delivery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
        
.option-card_modal_delivery {
  border: 1px solid #e0e9db;
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  position: relative;
  text-align: left;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}
        
.option-card_modal_delivery:hover {
  border-color: #7cc440;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(124, 196, 64, 0.1);
}
        
.option-card_modal_delivery.selected {
  border-color: #7cc440;
  background: rgba(124, 196, 64, 0.05);
  box-shadow: 0 0 0 2px rgba(124, 196, 64, 0.1);
}
        
.option-card_modal_delivery.selected::after {
  content: 'done';
  font-family: 'Material Icons';
  position: absolute;
  top: 12px;
  right: 12px;
  color: #7cc440;
  font-size: 1.2rem;
}
        
.option-header_modal_delivery {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
        
.option-icon_modal_delivery {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 196, 64, 0.1);
  color: #7cc440;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
        
.option-name_modal_delivery {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2d3436;
  line-height: 1.3;
}
        
.option-details_modal_delivery {
  font-size: 0.9rem;
  color: #5e6d74;
  line-height: 1.5;
  margin-bottom: 8px;
  flex-grow: 1;
}
        
.option-details_modal_delivery p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
        
.option-price_modal_delivery {
  font-weight: 500;
  color: #7cc440;
  /*background: rgba(124, 196, 64, 0.08);*/
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 8px;
  align-self: flex-start;
}
        
.form-container_modal_delivery {
  /*background: #f8fcf9;*/
  border-radius: 14px;
  padding: 18px;
  display: none;
  border: 1px solid #e0e9db;
  margin-top: 16px;
}
        
.form-container_modal_delivery.active {
  display: block;
}
        
        

        
.info-text_modal_delivery {
  color: #5e6d74;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 16px;
  padding: 10px;
  background: rgba(124, 196, 64, 0.03);
  border-radius: 10px;
  border: 1px dashed #d0e6c0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
        
/* Компактные кнопки в футере */
.modal-footer_modal_delivery {
  display: flex;
  justify-content: flex-end;
  padding: 20px 25px;
  background: #f8fcf9;
  border-top: 1px solid #e9f0e4;
  gap: 12px;
}
        
.btn_modal_delivery {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}
        
.btn-cancel_modal_delivery {
  background: #f1f8f0;
  color: #5e6d74;
  border: 1px solid #d0e6c0;
}
        
.btn-cancel_modal_delivery:hover {
  background: #e5f0dd;
  color: #2d3436;
}
        
.btn-confirm_modal_delivery {
  background: #7cc440;
  color: white;
  box-shadow: 0 3px 8px rgba(124, 196, 64, 0.2);
}
        
.btn-confirm_modal_delivery:hover {
  background: #6ab035;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(124, 196, 64, 0.25);
}
        
.btn-confirm_modal_delivery:disabled {
  background: #e5f0dd;
  cursor: not-allowed;
}
        
/* Адаптивность */
@media (max-width: 900px) {
  .option-grid_modal_delivery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
        
@media (max-width: 768px) {
  .form-grid_modal_delivery {
    grid-template-columns: 1fr;
  }
            
  .form-group_modal_delivery.full-width {
    grid-column: span 1;
  }
            
  .option-grid_modal_delivery {
    grid-template-columns: 1fr 1fr;
  }
            
  .modal-footer_modal_delivery {
    justify-content: center;
  }
            
  h1.title_modal_delivery {
    font-size: 2rem;
  }
            
  .modal-title_modal_delivery {
    font-size: 1.3rem;
  }
}
        
@media (max-width: 480px) {
  .delivery-toggle_modal_delivery {
    flex-direction: column;
  }
            
  .toggle-btn_modal_delivery {
    width: 100%;
    justify-content: center;
  }
            
  .app-logo_modal_delivery {
    font-size: 2.2rem;
  }
            
  h1.title_modal_delivery {
    font-size: 1.6rem;
  }
            
  .modal-header_modal_delivery {
    padding: 16px 20px;
  }
            
  .modal-content_modal_delivery {
    padding: 16px;
  }
            
  .section-title_modal_delivery {
    font-size: 1.1rem;
  }
            
  .option-grid_modal_delivery {
    grid-template-columns: 1fr;
  }
            
  .btn-open_modal_delivery {
    padding: 14px 30px;
    font-size: 1rem;
  }
            
  .btn_modal_delivery {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}






/*data user delivery*/
.form-title_modal_delivery {
  margin-left: auto;
  max-width: 600px;
  margin-right: auto;
}

/*address*/
.address-container_data_user_delivery {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
}
        
.address-label_data_user_delivery {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.address-input_data_user_delivery {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2c3e50;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
        
.address-input_data_user_delivery:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.2);
  background: white;
}
        
.address-input_data_user_delivery::placeholder {
  color: #a0aec0;
}
        
.suggestions-container_data_user_delivery {
  position: absolute;
  width: 100%;
  z-index: 1000;
  margin-top: 5px;
}
        
.suggestions_data_user_delivery {
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: none;
}
        
.suggestion-item_data_user_delivery {
  padding: 12px 18px;
  border-bottom: 1px solid #edf2f7;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  color: #2d3748;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.suggestion-item_data_user_delivery:last-child {
  border-bottom: none;
}
        
.suggestion-item_data_user_delivery:hover {
  background-color: #f7fafc;
}
        
.suggestion-item_data_user_delivery.selected {
  background-color: rgba(124, 196, 64, 0.1);
}
        
.suggestion-icon_data_user_delivery {
  margin-right: 12px;
  color: #7cc440;
  min-width: 20px;
}
        
.status_data_user_delivery {
  display: flex;
  align-items: center;
  margin-top: 8px;
  color: #718096;
  font-size: 14px;
  gap: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.status-dot_data_user_delivery {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #a0aec0;
}
        
.status-dot_data_user_delivery.active {
  background: #7cc440;
  animation: pulse_data_user_delivery 1.5s infinite;
}
        
@keyframes pulse_data_user_delivery {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
        

/*phone*/

.phone-container_data_user_phone {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.phone-label_data_user_phone {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}
        
.phone-input_data_user_phone {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2c3e50;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
        
.phone-input_data_user_phone:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.2);
  background: white;
}
        
.phone-input_data_user_phone::placeholder {
  color: #a0aec0;
  letter-spacing: normal;
}
        
.status_data_user_phone {
  display: flex;
  align-items: center;
  margin-top: 12px;
  color: #718096;
  font-size: 14px;
  gap: 10px;
  height: 20px;
}
        
.status-dot_data_user_phone {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #a0aec0;
  transition: all 0.3s ease;
}
        
.status-dot_data_user_phone.valid {
  background: #7cc440;
}
        
.status-dot_data_user_phone.invalid {
  background: #e74c3c;
}
        

/*FIO*/
.fio-container_data_user_fio {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.fio-label_data_user_fio {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}
        
.fio-input_data_user_fio {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2c3e50;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}
        
.fio-input_data_user_fio:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.2);
  background: white;
}
        
.fio-input_data_user_fio::placeholder {
  color: #a0aec0;
}
        
.status_data_user_fio {
  display: flex;
  align-items: center;
  margin-top: 12px;
  color: #718096;
  font-size: 14px;
  gap: 10px;
  height: 20px;
}
        
.status-dot_data_user_fio {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #a0aec0;
  transition: all 0.3s ease;
}
        
.status-dot_data_user_fio.valid {
  background: #7cc440;
}
        
.status-dot_data_user_fio.invalid {
  background: #e74c3c;
}
        


/*passport*/

.passport-container_data_user_passport {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.passport-label_data_user_passport {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}
        
.passport-input_data_user_passport {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2c3e50;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  letter-spacing: 1px;
  text-align: center;
  box-sizing: border-box;
}
        
.passport-input_data_user_passport:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.2);
  background: white;
}
        
.passport-input_data_user_passport::placeholder {
  color: #a0aec0;
  letter-spacing: normal;
}
        
.status_data_user_passport {
  display: flex;
  align-items: center;
  margin-top: 12px;
  color: #718096;
  font-size: 14px;
  gap: 10px;
  height: 20px;
  justify-content: center;
}
        
.status-dot_data_user_passport {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #a0aec0;
  transition: all 0.3s ease;
}
        
.status-dot_data_user_passport.valid {
  background: #7cc440;
}
        
.status-dot_data_user_passport.invalid {
  background: #e74c3c;
}

.passport-format_data_user_passport {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: rgba(124, 196, 64, 0.1);
  border-radius: 8px;
  color: #2c3e50;
  font-size: 14px;
  font-weight: 500;
}



/*index*/

.postindex-container_data_user_postindex {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
.postindex-label_data_user_postindex {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}
        
.postindex-input_data_user_postindex {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2c3e50;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  letter-spacing: 1px;
  text-align: center;
  box-sizing: border-box;
}
        
.postindex-input_data_user_postindex:focus {
  border-color: #7cc440;
  box-shadow: 0 0 0 3px rgba(124, 196, 64, 0.2);
  background: white;
}
        
.postindex-input_data_user_postindex::placeholder {
  color: #a0aec0;
  letter-spacing: normal;
}
        
.status_data_user_postindex {
  display: flex;
  align-items: center;
  margin-top: 12px;
  color: #718096;
  font-size: 14px;
  gap: 10px;
  height: 20px;
  justify-content: center;
}
        
.status-dot_data_user_postindex {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #a0aec0;
  transition: all 0.3s ease;
}
        
.status-dot_data_user_postindex.valid {
  background: #7cc440;
}
        
.status-dot_data_user_postindex.invalid {
  background: #e74c3c;
}
        
.postindex-format_data_user_postindex {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: rgba(124, 196, 64, 0.1);
  border-radius: 8px;
  color: #2c3e50;
  font-size: 14px;
  font-weight: 500;
}
        


.delivery-price {
  font-size: 14px;
}


/*modal qr*/
.overlay_modal_qr_pay {
      position: fixed;
      top: 0;
      left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        z-index: 1010;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(5px);
        overflow-y: auto;
      }
        
      .overlay_modal_qr_pay.active {
        opacity: 1;
        visibility: visible;
      }
        
      .modal_modal_qr_pay {
        background: white;
        border-radius: 28px;
        width: 100%;
        max-width: 460px;
        padding: 50px 40px 40px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.4);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15),0 0 0 1px rgba(124, 196, 64, 0.1);
        margin: 40px 0;
        margin-left: 10px;
        margin-right: 10px;
      }
        
      .overlay_modal_qr_pay.active .modal_modal_qr_pay {
        opacity: 1;
      }
        
      .modal_modal_qr_pay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #7cc440, #5a9c2e);
      }
        
      .close-btn_modal_qr_pay {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        background: #f8fafc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #718096;
        font-size: 20px;
        z-index: 10;
        border: 1px solid #e2e8f0;
      }
        
      .close-btn_modal_qr_pay:hover {
        background: #f1f5f9;
        transform: rotate(90deg);
        color: #1a202c;
      }
        
      .title_modal_qr_pay {
        font-size: 32px;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
        position: relative;
        z-index: 2;
      }
        
      .subtitle_modal_qr_pay {
        color: #718096;
        font-size: 17px;
        max-width: 340px;
        margin: 0 auto 30px;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }
        
      .qr-container_modal_qr_pay {
        position: relative;
        background: white;
        border-radius: 20px;
        width: 260px;
        height: 260px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07),0 0 0 1px #e2e8f0;
        overflow: hidden;
        padding: 15px;
      }

      .qr-container_modal_qr_pay > svg {
        width: 100%;
        height: 100%;
      }
        

        
      .qr-pixel_modal_qr_pay {
        background: white;
        border-radius: 3px;
      }
        
      .qr-pixel_modal_qr_pay.filled {
        background: #1a202c;
      }
        
        
        
      .payment-options_modal_qr_pay {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 auto 30px;
        max-width: 320px;
      }
        
      .mobile-link_modal_qr_pay {
        background: #f0fdf4;
        border-radius: 16px;
        padding: 18px;
        border: 1px solid #d5edcc;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: #2d6319;
        font-weight: 600;
        text-decoration: none;
      }
        
      .mobile-link_modal_qr_pay:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(124, 196, 64, 0.2);
        background: #e8f9e0;
        border-color: #7cc440;
      }
        
      .timer-container_modal_qr_pay {
        position: relative;
        background: #f8fafc;
        border-radius: 18px;
        padding: 20px;
        margin: 0 auto 25px;
        width: 220px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      }
        
      .timer-label_modal_qr_pay {
        text-align: center;
        color: #718096;
        font-size: 14px;
        margin-bottom: 12px;
        font-weight: 500;
      }
        
      .timer_modal_qr_pay {
        font-size: 36px;
        font-weight: 700;
        color: #1a202c;
        text-align: center;
        font-feature-settings: "tnum";
        font-variant-numeric: tabular-nums;
        letter-spacing: 2px;
      }
        
      .timer_modal_qr_pay.warning {
        color: #e53e3e;
        animation: pulse_modal_qr_pay 1s infinite;
      }
        
      .info-section_modal_qr_pay {
        background: #f8fafc;
        border-radius: 18px;
        padding: 25px;
        margin: 25px 0;
        border: 1px solid #e2e8f0;
      }
        
      .info-row_modal_qr_pay {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
      }
        
      .info-label_modal_qr_pay {
        color: #718096;
        font-size: 15px;
      }
        
      .info-value_modal_qr_pay {
        color: #1a202c;
        font-weight: 600;
        font-size: 15px;
      }
        
      .highlight_modal_qr_pay {
        color: #7cc440;
        font-weight: 700;
      }
        
      .instructions_modal_qr_pay {
        background: #f0fdf4;
        border-radius: 16px;
        padding: 22px;
        margin-top: 25px;
        border: 1px solid #d5edcc;
        text-align: left;
      }
        
      .instructions-title_modal_qr_pay {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #2d6319;
        font-weight: 600;
        margin-bottom: 18px;
        font-size: 16px;
      }
        
      .instructions-list_modal_qr_pay {
        padding-left: 30px;
        color: #4a752c;
        font-size: 14px;
        line-height: 1.7;
      }
        
      .instructions-list_modal_qr_pay li {
        margin-bottom: 10px;
        position: relative;
      }
        
      .instructions-list_modal_qr_pay li::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 8px;
        width: 8px;
        height: 8px;
        background: #7cc440;
        border-radius: 50%;
      }
        
        
      /* Анимации */
      @keyframes pulse_modal_qr_pay {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
      }
        
      @keyframes float_modal_qr_pay {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(3deg); }
        100% { transform: translateY(0) rotate(0deg); }
      }
        
      @media (max-width: 600px) {
        .overlay_modal_qr_pay {
          align-items: flex-start;
        }
            
        .modal_modal_qr_pay {
          padding: 40px 25px 30px;
          margin: 20px 0;
          margin-left: 10px;
          margin-right: 10px;
        }
            
        .title_modal_qr_pay {
          font-size: 26px;
        }
            
        .subtitle_modal_qr_pay {
          font-size: 15px;
          max-width: 280px;
        }
            
        .qr-container_modal_qr_pay {
          width: 220px;
          height: 220px;
        }
            
        .timer-container_modal_qr_pay {
          width: 200px;
        }
            
        .timer_modal_qr_pay {
          font-size: 32px;
        }
            
        .btn-open_modal_qr_pay {
          padding: 15px 35px;
          font-size: 16px;
        }
      }

      @media (max-height: 700px) {
        .overlay_modal_qr_pay {
          align-items: flex-start;
          padding-top: 30px;
        }
            
        .modal_modal_qr_pay {
          padding: 40px 30px 30px;
        }
            
        .qr-container_modal_qr_pay {
          width: 220px;
          height: 220px;
        }
      }

      /* Стили для Material Icons */
      .material-icons {
        font-size: 24px;
        vertical-align: middle;
      }
        
      .mobile-link_modal_qr_pay .material-icons {
        color: #2d6319;
      }




























