/*
Theme Name: Toys Theme
Theme URI: http://localhost/toys
Author: Твоё имя
Version: 1.0
*/


:root {
  --color-orange: #f2722c;
  --color-blue: #57bcd3;
  --color-black: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--color-black);
  line-height: 1.6;
  background: #fef7f3;
}

.container, .custom-product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease;
}

.header {
  background: transparent;
}

.header-top.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%);
  padding: 6px 10px;
  margin-bottom: 20px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.link {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.search {
  position: relative;
  width: 100%;

  max-width: 600px;
}

.search input {
  width: 100%;
  padding: 10px 50px 10px 12px;
  border: 1.02px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  background: #fff;
  font-family: "Manrope";
  font-size: 16px;
}

.search .search-btn {
  position: absolute;
  top: 55%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.search .search-btn .icon {
  width: 20px;
  height: 20px;
}

.social-contact {
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 15px;
}

.social-contact a {
  display: flex;
}

.header-bottom {
  position: relative;
}

.header-bottom.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  font-weight: 400;
  font-size: 14px;
  color: #000304;
  transition: all 0.3s ease;
}

.nav a:hover {
  font-weight: 400;
  font-size: 14px;
  color: #f2722c;
}

a {
  text-decoration: none;
}

.icons-header a:not(:last-child) {
  margin-right: 10px;
}

.nav .btn-orange {
  color: #fef7f3;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

.nav .btn-orange:hover {
  color: #fef7f3;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  padding: 80px 25px 40px;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  z-index: 2000;
}

.mobile-menu.active {
  left: 0 !important;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 18px;
  color: #000;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.tele.link:hover{
  color: rgb(255, 200, 98);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  width: min(990px, 95vw);
  background: #fff;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
 top: 50px !important;
  left: 30px !important;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mega-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-close {
  display: none;
}

.mega-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-container {
  display: flex;
  gap: 40px;
}

.menu-column {
  flex: 1;
}

.menu-column.btn-mega-menu {
  flex: 0 0 260px;
}

.menu-column h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.menu-column ul {
  list-style: none;
  padding: 0;
}

.menu-column ul li {
  margin-bottom: 10px;
}

.menu-column ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #000;
  transition: 0.3s;
}

.menu-column ul li a:hover {
  color: #f2722c;
}

.image-column img {
  width: 160px;
}

.mobile-left {
  display: none;
  align-items: center;
  gap: 15px;
}
/* Hero */
.hero {
  min-height: 100dvh;
	padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background:
    url("../image/back.jpg") no-repeat center / cover,
    linear-gradient(to right, #f4f5f4, #e7e8e6);
}

.block-hero {
  text-align: left;
  padding-top: 240px;
  max-width: 690px;
}

.h1 {
  font-weight: 600;
  font-size: 48px;
  color: #000304;
  display: inline-block;
  z-index: 99;
  line-height: 20%;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.fon {
  position: relative;
  color: #000304;
  display: inline-block;
  padding: 50px 30px 40px 0;
  z-index: 1;
}

.fon::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 220px;
  right: 0;
  bottom: 0;
  background: #fef7f3;
  filter: blur(28px);
  z-index: -1;
}

.btn-orange {
  background-color: var(--color-orange);
  border-radius: 6px;
  color: white;
      justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.15s ease,
    box-shadow 0.3s ease;
}

.btn-orange:hover {
  background-color: #e65c00;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.text-20 {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  position: relative;
  z-index: 3;
}

.btn-blue {
  background-color: var(--color-blue);
}

.text-blue {
  color: var(--color-blue);
  z-index: 999;
}

.btn-white-text {
  color: white !important;
}

.lk {
  margin-top: 25px;
}

.menu-column .btn-orange {
  font-size: 15px;
  padding: 17px 60px;
}

.hero-btn {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.btn-orange-border {
  border: 1px solid #f2722c;
  background: white;
  color: var(--color-orange);
  border-radius: 8px;
  font-weight: 500;
  padding: 10px 80px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.15s ease,
    box-shadow 0.3s ease;
}

.btn-orange-border:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242, 114, 44, 0.25);
}

.hero-btn .btn-orange {
  padding: 10px 80px;
}

/* Преимущества */
.advantages {
  margin: 120px 0;
  text-align: center;
}

.section-title {
  font-size: 48px;
  margin-bottom: 45px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
}

.advantages-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
}

.advantage-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.advantage-card {
  border: 1px solid #02394c;
  border-radius: 12px;
  padding: 10px;
  background: #f8f8f8;
  flex: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(2, 57, 76, 0.15);
  background: #ffffff;
  border-color: #57bcd3;
}

.h3-20 {
  font-weight: 500;
  font-size: 20px;
  color: #000304;
}

.text-14 {
  font-weight: 400;
  font-size: 14px;
  color: #4a5565;
}

/*Категории */

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.category-card {
  position: relative;
  width: calc(50% - 10px);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  display: block;
  height: 100%;
object-fit: cover;
  transition: transform 0.4s ease;
}

.category-label {
position: absolute;
	
  bottom: 0;
  left: 0;
  right: 0;
  height: 67px;
 background: #57BCD3B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-card:hover img {
  transform: scale(1.08);
}

.label-text {
  color: #4a5565;
  font-weight: 400;
  font-size: 14px;
}

.categories .container {
  text-align: center;
}

.padding-80 {
  padding: 10px 80px;
}

/* Как мы работаем */

.workflow {
  margin: 120px 0;
  text-align: center;
}


.left {
  text-align: left;
}

.workflow-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.control-title-list{
  margin-bottom: 12px;
}

.workflow-step {
  flex: 1;
  position: relative;
  padding: 0 20px;
}

.workflow-icon {
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.workflow-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 5px;

  background: linear-gradient(
    0deg,
    #06b6d4 0%,
    rgba(3, 81, 94, 0.44) 55.77%,
    rgba(0, 0, 0, 0) 100%
  );

  z-index: -1;
}

.text-14.grey {
  color: #64748b;
}

.h3-18 {
  font-weight: 600;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 5px;
}

.contact-block {
  padding: 60px;
  border-radius: 12px;
  background: url("../image/cont.jpg") center/cover no-repeat;
  border-bottom: 1px solid #e5e7eb;
}

.contact-form-wrapper {
  max-width: 793px;
  width: 100%;
  margin-left: auto;
}

.section-title-34 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #000304;
  font-weight: 600;
  text-align: left;
}

.contact-text {
  color: #555555;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form input.wpcf7-text,
.wpcf7-form input.wpcf7-tel,
.wpcf7-form input.wpcf7-email {
  height: 48px;
  padding: 0 12px;
  border: 1px solid #57bcd3;
  background: #fef7f3;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form input:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.15);
}

.wpcf7-form label {
  font-weight: 300;
  font-size: 14px;
  color: #222222;
}

.wpcf7-form .required {
  color: #ee5555;
}

.wpcf7-acceptance span.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.wpcf7-acceptance input[type="checkbox"] {
  display: none;
}

.wpcf7-acceptance .custom-checkbox {
  width: 20px;
  height: 20px;
  background: #f8f8f8;
  border: 1px solid #dadada;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.wpcf7-acceptance input[type="checkbox"]:checked + span .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #06b6d4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7-form input.wpcf7-submit {
  padding: 14px 30px;
  font-size: 16px;
  background-color: #f57c00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpcf7-form input.wpcf7-submit:hover {
  background-color: #e06600;
}


.form-row {
  display: flex;
  gap: 20px;
}

.wpcf7  br{
  display: none;
}

.wpcf7-acceptance span.wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    gap: 8px;
}

.wpcf7-list-item {
    display: inline-block;
     margin: 0 ; 
}

.form-group {
  flex: 1; 
  display: flex;
  flex-direction: column;
}

input.wpcf7-form-control{
  margin-top: 10px;
}

.full-width-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0 !important;
  box-sizing: border-box;
}


button.btn-orange {
  width: 100%;
  margin-top: 10px;
  border: none;
  padding: 15px;
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #f8f8f8;
  padding: 20px 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #4a5565;
  font-size: 14px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #4a5565;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-col p a {
  color: #4a5565;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-col p a:hover {
  color: #f2722c;
}

.footer-col ul li a:hover {
  color: #f2722c;
}

.footer-col.menu-column {
  font-size: 14px;
  color: #4a5565;
}

.text-24 {
  font-weight: 500;
  font-size: 24px;
  color: #000304;
}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-contact a img {
  transition: transform 0.3s ease;
}


.footer-socials a:hover img {
  transform: scale(1.1);
}

.social-contact a:hover img {
  transform: scale(1.1);
}

.foot-soc p:first-child {
  margin-bottom: 10px;
}

.grey-hr {
  color: #4a5565;
}
.footer-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #000304;
  margin: 40px 0 20px;
  gap: 10px;
  text-align: center;
}

.icons-header {
  display: flex;
  flex-direction: row;
}

.icons-header a {
  display: block;
  width: 100%;
}

.icons-header a img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-link {
  display: block;
  width: 100%;
}

.phone-link img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-info-catalog {
  display: flex;
  gap: 60px;
}

.footer-info-catalog .footer-col {
  flex: 1;
}

.custom-shop-container {
    align-items: flex-start !important;
}

.add-to-wishlist-before_image {
    position: relative;
    list-style: none;
}

