input {
  border: none;
  margin: 0;
  padding: 0;
}
#search-form {
  display: flex;
}
.search-bar.expanded {
  position: relative;
}
.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  /* ✅ убираем скролл */
  text-overflow: ellipsis;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 5px;
  padding: 10px 15px;
  max-width: 100vw;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  /* важно для flex + ellipsis */
}
.breadcrumbs span .breadcrumb-link {
  color: #555;
  font-size: 14px;
  text-decoration: none;
}
.breadcrumbs span .breadcrumb-link:hover {
  text-decoration: underline;
}
.breadcrumbs span .breadcrumb-link.disabled-link {
  color: #000;
  font-weight: 600;
  pointer-events: none;
}
.breadcrumbs span .icon {
  margin: 0 5px;
  width: 12px;
  height: 12px;
  fill: #999;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .wrapper {
    margin: 50px auto 0;
    padding: 0 4rem;
  }
}
@media (max-width: 576px) {
  .breadcrumbs {
    font-size: 13px;
    padding: 8px 10px;
  }
}
.expanded #search-results {
  position: absolute;
  background: #fff;
  top: 40px;
  width: 210px;
  border: 1px solid #ececf4;
  border-radius: 10px 10px 10px 10px;
  padding: 5px 10px;
  left: -1px;
  font-size: 14px;
}
.account-section a.logout {
  width: 24px;
}
#step2,
#step3 .header-cart .cart-sum {
  color: #000;
}
#step2,
#step3 a {
  color: #000;
}
#step2,
#step3 a:hover,
#step2,
#step3 a:focus {
  color: #000;
  text-decoration: underline;
}
#app .navigation-buttons {
  z-index: 1;
}
#step2 .btn-primary,
#step3 .btn-primary {
  color: #000;
  background-color: inherit;
  border: none;
}
#step2 h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
#step3 h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.main-navbar {
  padding: 4px 84px;
}
.catalog-section .sidebar-item.active a {
  font-weight: 300;
}
footer .social-section {
  grid-area: social;
}
.sidebar-item_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-v1 {
  padding: 16px 26px;
  max-height: inherit;
}
.card-v1 .counter-section {
  justify-content: space-around;
}
.product-detail-container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  overflow: visible;
}
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  position: sticky;
  top: 160px;
  /* ← 107px шапка + 13px отступ сверху */
  align-self: start;
  z-index: 2;
}
.product-gallery .product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-gallery .product-thumbs .thumb {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery .product-thumbs .thumb img {
  max-width: 100%;
  max-height: 100%;
}
.product-gallery .product-thumbs .thumb.active {
  border: 2px solid #000;
}
.product-gallery .product-thumbs .thumb.more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: #f4f4f4;
}
.product-gallery .product-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 16px 0;
  display: flex;
  justify-content: center;
}
.product-gallery .product-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.product-gallery .product-image .product-labels {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-gallery .product-image .product-labels .label-last {
  background: #f2f2f2;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.product-gallery .product-image .product-labels .label-discount {
  background: #f44336;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.catalog-cards-v2 {
  display: grid;
  grid-template-columns: auto;
  gap: 0;
}
.catalog-cards-v2 #product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.show-more-wrapper.text-center.mt-4 {
  display: flex;
  justify-content: center;
  margin-top: 0 !important;
}
.about-center {
  margin: 60px auto;
}
.about-center p {
  margin: 15px 0 15px;
}
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  position: relative;
  background-color: #fff;
  padding: 24px;
  max-width: 600px;
  width: 100%;
  height: auto;
  max-height: 90vh;
  /* ограничение по высоте */
  overflow-y: auto;
  /* если вдруг контента много — появится скролл */
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.category-info-wrapper .category-info {
  margin-top: 90px;
}
.product-detail .product-info .product-subtitle a {
  border-bottom: 1px dashed;
}
.product-detail .product-info .product-pricing .main-price {
  flex-direction: column;
}
.product-detail .product-info .product-pricing .main-price .price {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .faq-section {
    padding: 0 15px;
  }
  .category-info-wrapper,
  .slider-choice-wrapper {
    padding: 0 15px;
  }
  .slider-reviews-wrapper {
    padding: 0 15px;
    margin-top: 128px;
  }
}
.mobile-cart-icon {
  display: none;
}
@media (max-width: 576px) {
  .modal-content {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    padding: 16px;
  }
  .category-info-wrapper {
    margin-top: 15px;
  }
  .product-detail .product-detail-container {
    padding: 0 15px;
  }
  .last-reviews-ratings,
  .similar-cards-wrapper {
    padding: 0 15px;
  }
  .section.section-title {
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .modal-content {
    max-width: 100%;
    height: auto;
    max-height: 90vh;
    padding: 16px;
  }
  .wrapper {
    padding: 0;
  }
  .category-info-wrapper {
    margin-top: 15px;
  }
  .product-detail .product-detail-container {
    padding: 0 15px;
  }
  .last-reviews-ratings,
  .similar-cards-wrapper {
    padding: 0 15px;
  }
  .section.section-title {
    padding: 0 15px;
  }
}
.delivery-options {
  font-family: sans-serif;
}
.delivery-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.delivery-header div {
  display: flex;
  flex-direction: column;
}
.delivery-dates {
  color: #2ecc71;
  font-size: 14px;
}
.delivery-price {
  font-weight: bold;
  font-size: 16px;
}
.delivery-body {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}
.delivery-item.active .delivery-body {
  display: block;
}
.delivery-note {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
}
.catalog-card .card-content {
  background-color: rgba(255, 255, 255, 0.8);
}
.product-images .product-images-slide {
  border: none;
  padding: 0;
}
@media (max-width: 768px) {
  .product-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    position: inherit;
    top: 0;
  }
  .product-gallery .product-thumbs {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    flex-wrap: wrap;
  }
  .product-gallery .product-thumbs .thumb {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
@media (max-width: 1024px) {
  .product-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    position: inherit;
    top: 0;
  }
  .product-gallery .product-thumbs {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    flex-wrap: wrap;
  }
  .product-gallery .product-thumbs .thumb {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
.product-title-text {
  font-size: 25px;
}
.product-detail .product-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 100vh;
}
.catalog-navigation {
  grid-column: 1 / -1;
}
.mobile-menu__nav > .menu {
  max-height: 80vh;
  /* ограничиваем высоту */
  overflow-y: auto;
  /* включаем вертикальный скролл */
}
.availability {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 35px;
  height: 31px;
  font-size: 13px;
}
.availability .stock-status {
  font-size: 10px;
  display: inline-block;
  padding: 0 10px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
.stock-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.stock-ok {
  background-color: #4CAF50;
  /* зелёный */
}
.stock-warn {
  background-color: #FFC107;
  /* жёлтый */
}
.stock-low {
  background-color: #FF5722;
  /* оранжевый */
}
.stock-out {
  background-color: #F44336;
  /* красный */
}
.catalog-section .sidebar-menu .sidebar-item-icon {
  opacity: 0;
}
.catalog-section .sidebar-menu > .sidebar-item.active > .sidebar-item_name .sidebar-item-icon {
  opacity: 1;
}
.catalog-section .sidebar-menu > .sidebar-item.active > .sidebar-item_name > a {
  font-weight: 700;
}
.catalog-section .sidebar-menu .sidebar-item {
  display: block;
}
.catalog-section .sidebar-menu .sidebar-item.active > .subcategory {
  display: block!important;
}
.catalog-section .sidebar-menu .sidebar-item.active > .subcategory > .sidebar-item.active .sidebar-item-icon {
  opacity: 1;
}
.catalog-section .sidebar-menu .sidebar-item.active > .subcategory > .sidebar-item.active > .sidebar-item_name a {
  font-weight: 700;
}
@media (max-width: 576px) {
  .category-title {
    font-size: 22px;
    line-height: 44px;
    padding: 0 15px;
  }
  .catalog-cards .catalog-card {
    max-height: 213px;
    padding: 12px 6px;
  }
  .catalog-cards .catalog-card .image-container {
    border-radius: 25px;
    overflow: hidden;
  }
  .catalog-cards .catalog-card .image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .catalog-cards .catalog-card .card-content {
    width: 87%;
    top: -110px;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
  }
}
/* Стили для страницы оформления заказа */
.order-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.order-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.order-section {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
}
.order-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.order-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.order-field label {
  font-weight: bold;
  margin-bottom: 5px;
}
.order-field input,
.order-field select,
.order-field textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}
.order-summary {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
.order-button {
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.order-button:hover {
  background: #218838;
}
.delivery-payment-container .delivery-options .field-order-delivery_option .delivery-option .delivery-option-content {
  display: flex;
  flex-direction: column;
}
.delivery-payment-container .delivery-options .field-order-delivery_option .delivery-option .delivery-option-content .delivery-time {
  font-size: 14px;
}
.delivery-payment-container .delivery-options .field-order-delivery_option .delivery-option .delivery-option-content .delivery-time small {
  font-weight: bold;
  font-size: 14px;
  background: #ffe24b;
  padding: 3px 5px 2px;
}
.delivery-payment-container .payment-method-section .payment-option .payment-option-content {
  display: flex;
  flex-direction: column;
}
.delivery-payment-container .payment-method-section .payment-option .payment-option-content .payment-description {
  margin-top: 14px;
  font-size: 14px;
}
.order-status .order-info #chosen-payment,
.order-status .order-info #chosen-delivery,
.order-status .order-info .delivery-date {
  font-weight: 500;
  padding: 8px 16px;
  background: #ffe24b;
  border-radius: 8px;
  display: inline-flex;
  width: fit-content;
}
.delivery-address-container h2 {
  margin-bottom: 45px;
}
.delivery-option,
.payment-option {
  margin-bottom: 15px;
}
.order-status-content .status-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.order-status-content .status-item .cart-name {
  flex: 1 1 auto;
  padding-right: 10px;
  word-break: break-word;
}
.order-status-content .status-item .cart-qty {
  width: 80px;
  text-align: center;
  flex-shrink: 0;
}
.order-status-content .status-item .cart-price {
  width: 100px;
  text-align: right;
  flex-shrink: 0;
}
.mobile-menu__user .user-login {
  display: flex;
  flex-direction: column;
}
.mobile-menu__user .user-login > a {
  font-size: 15px;
  padding: 8px 0 8px 38px;
}
.mobile-menu__user .user-login > a.logout {
  color: #c00;
  font-weight: bold;
}
.mobile-menu__user .user-info {
  border-bottom: 1px solid #ececf4;
  padding-bottom: 15px;
}
.mobile-menu__nav .menu {
  padding-left: 0;
}
.counter .count {
  width: 30px;
}
.seo_text {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.seo_text h1,
.seo_text h2,
.seo_text h3,
.seo_text h4,
.seo_text h5,
.seo_text h6 {
  font-weight: 600;
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
  color: #111;
}
.seo_text h1 {
  font-size: 2rem;
}
.seo_text h2 {
  font-size: 1.75rem;
}
.seo_text h3 {
  font-size: 1.5rem;
}
.seo_text h4 {
  font-size: 1.25rem;
}
.seo_text h5 {
  font-size: 1.1rem;
}
.seo_text h6 {
  font-size: 1rem;
  color: #555;
}
.seo_text p {
  margin: 0 0 1em;
  font-size: 1rem;
  color: #444;
}
.seo_text a {
  color: #0066cc;
  text-decoration: underline;
}
.seo_text a:hover {
  color: #004999;
  text-decoration: none;
}
.seo_text ul,
.seo_text ol {
  margin: 0 0 1em 2em;
  padding: 0;
}
.seo_text ul li,
.seo_text ol li {
  margin: 0.25em 0;
  line-height: 1.5;
}
.seo_text ul li {
  list-style-type: disc;
}
.seo_text ul li ul li {
  list-style-type: circle;
}
.seo_text ol li {
  list-style-type: decimal;
}
.seo_text ol li ol li {
  list-style-type: lower-alpha;
}
.seo_text blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 4px solid #ccc;
  color: #555;
  font-style: italic;
  background: #f9f9f9;
}
.seo_text blockquote p {
  margin: 0;
}
.seo_text pre,
.seo_text code {
  font-family: 'Courier New', monospace;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.seo_text pre {
  padding: 1em;
  overflow-x: auto;
  margin: 1em 0;
}
.seo_text code {
  padding: 0.2em 0.4em;
  font-size: 0.95rem;
}
.seo_text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}
.seo_text table th,
.seo_text table td {
  border: 1px solid #ccc;
  padding: 0.5em 0.75em;
  text-align: left;
}
.seo_text table thead {
  background: #f0f0f0;
  font-weight: 600;
}
.seo_text table tbody tr:nth-child(even) {
  background: #fafafa;
}
.catalog-cards-v2 .price-wrapper,
.product-cards .price-wrapper,
.similar-cards-wrapper .price-wrapper {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-around;
}
.catalog-cards-v2 .price-wrapper .price-old,
.product-cards .price-wrapper .price-old,
.similar-cards-wrapper .price-wrapper .price-old {
  text-decoration: line-through;
}
.catalog-cards-v2 .price-wrapper .price-new,
.product-cards .price-wrapper .price-new,
.similar-cards-wrapper .price-wrapper .price-new {
  font-size: 25px;
  font-weight: bold;
}
.catalog-cards-v2 .reference-price p,
.product-cards .reference-price p,
.similar-cards-wrapper .reference-price p {
  text-align: center;
}
.catalog-cards-v2 .reference-price p strong,
.product-cards .reference-price p strong,
.similar-cards-wrapper .reference-price p strong {
  font-weight: normal;
  font-size: 14px;
  color: #999;
}
.catalog-cards-v2 .card-v1 .title,
.product-cards .card-v1 .title,
.similar-cards-wrapper .card-v1 .title {
  height: 42px;
  overflow: hidden;
}
.catalog-cards-v2 .counter-section.product-item,
.product-cards .counter-section.product-item,
.similar-cards-wrapper .counter-section.product-item {
  border: none;
}
.catalog-cards-v2 .counter-section.product-item .counter,
.product-cards .counter-section.product-item .counter,
.similar-cards-wrapper .counter-section.product-item .counter {
  width: auto;
}
.catalog-cards-v2 .counter-section.product-item .minus,
.product-cards .counter-section.product-item .minus,
.similar-cards-wrapper .counter-section.product-item .minus,
.catalog-cards-v2 .counter-section.product-item .plus,
.product-cards .counter-section.product-item .plus,
.similar-cards-wrapper .counter-section.product-item .plus {
  height: 43px;
  width: 43px;
  background: #F8F8FA;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog-cards-v2 .btn-secondary.btn-buy:hover,
.product-cards .btn-secondary.btn-buy:hover,
.similar-cards-wrapper .btn-secondary.btn-buy:hover {
  background: #FFE24B;
  color: #000;
}
@media (max-width: 576px) {
  .delivery-address {
    padding: 0 15px;
  }
  .navigation-buttons {
    z-index: 5;
  }
  .order-success {
    padding: 65px 15px 0;
  }
  .order-steps-container .order-steps {
    justify-content: space-around;
  }
  .order-steps-container .order-steps .order-step .step-separator {
    display: none;
  }
  .order-steps-container .order-steps .order-step .step-name {
    display: block;
    font-size: 11px;
  }
  .order-steps-container .order-steps .order-step.order-step--active .step-name {
    display: block;
    font-size: 13px;
  }
  .card-v1 .image-container {
    height: inherit;
  }
  .mobile-navbar .cart-sum {
    display: none;
  }
  footer {
    display: flex;
    flex-direction: column;
  }
  footer .footer-links-section {
    display: flex;
    flex-direction: column;
  }
  footer .copyright-section .footer-bottom-links {
    flex-direction: column;
  }
  .wrapper {
    margin: 30px auto 0;
    padding: 0;
  }
  .catalog-cards .catalog-card {
    height: 92px;
    display: flex;
  }
  .catalog-cards .catalog-card .card-content {
    top: inherit;
  }
  .catalog-cards .catalog-card .image-container {
    height: 80px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}
.main-navbar-desktop #search-results {
  display: none;
}
.main-navbar-desktop .search-bar.expanded {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 55;
  background: #fff;
  top: 0;
  padding: 0;
}
.main-navbar-desktop .search-bar.expanded .search-icon {
  position: relative;
  top: 14px;
}
.main-navbar-desktop .search-bar.expanded .search-input.expanded {
  padding: 17px 10px 20px;
  font-size: 19px;
  display: block;
}
.main-navbar-desktop .search-bar.expanded #search-results {
  display: block;
  width: 100%;
  top: 58px;
  font-size: 15px;
}
.main-navbar-desktop .search-bar.expanded #search-results > div {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
.main-navbar-desktop .search-bar.expanded #search-form {
  width: 100%;
}
.catalog-section_new .catalog-cards {
  display: grid;
  grid-template-columns: repeat(var(--count-in-row), 1fr);
  gap: 16px 8px;
  max-height: var(--max-height);
  overflow: hidden;
  flex-direction: row;
  row-gap: 8px;
  --max-height: 270px;
  --count-in-row: 12;
}
.catalog-section_new .catalog-cards .catalog-card {
  display: flex;
  gap: 8px;
  align-items: center;
  height: auto;
  flex-direction: column;
}
.catalog-section_new .catalog-cards .catalog-card .image-container img {
  width: 100px;
  height: 100px;
}
.catalog-section_new .catalog-cards .catalog-card a {
  position: initial;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  gap: 0;
  display: block;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.5s ease;
}
.catalog-section_new .catalog-cards .catalog-card a .card-content-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.catalog-section_new .catalog-cards .catalog-card a .card-content-top svg {
  display: none;
}
.catalog-section_new .catalog-cards .catalog-card a .card-content-top h5 {
  font-size: 12px;
  text-align: center;
}
.catalog-section_new .catalog-cards .catalog-card a p {
  display: none;
}
.mobile-navbar .search-bar.expanded {
  position: absolute;
  background: #fff;
  left: 0;
  width: 100%;
  top: 0;
}
.mobile-navbar .search-bar.expanded #mobile-search-form {
  display: flex;
  width: 100%;
  height: 43px;
  align-content: center;
  align-items: center;
}
.mobile-navbar .search-bar.expanded #mobile-search-results {
  position: absolute;
  z-index: 100;
  background: #fff;
  top: 59px;
  width: 100%;
  left: 0;
  padding: 0 15px;
}
.mobile-navbar .search-bar.expanded #mobile-search-results > div {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
.mobile-navbar .search-bar.expanded #mobile-search-results > div a {
  display: block;
}
.filter-toggle-btn {
  display: none;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .filter-sidebar {
    display: none;
  }
  .filter-toggle-btn {
    display: inline-block;
  }
  .catalog-section_new .catalog-cards {
    --count-in-row: 4;
    --max-height: inherit;
  }
  .catalog-section {
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .card-v1 .counter {
    display: flex;
  }
}
@media (max-width: 767px) {
  .static-page {
    padding-top: 50px;
  }
  .product-thumbs {
    display: flex;
    gap: 6px;
    overflow: hidden;
  }
  .product-thumbs .thumb {
    flex-shrink: 0;
  }
  .product-thumbs .thumb:nth-child(n+6):not(.more) {
    display: none;
  }
  .product-thumbs .thumb.more {
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    background: #f5f5f5;
    border-radius: 4px;
    min-width: 48px;
    min-height: 48px;
    cursor: pointer;
  }
}
.product-cards-wrapper {
  margin: 48px 0;
}
.slider-category-cards.category-cards {
  margin-top: 0;
}
.instagram-feed {
  margin-top: 64px;
}
footer {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  /* logo | (social+payment) | links | info | contacts */
  grid-template-rows: auto auto auto;
  grid-template-areas: "logo social  links info contacts" "logo payment links info contacts" "copy copy    copy  copy  copy";
  align-items: start;
  gap: 24px;
}
/* назначение областей */
footer .logo-footer {
  grid-area: logo;
  align-items: flex-start;
  margin-top: 50%;
  display: block;
}
footer .social-section {
  grid-area: social;
}
footer .footer-links-section {
  grid-area: links;
}
footer .payment-section {
  grid-area: payment;
}
footer .info-section {
  grid-area: info;
}
footer .contact-section {
  grid-area: contacts;
}
footer .copyright-section {
  grid-area: copy;
}
/* чтобы логотип не расползался и не перекрывал соседей */
footer .logo-footer img {
  max-width: 140px;
  height: auto;
  display: block;
}
/* на маленьких экранах — ломаем в столбцы */
@media (max-width: 1226px) {
  footer {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }
  footer .logo-footer {
    margin-top: 35px;
    height: auto;
    margin: 0;
  }
  footer .footer-links-section {
    flex-direction: column;
  }
}
.account {
  --radius: 12px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
  /* Sidebar */
  /* Content */
  /* Stats */
  /* Cards grid */
}
.account__sidebar {
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: var(--radius);
  padding: 16px;
  position: sticky;
  top: 90px;
  height: fit-content;
}
.account__user {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.account__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eaecef;
}
.account__user-info .account__name {
  font-weight: 700;
  color: #111;
}
.account__user-info .account__email {
  color: #6b7280;
  font-size: 13px;
}
.account__dropdown {
  width: 28px;
  height: 28px;
  border: 1px solid #eaecef;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.account__dropdown:after {
  content: '⋯';
  display: block;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #6b7280;
}
.account__quick {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 12px 0 16px;
}
.account__quick .quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #eaecef;
  background: #f9fafb;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}
.account__quick .quick-pill:hover {
  background: #f3f4f6;
}
.account__nav {
  display: grid;
  gap: 2px;
}
.account__nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
}
.account__nav .nav-link:hover {
  background: #f9fafb;
}
.account__nav .nav-link.is-active {
  background: #eef2ff;
  font-weight: 600;
}
.account__nav .nav-link--danger {
  color: #ef4444;
}
.account__nav .nav-sep {
  height: 1px;
  background: #eaecef;
  margin: 8px 0;
}
.account__content {
  display: grid;
  gap: 20px;
}
.account__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.account__stats .stat {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: var(--radius);
  padding: 14px;
}
.account__stats .stat__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  display: inline-block;
}
.account__stats .stat__label {
  color: #6b7280;
  font-size: 13px;
}
.account__stats .stat__value {
  font-weight: 800;
  font-size: 18px;
}
.account__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
/* Generic Card */
.card {
  background: #fff;
  border: 1px solid #eaecef;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.card__header {
  padding: 14px 16px;
  border-bottom: 1px solid #eaecef;
}
.card__header h2 {
  margin: 0;
  font-size: 18px;
}
.card__body {
  padding: 16px;
}
.card__body--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.card__footer {
  padding: 14px 16px;
  border-top: 1px solid #eaecef;
  display: flex;
  justify-content: flex-start;
}
/* Profile card content */
.profile {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}
.profile__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eaecef;
}
.profile__badge {
  display: inline-block;
  background: #e8edff;
  color: #2563eb;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 6px;
}
.profile__name {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}
.profile__list {
  margin: 0;
}
.profile__list dt {
  font-weight: 700;
  margin-top: 8px;
}
.profile__list dd {
  margin: 2px 0 6px;
  color: #6b7280;
}
/* Plan card */
.plan {
  display: grid;
  gap: 12px;
  align-content: start;
}
.plan__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.plan__tag {
  background: #e8edff;
  color: #2563eb;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}
.plan__price {
  font-weight: 800;
  font-size: 22px;
}
.plan__price span {
  color: #6b7280;
  font-weight: 400;
  font-size: 14px;
  margin-left: 4px;
}
.plan__list {
  display: grid;
  gap: 8px;
}
.plan__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #111;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #eaecef;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
}
.btn--primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.btn--primary:hover {
  filter: brightness(0.95);
}
.btn--ghost {
  background: #fff;
  color: #111;
}
/* Phosphor Icons — base + contextual sizing */
.account i[class^="ph-"],
.account i[class*=" ph-"] {
  display: inline-block;
  line-height: 1;
  font-size: 18px;
  color: #6b7280;
  vertical-align: middle;
}
/* Quick actions (Profile / Gifts / Wallet) */
.account__quick .quick-pill i[class^="ph-"],
.account__quick .quick-pill i[class*=" ph-"] {
  font-size: 18px;
  margin-right: 6px;
  color: #2563eb;
}
/* Sidebar nav icons */
.account__nav .nav-link i[class^="ph-"],
.account__nav .nav-link i[class*=" ph-"] {
  font-size: 20px;
  color: #6b7280;
}
.account__nav .nav-link.is-active i[class^="ph-"],
.account__nav .nav-link.is-active i[class*=" ph-"] {
  color: #2563eb;
}
.account__nav .nav-link.nav-link--danger i[class^="ph-"],
.account__nav .nav-link.nav-link--danger i[class*=" ph-"] {
  color: #ef4444;
}
/* Top stats: мягкий контейнер под иконку */
.account__stats .stat .stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account__stats .stat .stat__icon i[class^="ph-"],
.account__stats .stat .stat__icon i[class*=" ph-"] {
  font-size: 22px;
  color: #2563eb;
}
/* Галочки в плане */
.plan__item i[class^="ph-"],
.plan__item i[class*=" ph-"] {
  color: #10b981;
  margin-top: 2px;
}
/* Кнопки с иконками */
.btn i[class^="ph-"],
.btn i[class*=" ph-"] {
  font-size: 18px;
}
/* Responsive */
@media (max-width: 1100px) {
  .account {
    grid-template-columns: 1fr;
  }
  .account__sidebar {
    position: static;
  }
  .account__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .card__body--split {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .account__quick {
    grid-template-columns: 1fr 1fr;
  }
  .account__stats {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=site.css.map */