.add-to-wishlist-before_image img {
    border: 1px solid #02394C;
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist-button {
    position: absolute;
    top: 20px;
    right: 0px;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image--top-left {
    right: 0 !important;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist-button img {
    width: 24px !important;
    height: auto !important;
    border:none;
}



.products.columns-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

.products.columns-3 li.product {
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.products.columns-3 li.product a.woocommerce-LoopProduct-link {
    flex-grow: 1; 
}

.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    width: 100%;
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
    display: none;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    margin: 0;
}


.yith-add-to-wishlist-button-block {
    display: none !important;
}

  li.add-to-wishlist-before_image > a > button.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image--top-left {
    left: auto;
    right: 10px;
        }


        .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    padding: 20px;
    border-radius: 8px;
        }


        .woocommerce-loop-product__title{
color:#000000;
font-size: 18px;
font-weight: 400;
margin-bottom: 20px;
list-style: none;
        }

.product-sku, .product-height{
  color: #4A5565;
  font-size: 13px;
  font-weight: 400;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    padding: 0;
}

.product-sku-height{
      display: flex;
    justify-content: space-between;
    align-items: center;
}


.thumbs-slider-vertical .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


.tabs-header{
  background: #F8F8F8;
  border: 1px solid #E2E8F0;
  border-radius: 8px 8px 0px 0px;
  padding: 5px 10px;
}


.tab-btn{
  all: unset;   
    color:#1E293B;
    padding:0px 40px;
     font-family: "Manrope", sans-serif;
     font-size:16px;
     width: 100%;
     text-align: center;
}

.tabs-header{
      max-width: 400px;
}


.tab-content {
    padding: 20px;
    border-radius: 0px 8px 8px 8px;
    border: 1px solid #02394C;
    background: #F8F8F8;

}

.tab-content h3{
  font-size: 24px;
  color: #0F172A;
  margin-bottom: 10px;
  font-weight: 700;
}

.tab-content p{
  color: #64748B;
  font-weight: 400;
  font-size: 16px;
}


.custom-tabs {
    width: 100%;
    font-family: "Manrope", sans-serif;
}

.tabs-header {
    display: flex;
    gap: 10px;
}

.tab-btn {
    all: unset;
    cursor: pointer;
    padding: 5px 40px;
    font-size: 16px;
    color: #1E293B;
    background: #f5f5f5;
    border-radius: 8px;
    width: 100%;
    text-align: center;
height: 35px;
border-radius: 38px;
}

.tab-btn.active {
    background: #02394C;
    color: #fff;
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.tab-content.active {
    display: flex;
}

.tab-content p {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.tab-content p strong {
    flex: 0 0 auto;
    margin-right: 10px;
    color: #0F172A;
}

.tab-content p span {
    flex: 1 1 auto;
    text-align: left;
}


.product-price{
  padding: 20px;
  background: #F8F8F8;
  border: 1px solid #02394C;
  border-radius:8px ;
  color: #000000;
      margin-top: 30px;
}

.single_add_to_cart_button.button.alt {
background: var(--color-orange);
margin-top: 20px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt{
  background: var(--color-orange);
}

.product-price p{
  color: #000000;
}

.login-warning a{
color: var(--color-orange);
}



/* Основной контейнер вариаций */
.variations {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px; /* расстояние между строками */
    font-family: 'Manrope', sans-serif;
}

#czvet option:first-child {
    display: none;
}

/* Стили заголовков */
.variations th.label {
    font-weight: 600;
    color: #02394C;
    padding-right: 15px;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    width: 120px;
    display: none;
}

/* Стили ячеек с select */
.variations td.value {
    vertical-align: middle;
}

/* Стили select */
.variations select {
  width: 160px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* При наведении на select */
.variations select:hover {
    border-color: #02394C;
}

/* Стили кнопки "Очистить опции" */
.variations .reset_variations {
    display: inline-block;
    margin-left: 10px;
    color: #fff;
    background-color: #02394C;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover для кнопки */
.variations .reset_variations:hover {
    background-color: #01638f;
    text-decoration: none;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .variations th.label {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }

    .variations td.value {
        width: 100%;
        display: block;
    }

    .variations .reset_variations {
        display: block;
        margin: 10px 0 0 0;
        width: 100%;
        text-align: center;
    }
}


/* Оформление заказа */

.delivery-form{
    gap: 25px;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.radio-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    gap:20px;
}

.radio-card input {
    display: none;
}

.custom-radio {
    width: 24px;
    height: 24px;
    border: 1px solid #02394C;
    background: #F8F8F8;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.custom-radio::after {
    content: "";
    width: 6.67px;
    height: 6.67px;
    background: #57BCD3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

.radio-card input:checked + .custom-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-content {
    display: flex;
    flex-direction: column;
}

.radio-title {
    font-size: 14px;
    display: flex;
    gap: 7px;

}

.radio-desc {
    font-size: 13px;
    color: #666;
}

.checkout-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border: 1px solid #02394C;
    border-radius: 6px;
    resize: vertical;
    font-family: inherit;
        background: #F8F8F8;
}

.oform{
color: #000304;
margin-top: 10px;
}

.radio-title1{
      gap: 9px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


.form-text{
  color: #4A5565;
  font-size: 12px;
  margin-top: 10px;
}


.for-list {
list-style: none;
color: #4A5565;
font-size: 14px;
margin:10px 0 0 8px ;
}

.for-list li {
    margin-bottom: 4px;
}

.margin-50{
  margin: 60px 0 40px;
}

.checkout-wrapper{
 display: flex;
    flex-direction: row;
    gap: 40px;
        margin-bottom: 60px;
}


.checkout-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-right {
    width: 45%;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 10px 0 20px;
}

.checkbox-card input {
    display: none;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid #02394C;
    background: #F8F8F8;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

/* галочка */
.custom-checkbox::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    border-left: 2px solid #57BCD3;
    border-bottom: 2px solid #57BCD3;
    transform: rotate(-45deg) scale(0);
    top: 7px;
    left: 6px;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid  var(--color-blue);
}

/* checked состояние */
.checkbox-card input:checked + .custom-checkbox::after {
    transform: rotate(-45deg) scale(1);
}

.checkbox-text {
    font-size: 14px;
}

/* Форма */
.checkout-form {
    background: #F8F8F8;
    border: 1px solid #02394C;
    border-radius: 12px;
    padding: 20px;
}

.checkout-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #02394C;
    border-radius: 8px;
    background: #F8F8F8;
    font-family: "Manrope", sans-serif;
}


.control-cards1{
  display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
}

.control-cards1 .control-number {
    width: 32px;
    height: 32px;
    background: #57BCD3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.form-group label{
color: #000304;
font-size: 14px;
font-weight: 400;
margin-bottom: 10px;
}

.checkout-form h3{
  color: #000304;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Правая колонка */
.checkout-summary {
    position: sticky;
    top: 20px;

    background: #fff;
    border: 1px solid #02394C;
    border-radius: 12px;
    padding: 20px;
     transition: top 0.3s ease;
}

.checkout-summary.scrolled {
    top: 140px;
}

/* Чекбокс */
.checkbox {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.checkout-summary h3{
  font-weight: 400;
  font-size: 18px;
}
/* Кнопка */
.checkout-btn {
    width: 100%;
    padding: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 400;
      font-family: 'Manrope', sans-serif;
}


/* Инфо блок */
.checkout-info {
    margin-top: 20px;
    font-size: 14px;
    border: 1px solid #02394C;
    border-radius: 8px;
    padding: 10px;
}

.checkout-right .checkbox-card{
    margin: 20px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 10px 0;
}

.cart-summary{
  gap: 10px;
    display: flex;
    flex-direction: column;
}
.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

/* Чтобы было аккуратно */
.cart-summary span:last-child {
  text-align: right;
}

.cart-item-left img {
    width: 86px;
    height: auto;
    border: 1px solid #DADADA;
    border-radius: 6px;
}


/* Итого выделим */
.cart-summary .total {
  font-weight: 600;
  font-size: 18px;
}

.cart-item-left img {
    width: 60px;
    height: auto;
}

.cart-item-center {
    flex: 1;
}

.contact-block p{
  width: 100%;
}

.contact-block input{
  width: 100%;
}

.cart-item-center .title {
    margin: 0 0 5px;
}

.cart-item-center .meta {
    font-size: 14px;
    color: #666;
    display: flex;
    flex-direction: column;
}

.categories-grid a {
    display: block !important;  
	height: 100%;
}
.categories-grid .product-card__btn {
  display: flex !important;
}
.checkout-info p:not(:last-child) {
  margin-bottom: 7px;
}

.title-cart-bot{
  font-size: 16px;
  font-weight: 600;

}
/* === Cookie Notice === */

#cookie-notice {
    background-color: #FEF7F3 !important;
    border: 1px solid #02394C !important;
    z-index: 9999 !important;
}

.cookie-notice-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    gap: 40px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #1B1D1F;
    position: relative;
}

#cn-notice-text,
.cn-text-container {
    flex: 1;
    color: #1B1D1F !important;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

#cn-notice-text a {
    color: #f2722c !important;
    text-decoration: underline !important;
}

.cn-buttons-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    min-width: 200px;
}

#cn-accept-cookie {
    background-color: #f2722c !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
}

#cn-refuse-cookie {
    background-color: #fff !important;
    color: #f2722c !important;
    border: 1px solid #f2722c !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
}

.cn-close-icon {
    display: none !important;
}

@media (max-width: 768px) {
    .cookie-notice-container {
        flex-direction: column !important;
        padding: 16px 20px;
        gap: 16px;
    }
    .cn-buttons-container {
        width: 100%;
    }
}

.cart-item-right {
    font-weight: 600;
    white-space: nowrap;
}


.footer-more a{
color: #000304;
transition: all 0.3s ease;
}

.footer-more a:hover{
color: var(--color-orange);
}


/* Пошив */
.posiv{
 margin: 80px auto;
    max-width: 794px;
}



.checkout-left-posiv{
      width: 100%;
}


.posiv .checkout-form textarea {
    margin-bottom: 10px;
}


.posiv .checkout-form {
     border: 0  ;
}

.posiv .checkout-form input {
    background: #FEF7F3;
}

.posiv .checkout-form textarea {
   background: #FEF7F3;
}

.checkout-left-posiv {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.contact-form-posiv{
      margin-top: 20px;
}
.contact-form-posiv .submit-btn{
     
    margin: 0 auto;
    font-family: "Manrope", sans-serif;

}

.posiv form{
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .hero {
    background:
      url(../image/imf1.jpg) no-repeat right 100px / 70%,
      linear-gradient(to right, #f6f6f6 0%, #efefef 75%, #e7e7e7 90%);
  }

  .block-hero {
    padding-top: 0px;
  }

}

@media (max-width: 1200px) {
  .logo img {
    width: 100%;
    max-width: 130px;
  }

  .custom-shop-container {
    padding: 0 20px;
}

  .nav {
    gap: 15px;
  }

  .social-contact .link {
    display: none;
  }
  .contact-block {
    background: url(../image/cont.jpg) center no-repeat;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
    .products.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products.columns-3 {
        grid-template-columns: 1fr;
    }

    .posiv {
    margin: 40px auto;
    }
}

@media (max-width: 992px) {
  .contact-block {
    background:
      url(../image/cont1.jpg) no-repeat center / contain,
      #fefefe;
  }

  .mobile-left {
    gap: 30px;
  }

  .icons-header {
    gap: 20px;
  }

  .h1 {
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 20px;
  }

  .fon {
    line-height: 100%;
    padding: 0;
  }

  .advantages-grid {
    flex-wrap: wrap;
  }

  .header-top.container {
    display: none;
  }

  .mobile-left {
    display: flex;
  }

  .nav {
    display: none;
  }

  .mega-menu {
    width: 100vw;
    height: 100vh;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0;
    padding: 80px 25px 40px;
    overflow-y: auto;
  }

  .mega-menu-container {
    flex-direction: column;
    gap: 25px;
  }

  .menu-column.btn-mega-menu {
    flex: 1;
  }

  .image-column {
    display: none;
  }

  .mega-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mega-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;

    font-size: 32px;
    font-weight: 400;

    background: none;
    border: none;
    padding: 0;
    margin: 0;

    cursor: pointer;
    color: #000;
  }

  .mega-close:hover {
    color: #f2722c;
  }

  .header-bottom.container {
    padding: 10px;
  }

  .logo img {
    width: 100%;
    max-width: 100%;
  }

  .mobile-left img {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .burger-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero {
    background:
      url(../image/imf1.jpg) no-repeat right 50px / 100%,
      linear-gradient(to right, #f6f6f6 0%, #efefef 75%, #e7e7e7 90%);
  }

  .form-row {
    flex-direction: column;
}

.wpcf7-form-control-wrap input {
  width: 100%;
}

/* ── Кастомная форма заявки (замена CF7) ── */
form.bcf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}
form.bcf-form .bcf-row {
  display: flex;
  gap: 20px;
}
form.bcf-form .bcf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
form.bcf-form .bcf-label {
  font-weight: 300;
  font-size: 14px;
  color: #222222;
  margin-bottom: 10px;
}
form.bcf-form .bcf-required {
  color: #ee5555;
}
form.bcf-form input.bcf-input {
  height: 48px !important;
  padding: 0 12px !important;
  border: 1px solid #57bcd3 !important;
  background: #fef7f3 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  color: #333 !important;
  margin: 0 !important;
}
form.bcf-form input.bcf-input:focus {
  outline: none !important;
  border-color: #06b6d4 !important;
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.15) !important;
}
form.bcf-form .bcf-policy {
  display: flex;
  align-items: center;
}
form.bcf-form .bcf-policy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
form.bcf-form .bcf-checkbox {
  display: none !important;
}
form.bcf-form .bcf-checkmark {
  width: 20px;
  height: 20px;
  background: #f8f8f8;
  border: 1px solid #dadada;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
form.bcf-form .bcf-checkbox:checked + .bcf-checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #06b6d4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
form.bcf-form .bcf-policy-label a {
  color: inherit;
  text-decoration: underline;
}
form.bcf-form .bcf-submit-row {
  display: flex;
}
form.bcf-form .bcf-submit {
  padding: 14px 30px;
  font-size: 16px;
  background-color: #f57c00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form.bcf-form .bcf-submit:hover {
  background-color: #e06600;
}
form.bcf-form .bcf-submit:disabled {
  opacity: 0.7;
  cursor: default;
}
.bcf-response {
  font-size: 14px;
  min-height: 18px;
}
.bcf-response.form-success { color: #16a34a; font-weight: 500; }
.bcf-response.form-error   { color: #dc2626; }
@media (max-width: 640px) {
  form.bcf-form .bcf-row { flex-direction: column; }
}

  .contact-block {
    padding: 40px;
  }

  .advantages,
  .workflow {
    margin: 80px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .workflow-grid {
    flex-wrap: wrap;
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }

  .section-title-34,
  .section-title {
    line-height: 100%;
  }
}

@media (max-width: 678px) {


  .hero-btn {
    padding: 0;
    flex-direction: column;
  }

  .btn-orange-border {
    text-align: center;
  }

  .btn-orange {
    text-align: center;
  }

  .advantages-grid {
    flex-direction: column;
  }

  .custom-shop-container {
    flex-direction: column;
}

.shop-sidebar {
    width: 100%;
}

.shop-categories {
    width: 100%;
}

}

@media (max-width: 600px) {
  .hero-btn {
    gap: 10px;
  }

  .section-title-34 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .categories-grid {
    flex-direction: column;
  }

  .category-card {
    width: 100%;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .workflow-grid {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    flex-direction: column;
  }
}


@media (max-width: 450px) {
    .logo img {
        width: 100%;
        max-width: 120px;
    }
        .mobile-left {
        gap: 15px;
    }

        .icons-header {
        gap: 5px;
    }

  

    .footer-info-catalog {
    gap: 10px !important;
}
}
@media (max-width: 400px) {
  .footer {
    padding: 40px 0;
  }

  .footer-info-catalog {
    gap: 10px;
  }
  .mobile-left {
    gap: 30px;
  }

  .mobile-left img {
    width: 15px;
    height: 15px;
  }


  .burger-btn{
            width: 30px;
  }

  .h1 {
    font-size: 32px;
    line-height: 130%;
  }

  .padding-80 {
    padding: 10px 20px;
  }

  .logo img {
    max-width: 100px;
  }

  .header-bottom.container {
    padding: 15px;
  }

  .contact-block {
    padding: 30px 0;
  }

  .advantages,
  .workflow {
    margin: 60px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .advantages-grid {
    gap: 10px;
  }

  .h1 {
    margin-bottom: 10px;
  }

  .hero-btn {
    gap: 10px;
  }

  .advantage-card img {
    width: 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .container {
    padding: 0 10px;
  }

  .category-card img {
    height: 270px;
  }

  .categories-grid {
    gap: 10px;
  }

  .categories-grid {
    margin-bottom: 20px;
  }

  .h3-18 {
    font-size: 16px;
  }

  .workflow-icon img {
    width: 50px;
  }

  .footer-col {
    gap: 10px;
  }

  .text-24 {
    font-size: 20px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-more {
    margin: 20px;
  }

  .icons-header a img {
    width: 18px;
  }

  .category-card img {
    height: 230px;
  }

  .footer-info-catalog {
    gap: 30px;
  }

  .footer-info-catalog .footer-col {
    min-width: auto;
  }
}

@media (max-width: 340px) {
  .category-card img {
    height: 200px;
  }

  .icons-header {
    gap: 0px;
  }

  .mobile-left {
    gap: 15px;
  }
}




/* about */


.about .h3-20 {
    font-weight: 600;
    font-size: 34px;
    color: #000304;
}



.about .text-14 {
    font-weight: 600;
    font-size: 16px;
}


.history-wrapper{
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}


.history-text{
  text-align: left;
}


.history-text .section-title{
  text-align: left;
}

.about-hero {
       min-height: 354px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url("../image/about-hero.jpg") no-repeat right center;
    background-size: auto; 
}

body:not(.home) .header{
   background: #FEF7F3;
}


body.home .header {
   position: fixed !important;
}


.block-hero.center {
padding-top: 0px;
}

.history-text li {
    position: relative;
    padding-left: 30px; 
     list-style: none; 
}

.history-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;       
    height: 20px;      
    background: url("../image/check.svg") no-repeat center center;
    background-size: contain; 
}


.history-slider-wrapper{
  flex: 1;
  min-width: 550px; 
}

.history-icon img {
  width: 100%;
  height: auto;
}


.slider-controls {
  display: flex;
  justify-content: flex-end; 
  gap: 10px; 
  margin-top: 25px; 
  position: relative;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.swiper-button-prev {
    left: auto !important;
    right: 70px !important;
}


.history-slider-wrapper {
  flex: 1;
  width: 100%; 
  max-width: 100%;
}

.history-icon img {
  width: 100%;
  height: auto; 
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
  position: relative;
}


.history-text p{
  color: #4A5565;
}


.workflow-cards{
  display: flex;
    flex-direction: row;
    gap: 20px;
}


.workflow-card{
      flex: 1;
      text-align: left;
      background: #F8F8F8;
      padding: 20px;
      border-radius: 12px;
      border: SOLID 1PX #02394C;
}

.workflow-card li {
    position: relative;
    padding-left: 30px; 
     list-style: none; 
     color: #4A5565;
}

.workflow-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;       
    height: 14px;      
    background: url("../image/Checkmark.svg") no-repeat center center;
    background-size: contain; 
}

.section-title.left {
  text-align: left;
  margin-bottom: 40px;
}

ul.card-title{
  display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-title{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
}


.control-cards{
   background: #F8F8F8;
   padding: 20px;
      border-radius: 12px;
      border: SOLID 1PX #02394C;
          display: flex;
    gap: 20px;
    flex-direction: column;
}

.control-cards1{
  display: flex;
    flex-direction: row;
    gap: 10px;
        justify-content: flex-start;
        align-items: center;
}


.control-card{
  background-color: #FEF7F3;
  border-radius: 8px;

     padding: 20px;
}


.control-list{
   border-radius: 8px;
background: #0D94881A;
     padding: 20px;
     border: solid 1px #0D948833;
}

.control-cards p{
  margin-bottom: 0px;
}


.text-16{
  font-size: 16px;
}

.control-list li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  line-height: 1.4;
}
.control-list li{
  list-style: none; 
}

ul li {
  margin-bottom: 10px;
}
.control-ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("../image/dock.svg") no-repeat center center;
    background-size: contain;
}

.check-ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.check-ul li {
    list-style: none;
    position: relative;
    padding-left: 40px;
    line-height: 1.5;
}
.check-ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: url("../image/check.svg") no-repeat center center;
    background-size: contain;
}

.cert-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.3);
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.cert-link:hover {
    color: #E8622A;
    text-decoration-color: #E8622A;
}

.control-cards.partner{
  border: solid 1px #E5E7EB;
  background: #FEF7F3;
}

.partner .control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin-top: 20px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled{
background: var(--color-orange);
}


/* Круг с цифрой */
.partner .control-number {
  width: 32px;
  height: 32px;
  background: #57BCD3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.partner .control-title {
  margin-bottom: 3px;
  font-weight: 500;
}


.control-cards-part .control-card{
display: flex;
    align-items: flex-start;
    gap: 15px;
}

.control-cards.partner{
  gap: 0px;
}


.breadcrumbs-block .container{
  position: relative;
  height: 354px;
  display: flex;
    align-items: center;
}


.breadcrumbs{
  position: absolute;
  top: 40px;
}

.breadcrumbs a {
  color: #64748B; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--color-orange);
}


/* faq */
.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

.faq-item {
  border: solid 1px #E5E7EB;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  background: #FFFFFF;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.faq-question {
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  background: url('../image/Icon.svg') no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  color: #000304;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  margin-top: 10px;
}

html {
  scroll-behavior: smooth;
}

.quick-nav {
  background: #f8f8f8;
  padding: 15px 0;
  margin: 60px 0;
  border-radius: 8px;
  border: solid 1px #02394C;
  padding: 20px;
      max-width: 760px;
}

.quick-nav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  margin-top: 20px;
}

.quick-nav-list li {
   border: solid 1px var(--color-orange);
    border-radius: 6px;
}

.quick-nav-list li a {
  text-decoration: none;
  color: var(--color-orange);
 
  font-size: 14px;
  font-weight: 400;
  padding: 5px 11px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.quick-nav-list li a:hover {
  background: #ff8800;
  color: #fff;
}



.faq-hero {
    min-height: 354px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../image/faq-hero.jpg) no-repeat  center;
    background-size: auto;
}



/* Контакты */

.woocommerce table.shop_table {
    border-radius: 12px;
}

.cart_totals h2{
  display: none;
}
.actions{
  display: none;
}

.cart-subtotal{
      display: none;
}
.shop_table{
  background-color: #F8F8F8;
}


.shop_table thead{
 display: none;
}

.product-name a{
  color: #1A1A1A;
  font-size: 18px;
}


.woocommerce-cart table.cart img{
  width: 96px;
  border: 1px solid #DADADA;
  border-radius: 6px;
}

.workflow-cards.cont-cards {
display: block;
margin-top: 60px;
}

.workflow-card.cont-cards1 {
padding: 30px 30px 10px ;
}

.cont-hero {
    min-height: 354px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../image/cont-hero.jpg) no-repeat  center;
    background-size: auto;
}

.workflow-card-columns {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.workflow-column {
    flex: 1;
    min-width: 200px; 
}

.column-title {
    font-weight: 400;
    margin-bottom: 10px;
    color: #4A5565;
    font-size: 14px;
}

.column-text {
    color: #1A1A1A;
    font-size: 18px;
    margin-bottom: 20px;
}


.card-title-24 {
  font-weight: 500;
  font-size: 24px;
}


.cont-block{
    display: flex;
    flex-direction: row;
    gap: 65px;
}

.cont-socials {
    display: flex;
    gap: 10px;
}


.cont-cards{
  display: flex;
  gap: 20px;
  flex-direction: column;
    align-items: flex-start;
        text-align: left;
}

.cont-card{
background: #F8F8F8;
padding: 20px;
border: solid 1px #02394C;
border-radius:12px ;
display: flex;
    gap: 15px;
        width: 100%;
}

.cont-card a{
color: #1A1A1A;
}

.cont-card a:hover{
color: var(--color-orange);
}

.cont-info{
display: flex;
gap: 15px;
flex-direction: column;
}

.text-18{
  font-size: 18px;
}

.karta {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.karta iframe {
    border: 0;
    display: block;
}

.cont-karta{
      width: 100%;
      flex: 1;
}

.cont-icon img {
    display: block;
    width: 48px;
    height: 48px;
}

.cont-cards-mes{
  display: flex;
    flex-direction: row;
    gap: 20px;
}

.cont-card{
  flex: 1;
}

.cont-card.mes {
  display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.mes p{
text-align: left;
}

.cont-btn{
  width: 100%;
  color: white !important;
  font-size: 15px;
  padding: 11px  !important;
}




/* Доставка */

.cont-card.dostavka {

flex-direction: column;
}


.dostavka-hero {
    min-height: 354px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../image/dostacka.jpg) no-repeat  right;
    background-size: auto;
}



.chac-icon,
.card-icon {
    position: relative;
    padding-left: 25px;
}

.chac-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../image/chas.svg') no-repeat center;
    background-size: contain;
}

.cont-cards.dostavka {
width: 100%;
    flex-direction: row;
    align-items: stretch;
margin-bottom: 40px;
}


.card-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../image/pay.svg') no-repeat center;
    background-size: contain;
}



.dostavka-del, .dostavka-dels{
  width: 100%;
}

.dels-cards li::before{
  content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../image/check.svg) no-repeat center center;
    background-size: contain;
}





.card-title-s{
  color:#000304;
  margin-bottom: 14px;
}

.card-title-s{
  position: relative;
  padding-left: 30px;
}
.card-title-s::before{
  content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../image/car.svg) no-repeat center center;
    background-size: contain;
}

.del-2{
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}
.del-2::before{
  content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../image/kv.svg) no-repeat center center;
    background-size: contain;
}


.block-dels{
  display: flex;
    flex-direction: row;
    justify-content: space-between;
}




/* Обмен и возврат */

.vozv-hero {
    min-height: 354px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../image/vozv.jpg) no-repeat  right;
    background-size: auto;
}

.font400{
  font-weight: 400;
}

.vozv-cards{
  background: white;
  border-radius: 12px;
  border: solid 1px #E5E7EB;
  padding: 20px;
}

.vozv-list{
  background: #F0FDF4;
    border-radius: 12px;
  border: solid 1px #B9F8CF;
  padding: 20px;
  color: #008236;
   list-style: none;
}

.vozv-ul{
   list-style: none;
}
.control-title-list.vozv{

color: #016630;

}

.vozv-text {
  margin: 20px 0;
  color: #364153;
}

.vozv2-cards{
  margin-top: 60px;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .vozv2-cards { flex-direction: column; }
}

.font600{
  font-weight: 600;
}



/* Каталог */

.shop-sidebar h3{
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  color: #0F172A;
}

.custom-filter h4{
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #0F172A;
}

.custom-filter input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1px;
  cursor: pointer;
  position: relative;
}

/* состояние checked */
.custom-filter input[type="checkbox"]:checked {
  background-color: #4f46e5; /* цвет можно поменять */
  border-color: #4f46e5;
}

/* галочка */
.custom-filter input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-breadcrumbs {
    margin-bottom: 15px;
    font-size: 16px !important;
    color: #0F172A !important;
}

.custom-breadcrumbs a {
    color: #64748B;
    text-decoration: none;
}

.custom-breadcrumbs a:hover {
    text-decoration: none;
    color:var(--color-orange);
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: 16px;
    color: #0F172A;
    margin-top: 30px;
}

.custom-filter label{
  display: flex;
      gap: 8px;
          align-items: center;
          color: #4A5565;
          font-weight: 600;
          font-size: 14px;
          margin-bottom: 10px;
}

.custom-filter br{
  display: none;
}

.shop-sidebar button{
  all: unset;
   cursor: pointer;
background: var(--color-orange);
border-radius: 8px;
width: 100%;
padding: 11px 0;
color: white;
font-size: 14px;
font-weight: 500;
text-align: center;
margin-top: 20px;
}



/* Личный кабинет */

.name-lk{
  display: flex;
    align-content: center;
    align-items: center;
    gap: 40px;
}


.section-title-lk{
  font-size: 34px;
}

.dashboard-header{
      display: flex;
    align-content: center;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    margin: 100px 0 40px;
}


.dashboard-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn-logout{
  color: #1E293B;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  padding-left: 30px;
  position: relative;
  padding: 10px 13px 10px 40px;
  border-radius: 8px;
}

.btn-logout::before{
content: '';
 position: absolute;
  left: 10px;
   top: 10px;
      width: 20px;
    height: 20px;
    
    background: url("../image/log.svg") no-repeat center center;
}

.dashboard-menu{
width: 25%;
}

.dashboard-main{
  width: 75%;
}

.dashboard-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    color: #4A5565;
}

.dashboard-menu li span {
    flex: 1;
    margin-left: 10px;
    font-weight: 400;
}

.dashboard-content{
  display: flex;
    align-items: flex-start;
    gap: 90px;
}

aside{
padding: 20px;
border: 1px solid #02394C;
background: #F8F8F8;
border-radius: 24px;
}

/* Стрелочка */
.menu-arrow {
    width: 16px;
    height: 16px;
}

/* Hover и активный пункт */
.dashboard-menu li:hover,
.dashboard-menu li.active {
    background: linear-gradient(180deg, #06B6D4 0%, #0891B2 100%);
    color: #FFFFFF;
    font-weight: 600;
}

.dashboard-menu li:hover svg:first-of-type path,
.dashboard-menu li.active svg:first-of-type path {
    stroke: #FFFFFF;
}

/* Меняем стрелку */
.dashboard-menu li:hover svg:last-of-type path,
.dashboard-menu li.active svg:last-of-type path {
    stroke: #FFFFFF;
}

.blok-tit{
     display: flex;
    align-items: center;
    justify-content: space-between;
}


.products li{
background: white;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button-over-image--top-left {
    right: 20px !important;
}

/* Адаптив */

@media (max-width: 998px) {

.cont-block {
    gap: 20px;
}

.cont-cards-mes {
    flex-direction: column;
}

.karta {
    margin-bottom: 20px;
}

}

@media (max-width: 900px) {


  .add-to-wishlist-before_image .yith-wcwl-add-to-wishlist-button {
    right: 0px;
}

.custom-shop-container {
    gap: 20px !important;
    flex-direction: column;
}

.shop-sidebar {
    width: 100% !important;
}

.shop-categories {
    width: 100% !important;
}


.categories-grid
 {
    gap: 20px !important; 
}

.section-title.left {
    margin-bottom: 20px;
}

}

@media (max-width: 768px) {

  .checkout-wrapper {
    display: flex;
    flex-direction: column;
  }

  .checkout-left {
    width: 100%;
  }

  .checkout-right {
    width: 100%;
}

.checkout-wrapper {
    gap: 20px;
}

.checkout-form .control-cards1 {
    justify-content: flex-start;
    align-items: flex-start;
}

  .partner .control-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 998px) {
  .history-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .history-slider-wrapper {
    min-width: 0;
    width: 100%;
  }

  .history-icon {
    width: 100%;
  }

  .slider-controls img {
    width: 25px; 
    height: 25px;
  }


}



@media (max-width: 750px) {

.workflow-cards {
    flex-direction: column;
}
} 


@media (max-width: 678px) {


  .control-cards1 {
    flex-direction: column;
    gap: 10px;
  }

  .workflow-card-columns {
    flex-direction: column;
  }

  .cont-cards.dostavka {
   flex-direction: column;
}

.block-dels {
    flex-direction: column;
}
}


@media (max-width: 469px) {


  .woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    margin-top: 69px !important;
}

.about-hero {
    background: url(../image/about-mob.jpg) right center / cover no-repeat;
}

.faq-hero {
  background: url(../image/faq-mob.jpg)  center / cover no-repeat;
}

.cont-hero {
    background: url(../image/cont-mob.jpg) center / cover no-repeat;
}

  .dostavka-hero {
    background: url(../image/dost.jpg) right center / cover no-repeat;
}

/* header position: see top of file */

body:not(.home) .header {
     background: none; 
}

.about-hero {
    min-height: 100vh;
}

body.page-id-39 .breadcrumbs-block .container {
    height: 100vh;
}

.breadcrumbs {
    top: 80px;
}

.breadcrumbs.top30 {
    top: 30px;
}

.faq-hero {
    min-height: 454px;
}


.about-hero  .text-20{
font-size: 16px;
}

.advantages.about {
        margin: -200px 0 60px;
    }
}


@media (max-width: 630px) {
.quick-nav-list {
    flex-direction: column;
}

.quick-nav-list li {
    width: 100%;
    text-align: center;
        padding: 8px 0;
}
}


@media (max-width: 360px) {

  .text-20 {
    font-size: 18px;
  }

  .contact-section{
        margin-top: 30px;
  }

  .text-18 {
    font-size: 16px;
}

.cont-info {
     gap: 10px;
}

.cont-cards {
    gap: 10px;
}

.faq-list {
    gap: 10px;

}

.workflow-card-columns {
    gap: 0px;
}

.quick-nav-list li a {
    padding: 15px 40px;
}

.quick-nav-list {
    justify-content: center;

}

.card-title-24 {
    font-size: 20px;
}

 .karta iframe {
    height: 300px;
  }

  .cont-icon img {
    width: 44px;
    height: 44px;
}


.cont-card {
    padding: 10px;
}
}


.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    background-color: var(--color-orange);
    color: #ffffff;
}

.custom-auth-container .xoo-el-tabs li.xoo-el-active {
    border-color: #ff7828;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
    background-color: var(--color-orange);
}

.custom-auth-container .xoo-el-tabs li.xoo-el-active {
    border-color: var(--color-orange) !important; 
}

.custom-auth-container .xoo-el-tabs li.xoo-el-active {
    color: #02394C;
    border-color: var(--color-orange);
    border-color: var(--color-orange) !important;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
    outline: none !important;
  border: none !important;
}

/* =============================================
   КАРТОЧКА ТОВАРА (content-product.php)
   ============================================= */

li.product-card {
    list-style: none;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    padding: 20px;
    border: 1px solid #e8edf0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Блок с изображением */
.product-card__image-wrap {
    position: relative;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
    aspect-ratio: 1 / 1;
}

.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 12px;
}

/* Кнопка вишлиста */
.product-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-card__wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Контентная часть */
.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 4px 4px;
    flex: 1;
}

.product-card__price {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D1F;
    line-height: 1.2;
    margin-bottom: 2px;
}

.product-card__price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.product-card__name,
.product-card__name:visited {
    font-size: 16px;
    font-weight: 600;
    color: #1B1D1F !important;
    text-decoration: none;
    line-height: 1.35;
    display: block;
    margin-bottom: 4px;
}

.product-card__name:hover {
    color: var(--color-orange) !important;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.product-card__sku,
.product-card__size {
    color: #888;
    font-size: 13px;
}

.product-card__rating {
    display: flex;
    align-items: center;
}

/* Кастомные звёзды BelaToys */
.belatoys-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFB800;
}

.belatoys-stars svg {
    flex-shrink: 0;
}

/* WC-звёзды (fallback) */
.product-card__rating .star-rating,
.product-rating .star-rating {
    color: #FFB800;
    font-size: 14px;
}

.product-card__rating .star-rating::before,
.product-card__rating .star-rating span::before,
.product-rating .star-rating::before,
.product-rating .star-rating span::before {
    color: #FFB800;
}

.product-card__divider {
    display: none;
}

/* Кнопка */
.product-card__btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: var(--color-orange, #f2722c);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: auto;
}

.product-card__btn:hover {
    opacity: 0.9;
    color: #fff;
}

button.product-card__btn {
    font-family: inherit;
    font-size: 15px;
    width: 100%;
}

/* ══════════════════════════════════════════════
   КОРЗИНА — счётчик на иконке хедера
══════════════════════════════════════════════ */
.cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--color-orange, #f2722c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    border-radius: 9px;
    text-align: center;
    pointer-events: none;
}

.cart-count.hidden {
    display: none;
}

/* ══════════════════════════════════════════════
   СТРАНИЦА КОРЗИНЫ
══════════════════════════════════════════════ */
.cart-page-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0 60px;
}

/* Левая часть */
.cart-left {
    flex: 1 1 0;
    min-width: 0;
}

.cart-page-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.cart-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1B1D1F;
}

.cart-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #f2722c;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cart-clear-btn:hover {
    opacity: 0.75;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
    font-size: 18px;
    color: #555;
}

/* Карточка товара */
.cart-item-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.cart-item-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1B1D1F;
    text-decoration: none;
    line-height: 1.4;
}

.cart-item-name:hover { color: var(--color-orange); }

.cart-item-sku {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.cart-item-attrs {
    font-size: 13px;
    color: #555;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

/* Контрол количества */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.qty-btn:hover { background: #f5f5f5; }

.qty-input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1.5px solid #e0e0e0;
    border-right: 1.5px solid #e0e0e0;
    font-size: 15px;
    font-family: inherit;
    height: 34px;
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #E53E3E;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cart-item-remove:hover { opacity: .75; color: #E53E3E; }

.cart-item-price {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1B1D1F;
    white-space: nowrap;
}

/* Комментарий */
.cart-comment-wrap {
    margin-top: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.cart-comment-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1B1D1F;
}

.cart-comment-textarea {
    width: 100%;
    min-height: 90px;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    resize: vertical;
    outline: none;
    transition: border-color .2s;
}

.cart-comment-textarea:focus { border-color: var(--color-orange); }

/* ── Правая панель ── */
.cart-sidebar {
    flex: 0 0 360px;
    width: 360px;
    position: sticky;
    top: 100px;
}

.cart-sidebar-inner {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #f0f0f0;
    padding-bottom: 14px;
}

.cart-total-label {
    font-size: 18px;
    font-weight: 700;
    color: #1B1D1F;
}

.cart-total-value {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D1F;
}

.cart-qty-row,
.cart-discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.cart-discount-val {
    color: #22c55e;
    font-weight: 600;
}

/* Промокод */
.cart-coupon-wrap {
    border-top: 1.5px solid #f0f0f0;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-coupon-input-row {
    display: flex;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.cart-coupon-input {
    flex: 1 1 0;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: #fff;
}

.cart-coupon-btn {
    background: var(--color-orange);
    color: #fff;
    border: none;
    padding: 0 18px;
    font-size: 18px;
    cursor: pointer;
    transition: opacity .2s;
}

.cart-coupon-btn:hover { opacity: .85; }

.cart-coupon-msg {
    font-size: 13px;
    min-height: 18px;
}

.cart-coupon-msg.success { color: #22c55e; }
.cart-coupon-msg.error   { color: #E53E3E; }

.cart-coupon-applied {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #E53E3E;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

/* Мин. сумма предупреждение */
.cart-min-order-warn {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f0fafd;
    border: 1.5px solid #bae6fd;
    border-radius: 10px;
    padding: 12px 14px;
}

.cart-min-order-warn svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cart-min-order-title {
    font-size: 14px;
    font-weight: 600;
    color: #0369a1;
    margin: 0 0 2px;
}

.cart-min-order-sub {
    font-size: 13px;
    color: #0369a1;
    margin: 0;
}

/* Кнопки действий */
.cart-action-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
}

.cart-action-btn.btn-orange {
    background: var(--color-orange);
    color: #fff;
}

.cart-action-btn.btn-orange:hover {
    opacity: .88;
    color: #fff;
}

/* Галочки оплаты */
.cart-payment-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1.5px solid #f0f0f0;
    padding-top: 12px;
}

.cart-payment-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

/* ── Адаптив ── */
@media (max-width: 860px) {
    .cart-page-wrap {
        flex-direction: column;
    }

    .cart-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
}

@media (max-width: 480px) {
    .cart-item-card {
        flex-wrap: wrap;
    }

    .cart-item-price {
        width: 100%;
        text-align: right;
    }
}

/* ══════════════════════════════════════════════
   ПРОМОКОД В ОФОРМЛЕНИИ ЗАКАЗА
══════════════════════════════════════════════ */
.zakaz-coupon-wrap {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zakaz-coupon-row {
    display: flex;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.zakaz-coupon-input {
    flex: 1 1 0;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.zakaz-coupon-btn {
    background: var(--color-orange);
    color: #fff;
    border: none;
    padding: 0 16px;
    font-size: 18px;
    cursor: pointer;
    transition: opacity .2s;
}

.zakaz-coupon-btn:hover { opacity: .85; }

.zakaz-coupon-msg { font-size: 13px; min-height: 16px; }
.zakaz-coupon-msg.success { color: #22c55e; }
.zakaz-coupon-msg.error   { color: #E53E3E; }

.zakaz-coupon-applied {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zakaz-coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #E53E3E;
    font-size: 14px;
    padding: 0;
    line-height: 1;
}

/* ══════════════════════════════════════════════
   THANK-YOU PAGE
══════════════════════════════════════════════ */
.thankyou-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.thankyou-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.thankyou-content {
    flex: 1 1 0;
    max-width: 520px;
}

.thankyou-title {
    font-size: 32px;
    font-weight: 700;
    color: #1B1D1F;
    margin-bottom: 12px;
}

.thankyou-subtitle {
    font-size: 17px;
    color: #444;
    margin-bottom: 6px;
}

.thankyou-hint {
    font-size: 15px;
    color: #888;
    margin-bottom: 24px;
}

.thankyou-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.thankyou-field {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #1B1D1F;
    background: #fff;
    outline: none;
}

.thankyou-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--color-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s;
}

.thankyou-btn:hover {
    opacity: .88;
    color: #fff;
}

.thankyou-image {
    flex: 0 0 420px;
    text-align: right;
}

.thankyou-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 860px) {
    .thankyou-inner { flex-direction: column; }
    .thankyou-image { flex: none; width: 100%; text-align: center; }
    .thankyou-image img { max-width: 320px; }
}

/* ══════════════════════════════════════════════
   ЛИЧНЫЙ КАБИНЕТ — общая раскладка
══════════════════════════════════════════════ */
.lk-wrap {
    padding-bottom: 60px;
}

.lk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 36px 0 32px;
    gap: 16px;
}

.lk-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lk-title {
    font-size: 30px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0;
}

.lk-welcome {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.lk-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.lk-layout--detail {
    gap: 24px;
}

/* ── Левый сайдбар ── */
.lk-sidebar {
    flex: 0 0 260px;
    width: 260px;
    border: 1.5px solid #02394C;
    background: #F8F8F8;
    border-radius: 20px;
    padding: 20px;
    position: sticky;
    top: 100px;
}

/* Пользователь */
.lk-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lk-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lk-user-name {
    font-size: 14px;
    font-weight: 700;
    color: #1B1D1F;
    line-height: 1.3;
}

.lk-user-company {
    font-size: 12px;
    color: #888;
}

/* Навигация */
.lk-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lk-nav-item { margin-bottom: 4px; }

.lk-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #4A5565;
    font-size: 14px;
    font-weight: 400;
    transition: background .18s, color .18s;
}

.lk-nav-link span { flex: 1; }

.lk-nav-link svg { flex-shrink: 0; }

.lk-nav-arrow { color: #4A5565; transition: color .18s; }

.lk-nav-item.active .lk-nav-link,
.lk-nav-link:hover {
    background: linear-gradient(180deg, #06B6D4 0%, #0891B2 100%);
    color: #fff;
}

.lk-nav-item.active .lk-nav-link svg path,
.lk-nav-link:hover svg path { stroke: #fff; }

.lk-nav-item.active .lk-nav-arrow,
.lk-nav-link:hover .lk-nav-arrow { color: #fff; }

.lk-nav-logout .lk-nav-link { color: #E53E3E; }
.lk-nav-logout .lk-nav-link:hover {
    background: #fff1f1;
    color: #E53E3E;
}
.lk-nav-logout .lk-nav-link:hover svg path { stroke: #E53E3E; }

/* Блок менеджера */
.lk-manager-block {
    margin-top: 20px;
    background: #102537;
    border-radius: 14px;
    padding: 16px;
}

.lk-manager-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.lk-manager-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lk-manager-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e3a4f;
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lk-manager-name {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}

.lk-manager-role {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.lk-manager-contact {
    display: block;
    font-size: 12px;
    color: #7dd3fc;
    text-decoration: none;
    line-height: 1.6;
}

/* ── Основной контент ── */
.lk-main { flex: 1 1 0; min-width: 0; }

.lk-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.lk-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0 0 4px;
}

.lk-section-sub {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.lk-new-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* ── Статистика ── */
.lk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.lk-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.lk-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lk-stat-icon--blue   { background: #e0f7ff; }
.lk-stat-icon--teal   { background: #ccfbf1; }
.lk-stat-icon--red    { background: #fee2e2; }
.lk-stat-icon--orange { background: #ffedd5; }

.lk-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D1F;
}

.lk-stat-label {
    font-size: 12px;
    color: #888;
}

/* ── Секция-блок ── */
.lk-section-block {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    margin-bottom: 20px;
}

.lk-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.lk-block-title {
    font-size: 17px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0;
}

.lk-all-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
}

.lk-empty-text { color: #888; font-size: 15px; }
.lk-empty-text a { color: var(--color-orange); }

/* ── Строка заказа ── */
.lk-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1.5px solid #f0f0f0;
    flex-wrap: wrap;
}

.lk-order-row:last-child { border-bottom: none; }

.lk-order-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lk-order-num {
    font-size: 15px;
    font-weight: 700;
    color: #1B1D1F;
}

.lk-order-meta {
    font-size: 12px;
    color: #888;
}

.lk-order-row-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lk-order-sum {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.lk-order-actions {
    display: flex;
    gap: 8px;
}

/* ── Статус-бейджи ── */
.lk-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.status-processing { background: #e8f5ff; color: #3b82f6; }
.status-pending    { background: #fef9c3; color: #ca8a04; }
.status-invoice    { background: #dbeafe; color: #2563eb; }
.status-done       { background: #dcfce7; color: #16a34a; }
.status-cancelled  { background: #fee2e2; color: #dc2626; }
.status-paid       { background: #d1fae5; color: #065f46; }
.status-shipped    { background: #ecfdf5; color: #047857; }

/* ── Кнопки ── */
.btn-orange {
    background: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: opacity .2s;
}

.btn-orange:hover { opacity: .88; color: #fff; }

.btn-orange-sm {
    background: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    transition: opacity .2s;
}

.btn-orange-sm:hover { opacity: .88; color: #fff; }

.btn-outline-sm {
    background: #fff;
    color: #1B1D1F;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s;
}

.btn-outline-sm:hover { border-color: var(--color-orange); color: var(--color-orange); }

.btn-outline {
    background: #fff;
    color: #f2722c;
    border: 1.5px solid #f2722c;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .2s;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

.btn-outline:hover { background: #fff4f0; color: #f2722c; }

/* ── Баннер повтора ── */
.lk-reorder-banner {
    background: #f0fafd;
    border: 1.5px solid #bae6fd;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.lk-reorder-icon { flex-shrink: 0; }

.lk-reorder-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: #1B1D1F;
}

.lk-reorder-text span { color: #555; }

.lk-reorder-action { white-space: nowrap; }

/* ── Быстрые действия ── */
.lk-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.lk-quick-card {
    background: linear-gradient(160deg, #0891b2 0%, #06b6d4 100%);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lk-quick-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.lk-quick-sub {
    font-size: 13px;
    color: rgba(255,255,255,.8);
    flex: 1;
    margin-bottom: 8px;
}

.lk-quick-btn {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
    justify-content: center;
}

/* ── Документы-уведомление ── */
.lk-docs-notice {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.lk-docs-notice strong { color: #1B1D1F; display: block; margin-bottom: 4px; }
.lk-docs-notice p { margin: 0; }

/* ══════════════════════════════════════════════
   МОИ ЗАКАЗЫ — карточки
══════════════════════════════════════════════ */
.orders-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8e8e8;
    margin-bottom: 12px;
    overflow: hidden;
}

.orders-card-main {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 20px;
}

.orders-card-left,
.orders-card-status,
.orders-card-qty,
.orders-card-price {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 12px;
}

.orders-card-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 100px;
}

.orders-card-label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}

.orders-card-num {
    font-size: 16px;
    font-weight: 700;
    color: #1B1D1F;
}

.orders-card-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    margin: 4px 0;
}

.orders-card-delivery {
    font-size: 12px;
    color: #888;
}

.orders-card-sub {
    font-size: 12px;
    color: #888;
}

.orders-card-sum {
    font-size: 16px;
    font-weight: 700;
    color: #1B1D1F;
}

.orders-card-comment {
    background: #f8fafc;
    border-top: 1.5px solid #f0f0f0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.orders-comment-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

.orders-comment-label { color: #888; }

/* ── Пагинация ── */
.lk-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.lk-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #1B1D1F;
    background: #fff;
    transition: all .18s;
}

.lk-page-btn.active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

.lk-page-btn:hover:not(.active) {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.lk-page-prev, .lk-page-next { color: #555; }

/* ══════════════════════════════════════════════
   ДЕТАЛИ ЗАКАЗА
══════════════════════════════════════════════ */
.order-detail-main { min-width: 0; }

.order-detail-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.order-back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.order-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0;
}

.order-detail-meta {
    font-size: 13px;
    color: #888;
    width: 100%;
}

/* Комментарий менеджера */
.order-mgr-comment {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    border-left: 3px solid #f2722c;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    color: #f2722c;
}
.order-mgr-comment svg { flex-shrink: 0; margin-top: 2px; }
.order-mgr-comment__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #f2722c;
    margin-bottom: 4px;
}
.order-mgr-comment__text {
    margin: 0;
    font-size: 14px;
    color: #1B1D1F;
    line-height: 1.5;
}

/* Статусный блок */
.order-status-block {
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.order-status-block--pending,
.order-status-block--processing { background: #f0f7ff; border: 1.5px solid #bfdbfe; color: #1e40af; }
.order-status-block--on-hold    { background: #f0fafd; border: 1.5px solid #7dd3fc;  color: #0369a1; }
.order-status-block--completed  { background: #f0fdf4; border: 1.5px solid #86efac;  color: #166534; }
.order-status-block--paid       { background: #f0fdf4; border: 1.5px solid #86efac;  color: #166534; }
.order-status-block--shipped    { background: #f0fdf4; border: 1.5px solid #86efac;  color: #166534; }

.order-status-icon { flex-shrink: 0; margin-top: 2px; }

.order-status-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.order-status-text { font-size: 14px; line-height: 1.6; }

.order-status-dates {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.order-status-dates div { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.order-status-dates span { color: #888; }
.order-status-dates strong { font-weight: 700; }

.order-status-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    border: 1.5px solid currentColor;
    opacity: .6;
    border-radius: 6px;
    padding: 6px 10px;
}

/* Состав */
.order-composition {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    margin-bottom: 20px;
}

.order-block-title {
    font-size: 17px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0 0 16px;
    text-align: center;
}

.order-items-table { width: 100%; }

.order-items-head {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 0 0 10px;
    border-bottom: 1.5px solid #f0f0f0;
    margin-bottom: 8px;
}

.order-item-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1.5px solid #f9f9f9;
}

.order-item-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1B1D1F;
}

.order-item-sku { font-size: 12px; color: #888; }
.order-item-price, .order-item-qty, .order-item-total { font-size: 14px; color: #1B1D1F; }
.order-item-total { font-weight: 600; }

/* Итоги */
.order-totals {
    border-top: 2px solid #f0f0f0;
    margin-top: 12px;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.order-total-discount span:last-child { color: #22c55e; font-weight: 600; }
.order-coupon-code {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 12px;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.order-total-final {
    font-size: 17px;
    font-weight: 700;
    color: #1B1D1F;
    border-top: 2px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 4px;
}

.order-total-final strong { color: #0891b2; font-size: 20px; }

/* Доставка + Оплата */
.order-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.order-info-block {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1B1D1F;
    margin-bottom: 8px;
}

.order-info-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.order-info-value {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Статус оплаты */
.order-pay-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 12px;
    flex-wrap: wrap;
}

.order-pay-status small {
    font-size: 11px;
    font-weight: 400;
    display: block;
    width: 100%;
    margin-top: 2px;
}

.order-pay-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pay-pending  { background: #fef9c3; color: #92400e; }
.pay-pending .order-pay-dot  { background: #f59e0b; }
.pay-done     { background: #dcfce7; color: #166534; }
.pay-done .order-pay-dot     { background: #22c55e; }
.pay-waiting  { background: #f1f5f9; color: #64748b; }
.pay-waiting .order-pay-dot  { background: #94a3b8; }
.pay-cancelled { background: #fee2e2; color: #991b1b; }
.pay-cancelled .order-pay-dot { background: #ef4444; }

.order-pay-note {
    font-size: 12px;
    color: #888;
    margin: 4px 0 0;
    line-height: 1.5;
}

/* ── Правый столбец детали ── */
.order-detail-aside {
    flex: 0 0 270px;
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.order-history-block,
.order-actions-block {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.order-aside-title {
    font-size: 14px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0 0 14px;
}

/* Timeline */
.order-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.order-timeline-item {
    position: relative;
    padding-left: 26px;
    margin-bottom: 16px;
    opacity: .45;
}

.order-timeline-item.done,
.order-timeline-item.current { opacity: 1; }

.order-timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    z-index: 1;
}

.order-timeline-item.done .order-timeline-dot {
    background: #22c55e;
    border-color: #22c55e;
    overflow: hidden;
}
.order-timeline-item.done .order-timeline-dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 4px;
    left: 3px;
}

.order-timeline-item.current .order-timeline-dot {
    background: #22c55e;
    border-color: #22c55e;
    overflow: hidden;
}
.order-timeline-item.current .order-timeline-dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 4px;
    left: 3px;
}

.order-timeline-date {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.order-timeline-label {
    font-size: 13px;
    font-weight: 600;
    color: #1B1D1F;
}

.order-timeline-note {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

.order-actions-block { display: flex; flex-direction: column; gap: 8px; }

/* ══════════════════════════════════════════════
   АДАПТИВ — личный кабинет
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .lk-stats { grid-template-columns: repeat(2, 1fr); }
    .lk-quick-actions { grid-template-columns: 1fr 1fr; }
    .order-detail-aside { flex: 0 0 220px; width: 220px; }
}

@media (max-width: 900px) {
    .lk-layout, .lk-layout--detail {
        flex-direction: column;
    }
    .lk-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    .order-detail-aside {
        flex: none;
        width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .order-history-block, .order-actions-block { flex: 1 1 260px; }
    .order-info-row { grid-template-columns: 1fr; }
    .order-items-head, .order-item-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
    .lk-stats { grid-template-columns: 1fr 1fr; }
    .lk-quick-actions { grid-template-columns: 1fr; }
    .orders-card-main { flex-wrap: wrap; gap: 10px; }
    .orders-card-actions { flex-direction: row; }
    .order-items-head { display: none; }
    .order-item-row { grid-template-columns: 1fr 1fr; gap: 6px; }
    .order-item-product { grid-column: 1 / -1; }
}


/* -----------------------
   WISHLIST
----------------------- */

/* Кнопка сердечка на карточке товара */
.product-card__wishlist-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #1B1D1F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.15s;
    border-radius: 50%;
}
.product-card__wishlist-btn:hover {
    color: #f2722c;
    transform: scale(1.15);
}
.product-card__wishlist-btn.is-active {
    color: #f2722c;
}
.product-card__wishlist-btn.is-active svg path {
    fill: #f2722c;
    stroke: #f2722c;
}

/* Иконка избранного в хедере */
.wishlist-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #f2722c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}
.wishlist-count.hidden { display: none; }

/* Страница избранного — пустое состояние */
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    gap: 16px;
}
.wishlist-empty svg {
    opacity: 0.5;
}
.wishlist-empty h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D1F;
    margin: 0;
}
.wishlist-empty p {
    color: #6b7280;
    font-size: 15px;
    max-width: 380px;
    margin: 0;
}
.wishlist-empty .btn-orange {
    margin-top: 8px;
}

/* Страница избранного — сетка товаров */
.wishlist-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.wishlist-products-grid .product-card {
    list-style: none;
}

@media (max-width: 640px) {
    .wishlist-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}



/* -----------------------
   ПРОФИЛЬ КОМПАНИИ
----------------------- */

.profile-section-header {
    align-items: flex-start;
}
.profile-header-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.profile-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.profile-card--full {
    grid-column: 1 / -1;
}

.profile-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1B1D1F;
    margin-bottom: 16px;
}

.profile-field-group {
    margin-bottom: 14px;
}
.profile-field-group:last-child { margin-bottom: 0; }

.profile-field-group label {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.profile-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #1B1D1F;
    background: #F9FAFB;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.profile-input[readonly] {
    background: #F9FAFB;
    color: #374151;
    cursor: default;
}
.profile-input:not([readonly]) {
    background: #fff;
    border-color: #06b6d4;
}
.profile-input:not([readonly]):focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

.profile-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Опасная зона */
.profile-danger-zone {
    border: 1.5px solid #FEE2E2;
    background: #FFF9F9;
}
.profile-danger-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.profile-danger-icon {
    display: flex;
    align-items: center;
}
.profile-danger-title {
    font-size: 15px;
    font-weight: 700;
    color: #ef4444;
}
.profile-danger-text {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 14px;
    line-height: 1.5;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-danger:hover { background: #dc2626; }

/* Уведомление профиля */
.profile-notice {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}
.profile-notice.success { background: #D1FAE5; color: #065F46; }
.profile-notice.error   { background: #FEE2E2; color: #B91C1C; }

/* Кнопка outline — определена выше */

/* Кнопка выхода */
.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    color: #1B1D1F;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.btn-logout:hover { border-color: #9CA3AF; }
/* Перебиваем старый .btn-logout с position:relative и ::before с фоновой иконкой */
.btn-logout { position: static; padding: 8px 16px; }
.btn-logout::before { content: none; }

@media (max-width: 900px) {
    .profile-grid { grid-template-columns: 1fr; }
    .profile-card--full { grid-column: 1; }
    .profile-two-col { grid-template-columns: 1fr; }
}


/* -----------------------
   ДОКУМЕНТЫ СТРАНИЦА
----------------------- */

.docs-notice-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.docs-notice-icon { flex-shrink: 0; padding-top: 2px; }
.docs-notice-block strong { display: block; font-size: 14px; color: #1B1D1F; margin-bottom: 4px; }
.docs-notice-block p { font-size: 13px; color: #6B7280; margin: 0; line-height: 1.5; }

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.doc-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-check-icon { flex-shrink: 0; }

.doc-category {
    font-size: 13px;
    color: #6B7280;
    font-weight: 400;
}

.doc-title {
    font-size: 16px;
    font-weight: 600;
    color: #1B1D1F;
    line-height: 1.4;
}

.doc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9CA3AF;
    gap: 8px;
    flex-wrap: wrap;
}

.doc-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    color: #1B1D1F;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}
.doc-download-btn:hover {
    border-color: #f2722c;
    color: #f2722c;
}

.docs-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 12px;
    color: #9CA3AF;
    text-align: center;
}

@media (max-width: 640px) {
    .docs-grid { grid-template-columns: 1fr; }
}

/* ── Модалка «Запросить цену» ── */
.pmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.pmodal-overlay[hidden] { display: none; }
.pmodal-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    animation: pmodal-in .2s ease;
}
@keyframes pmodal-in {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pmodal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color .2s;
}
.pmodal-close:hover { color: #222; }
.pmodal-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
}
.pmodal-subtitle {
    font-size: 14px;
    color: #777;
    margin: 0 0 24px;
}
.pmodal-req { color: #ee5555; }
.pmodal-form { display: flex; flex-direction: column; gap: 16px; }
.pmodal-field { display: flex; flex-direction: column; gap: 6px; }
.pmodal-field label { font-size: 14px; font-weight: 300; color: #222; }
.pmodal-field input {
    height: 48px;
    padding: 0 12px;
    border: 1px solid #57bcd3;
    background: #fef7f3;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    transition: border .25s, box-shadow .25s;
}
.pmodal-field input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 1px rgba(6,182,212,.15);
}
.pmodal-policy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}
.pmodal-policy input[type="checkbox"] { display: none; }
.pmodal-checkmark {
    width: 20px; height: 20px; min-width: 20px;
    background: #f8f8f8; border: 1px solid #dadada;
    border-radius: 4px; position: relative; display: inline-block;
}
.pmodal-policy input[type="checkbox"]:checked + .pmodal-checkmark::after {
    content: ''; position: absolute;
    left: 5px; top: 1px; width: 6px; height: 12px;
    border: solid #06b6d4; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.pmodal-policy a { color: #06b6d4; text-decoration: underline; }
.pmodal-submit {
    height: 50px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}
.pmodal-submit:disabled { opacity: .7; cursor: default; }
.price-request-msg { font-size: 13px; min-height: 16px; text-align: center; }
.price-request-msg.success { color: #16a34a; font-weight: 500; }
.price-request-msg.error   { color: #dc2626; }
@media (max-width: 480px) {
    .pmodal-wrap { padding: 28px 20px; }
    .pmodal-title { font-size: 19px; }
}

/* ── 404 ─────────────────────────────────────────────────── */
.error-404 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.error-404-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.error-404 .container {
    position: relative;
    z-index: 1;
}
.error-404-text {
    max-width: 520px;
    text-align: center;
    margin: 0 auto;
}
.error-404-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}
.error-404-desc {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 32px;
}
.error-404-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}
@media (max-width: 480px) {
    .error-404-title { font-size: 26px; }
    .error-404-desc  { font-size: 15px; }
}

@media (max-width: 900px) {
    .cont-block { flex-direction: column; }
}

/* ── Auth pages (account, forgot-password, reset-password) ── */
.auth-back-wrap { max-width: 560px; margin: 24px auto 0; padding: 0 20px; }
.auth-back-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f2722c; border: none; border-radius: 50px;
    padding: 8px 16px; font-family: 'Manrope', sans-serif;
    font-size: 14px; font-weight: 500; color: #fff; cursor: pointer; transition: background 0.2s;
    text-decoration: none;
}
.auth-back-btn:hover { background: #d95f1e; }

.custom-auth-container {
    max-width: 480px; margin: 20px auto 60px;
    padding: 36px 32px 32px; background: #fff;
    border-radius: 16px; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    font-family: 'Manrope', sans-serif;
}

.auth-header { text-align: center; margin-bottom: 24px; }
.auth-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; background: #06b6d4; border-radius: 14px; margin-bottom: 14px;
}
.auth-title { font-size: 24px; font-weight: 700; color: #1B1D1F; margin: 0 0 6px; }
.auth-subtitle { font-size: 14px; color: #6B7280; margin: 0; line-height: 1.5; }

.auth-tabs {
    display: flex; background: #F3F4F6; border-radius: 10px;
    padding: 4px; gap: 4px; margin-bottom: 24px;
}
.auth-tab {
    flex: 1; padding: 9px 12px; border-radius: 8px; border: none;
    background: none; font-family: 'Manrope', sans-serif; font-size: 14px;
    font-weight: 500; color: #6B7280; cursor: pointer; transition: all 0.2s;
}
.auth-tab.active {
    background: #fff; color: #1B1D1F; font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.auth-field { margin-bottom: 14px; }
.auth-field label { display: block; font-size: 13px; font-weight: 500; color: #374151; margin-bottom: 5px; }
.auth-field input {
    width: 100%; padding: 11px 14px; border: 1.5px solid #E5E7EB;
    border-radius: 8px; font-family: 'Manrope', sans-serif; font-size: 14px;
    color: #1B1D1F; background: #fff; box-sizing: border-box; outline: none; transition: border-color 0.2s;
}
.auth-field input:focus { border-color: #06b6d4; }

.auth-pass-wrap { position: relative; }
.auth-pass-wrap input { padding-right: 40px; }
.auth-pass-toggle {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: #9CA3AF; padding: 0;
}
.auth-pass-toggle:hover { color: #374151; }

.auth-remember {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; font-size: 13px; color: #6B7280;
}
.auth-remember label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.auth-remember input[type="checkbox"] { accent-color: #f2722c; }
.auth-forgot { color: #f2722c; text-decoration: none; font-size: 13px; }
.auth-forgot:hover { text-decoration: underline; }

.auth-submit {
    display: block; width: 100%; padding: 13px;
    font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
    border: none; border-radius: 10px; cursor: pointer; margin-top: 4px;
}
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.auth-switch { text-align: center; margin-top: 16px; font-size: 13px; color: #6B7280; }
.auth-switch a { color: #f2722c; text-decoration: none; font-weight: 500; }
.auth-switch a:hover { text-decoration: underline; }

.auth-notice {
    padding: 10px 14px; margin-bottom: 14px; border-radius: 8px; font-size: 13px;
}
.auth-notice.error { background: #FEE2E2; color: #B91C1C; }
.auth-notice.success { background: #D1FAE5; color: #065F46; }

@media (max-width: 600px) {
    .custom-auth-container { margin: 12px 16px 40px; padding: 24px 20px; }
    .auth-back-wrap { padding: 0 16px; }
    .auth-title { font-size: 20px; }
}
