@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary-color: #111827;
  --primary-dark: #000000;
  --text-color: #111827;
  --light-bg: #f9fafb;
  --dark-bg: #0a0a0a;
  --header-bg: rgba(255, 255, 255, 0.85);
  --white: #fff;
  --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.main {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  position: relative;
}

.shapka {
  width: 100%;
  height: 80px;
  background-color: var(--header-bg);
  margin: 0 auto;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  padding: 0 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shapka.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  height: 72px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 60px;
  transition: opacity 0.2s ease;
  letter-spacing: -0.03em;
}

.logo:hover {
  opacity: 0.8;
}

.logo .noe {
  color: var(--text-color);
}

.logo .wood {
  color: var(--home-text-muted, #6b7280);
  font-weight: 600;
}

.shapka_text ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shapka_text li {
  position: relative;
}

.shapka_text a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.shapka_text a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.2s ease;
}

.shapka_text a:hover:after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: var(--box-shadow);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md, 12px);
  padding: 8px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown.show-dropdown .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: background 0.2s ease;
  margin-bottom: 0;
}

.dropdown-menu a:hover {
  background-color: var(--light-bg);
  color: var(--text-color);
}

.dropdown-menu li a[href*=bathroom] {
  white-space: nowrap;
}

.dropdown-menu a:after {
  display: none;
}

.sp_t {
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s;
}

.sp_t:hover {
  color: var(--primary-color);
}

.frame_tel_soci {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 60px;
}

.tel_shapka {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
  letter-spacing: -0.02em;
}

.tel_shapka:hover {
  opacity: 0.7;
}

.social_m {
  display: flex;
  gap: 12px;
}

.social-icon {
  color: var(--text-color);
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0.6;
}

.social-icon:hover {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  opacity: 0.6;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 20px;
  margin-top: 100px;
}

.midl_block {
  width: 90%;
  max-width: 1545px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  padding: 40px 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.midl_txt {
  font-size: clamp(36px, 5vw, 96px);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.order_main {
  all: unset;
  background-color: var(--primary-color);
  border-radius: 100px;
  width: 190px;
  height: 65px;
  color: black;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  margin: 80px auto 0;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order_main:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: white;
  font-size: 30px;
  transition: var(--transition);
}

.scroll-down a:hover {
  color: var(--primary-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.advantage {
  width: 100%;
  max-width: 1920px;
  padding: 100px 0;
  margin: 0 auto;
  background-color: white;
}

.frame_adv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0 20px;
}

.block_adv {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.block_adv:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.img_adv {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.block_adv:hover .img_adv {
  transform: scale(1.1);
}

.txt_adv {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.nice {
  width: 100%;
  max-width: 1920px;
  padding: 60px 20px;
  background-color: var(--light-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 0 auto;
}

.block_nice {
  width: 100%;
  max-width: 652px;
  min-height: 150px;
  border-radius: 20px;
  background-color: var(--dark-bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
  gap: 15px;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
  box-shadow: var(--box-shadow);
  margin: 0;
  overflow: hidden;
}

.block_nice:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.img_nice {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  transition: transform 0.3s ease;
  z-index: 2;
}

.block_nice:hover .img_nice {
  transform: rotate(10deg) scale(1.1);
}

.block_nice span:first-of-type {
  background-color: var(--primary-color);
  color: black;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  z-index: 2;
}

.block_nice span:nth-of-type(2) {
  color: white;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  z-index: 2;
}

.block_nice span:last-of-type {
  color: white;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  z-index: 2;
}

.work {
  width: 100%;
  max-width: 1920px;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.text_work {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.text_work:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

.fr_block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1740px;
  margin: 0 auto;
}

.blockk {
  width: 270px;
  height: 443px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 0 calc(33.333% - 27px);
  margin-top: 20px;
  transition: all 0.5s ease;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blockk:nth-child(n+4) {
  margin-top: 40px;
}

.blockk:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.gallery-description {
  font-size: 14px;
  opacity: 0.8;
}

.inet_mag {
  width: 100%;
  max-width: 1920px;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.txt_inet_mag {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.txt_inet_mag:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

.block_text_mag {
  width: 100%;
  max-width: 1200px;
  background-color: var(--light-bg);
  margin: 0 auto;
  padding: 50px 30px;
  text-align: left;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.block_text_mag span {
  display: block;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.block_text_mag span strong {
  color: var(--primary-color);
  font-weight: 700;
}

.fr_txt_mag {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}

.testimonials-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.testimonials-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding: 30px;
  width: 100%;
  max-width: 350px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-stars {
  color: var(--primary-color);
}

.cta-section {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 20px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  background-color: var(--primary-color);
  color: black;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #222;
  color: white;
  padding: 50px 20px 30px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 60px;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.footer-social-icon {
  color: white;
  font-size: 22px;
  transition: var(--transition);
}

.footer-social-icon:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-contact-list,
.footer-nav-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li,
.footer-nav-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact-list i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-nav-list a {
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-nav-list a:before {
  content: "›";
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.map-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

#map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

#back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: black;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.catalog-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.catalog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 380px;
  min-height: 500px;
}
.catalog-item .catalog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.catalog-item .catalog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.catalog-item .catalog-item h3 {
  margin: 15px 0 10px;
  color: var(--text-color);
  font-size: 20px;
}
.catalog-item .catalog-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: black;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: var(--transition);
}
.catalog-item .catalog-link:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .catalog-item .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media (max-width: 576px) {
  .catalog-item .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-item .catalog-item {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .catalog-item .logo {
    margin-left: 20px;
  }
  .catalog-item .frame_tel_soci {
    margin-right: 20px;
  }
  .catalog-item .fr_block {
    gap: 20px;
  }
  .catalog-item .blockk {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 992px) {
  .catalog-item .mobile-menu-btn {
    display: block;
  }
  .catalog-item .shapka_text {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
  }
  .catalog-item .shapka_text.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .catalog-item .shapka_text ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .catalog-item .shapka_text li {
    margin: 10px 0;
  }
  .catalog-item .shapka_text a:after {
    bottom: -2px;
  }
  .catalog-item .frame_tel_soci {
    display: none;
  }
  .catalog-item .footer-container {
    justify-content: center;
  }
  .catalog-item .footer-column {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .catalog-item .midl_txt {
    font-size: clamp(24px, 5vw, 48px);
  }
  .catalog-item .order_main {
    width: 160px;
    height: 55px;
    font-size: 20px;
  }
  .catalog-item .blockk {
    flex: 0 0 100%;
    max-width: 400px;
  }
  .catalog-item .testimonial-card {
    max-width: 100%;
  }
  .catalog-item .footer-column {
    flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .catalog-item .shapka {
    height: 80px;
  }
  .catalog-item .logo {
    font-size: 24px;
    margin-left: 10px;
  }
  .catalog-item .mobile-menu-btn {
    margin-right: 10px;
  }
  .catalog-item .midl_block {
    padding: 30px 15px;
  }
  .catalog-item .block_adv {
    width: 100%;
  }
  .catalog-item .cta-title {
    font-size: 28px;
  }
  .catalog-item #map {
    height: 300px;
  }
}
@media (min-width: 2000px) {
  .catalog-item .shapka {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
  }
  .catalog-item .main {
    max-width: 100%;
  }
  .catalog-item .advantage,
  .catalog-item .work,
  .catalog-item .inet_mag {
    max-width: 100%;
  }
}
.catalog-item .logo a {
  text-decoration: none;
  color: inherit;
}

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --figma-bg: #f5f5f5;
  --figma-surface: #ffffff;
  --figma-text: #000000;
  --figma-muted: #8fa0c0;
  --figma-gap: 40px;
  --figma-page-pad: clamp(16px, 10.4vw, 200px);
  --figma-max: 1520px;
  --color-heading: var(--figma-text);
  --color-body: var(--figma-text);
  --color-muted: var(--figma-muted);
  --color-border: #e5e7eb;
  --color-border-subtle: rgba(0, 0, 0, 0.15);
  --color-bg: var(--figma-surface);
  --color-bg-soft: var(--figma-bg);
  --color-accent: var(--figma-text);
  --color-accent-hover: #333333;
  --color-accent-soft: var(--figma-bg);
  --color-card-bg: var(--figma-surface);
  --color-card-title: var(--figma-text);
  --color-card-tags: var(--figma-muted);
  --color-card-separator: var(--figma-muted);
  --color-btn-primary-bg: var(--figma-text);
  --color-btn-primary-text: var(--figma-surface);
  --color-btn-primary-hover-bg: #333333;
  --color-btn-outline-border: var(--color-border);
  --color-btn-ghost-hover-bg: var(--figma-text);
  --color-btn-ghost-hover-text: var(--figma-surface);
  --color-surface-hover: var(--figma-bg);
  --color-control-hover-bg: var(--color-bg-soft);
  --color-control-hover-border: var(--color-body);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.08);
  --hover-duration: 0.28s;
  --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hover-lift: -2px;
  --hover-link-opacity: 0.55;
  --hover-control-bg: var(--color-surface-hover);
  --hover-control-border: var(--figma-text);
  --color-text: var(--figma-text);
  --color-text-muted: var(--figma-muted);
  --primary-color: var(--figma-text);
  --primary-dark: #000000;
  --text-color: var(--figma-text);
  --light-bg: var(--figma-bg);
  --header-bg: var(--figma-surface);
  --nw-primary: var(--figma-text);
  --nw-accent: #333333;
  --nw-bg: var(--figma-surface);
  --nw-text: var(--figma-text);
  --nw-logo-neo: var(--figma-text);
  --nw-logo-wood: var(--figma-muted);
  --nw-font: var(--font-sans);
  --nw-radius: 0;
  --home-primary: var(--figma-text);
  --home-primary-dark: #000000;
  --home-bg: var(--figma-bg);
  --home-dark: #000000;
  --home-text: var(--figma-text);
  --home-text-muted: var(--figma-muted);
  --home-trust: var(--figma-muted);
}

[data-theme=dark] {
  color-scheme: dark;
  --figma-bg: #0f1419;
  --figma-surface: #1a222d;
  --figma-text: #f3f4f6;
  --figma-muted: #9ca3af;
  --color-border: #2d3748;
  --color-border-subtle: rgba(255, 255, 255, 0.12);
  --color-accent-hover: #4b5563;
  --color-btn-primary-bg: #374151;
  --color-btn-primary-text: #f3f4f6;
  --color-btn-primary-hover-bg: #4b5563;
  --color-btn-ghost-hover-bg: #243041;
  --color-btn-ghost-hover-text: var(--figma-text);
  --color-surface-hover: #243041;
  --color-control-hover-bg: #243041;
  --color-control-hover-border: #4b5563;
  --color-accent-soft: #243041;
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.35);
  --primary-dark: #4b5563;
  --header-bg: var(--figma-surface);
  --dark-bg: #0a0f14;
  --nw-accent: #d1d5db;
  --home-primary-dark: #4b5563;
}

@media (max-width: 768px) {
  :root {
    --figma-page-pad: 10px;
    --figma-gap: 24px;
  }
}
html {
  font-family: var(--font-sans);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

.noe,
.wood {
  color: var(--figma-text);
  font-weight: 900;
  font-family: var(--font-display);
}

.wood {
  font-weight: 700;
}

.figma-site .figma-btn,
.figma-site .btn-primary,
.figma-site .checkout-button,
.figma-site .apply-filters-btn,
.figma-site .catalog-product__order,
.figma-site .catalog-search__submit,
.figma-site .header-cta-button,
.figma-site .order-modal__submit,
.figma-site .order-modal__success-close,
.figma-site .modal-submit {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: background-color, color, border-color, transform, opacity;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site .figma-btn:hover,
  .figma-site .btn-primary:hover,
  .figma-site .checkout-button:hover,
  .figma-site .apply-filters-btn:hover,
  .figma-site .catalog-product__order:hover,
  .figma-site .catalog-search__submit:hover,
  .figma-site .header-cta-button:hover,
  .figma-site .order-modal__submit:hover,
  .figma-site .order-modal__success-close:hover,
  .figma-site .modal-submit:hover {
    background: var(--color-btn-primary-hover-bg);
    border-color: var(--color-btn-primary-hover-bg);
    color: var(--color-btn-primary-text);
    transform: translateY(var(--hover-lift));
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .figma-site {
    transform: none !important;
  }
}
.figma-site .figma-btn--ghost,
.figma-site .btn-secondary,
.figma-site .reset-filters-btn,
.figma-site .catalog-page__btn--secondary,
.figma-site .btn-home-outline,
.figma-site .home-gallery__more-btn {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: background-color, color, border-color, transform, opacity;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site .figma-btn--ghost:hover,
  .figma-site .btn-secondary:hover,
  .figma-site .reset-filters-btn:hover,
  .figma-site .catalog-page__btn--secondary:hover,
  .figma-site .btn-home-outline:hover,
  .figma-site .home-gallery__more-btn:hover {
    background: var(--color-btn-ghost-hover-bg);
    border-color: var(--color-btn-ghost-hover-bg);
    color: var(--color-btn-ghost-hover-text);
    transform: translateY(var(--hover-lift));
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .figma-site {
    transform: none !important;
  }
}
.figma-site .btn-home-primary {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: background-color, transform, opacity;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site .btn-home-primary:hover {
    background: var(--color-btn-primary-hover-bg);
    transform: translateY(var(--hover-lift));
  }
}
@media (prefers-reduced-motion: reduce) {
  .figma-site {
    transform: none !important;
  }
}
.figma-site .figma-card,
.figma-site .home-gallery__item,
.figma-site .gallery-mosaic__item {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: border-color;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site:hover .figma-card:hover,
  .figma-site:hover .home-gallery__item:hover,
  .figma-site:hover .gallery-mosaic__item:hover {
    border-color: var(--hover-control-border);
  }
}
.figma-site .figma-header__logo,
.figma-site .figma-header__link,
.figma-site .figma-header__phone,
.figma-site .footer-nav-list a,
.figma-site .footer-nav-link,
.figma-site .footer-contact-list a {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: opacity, color;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site:hover .figma-header__logo:hover,
  .figma-site:hover .figma-header__link:hover:not(.is-active),
  .figma-site:hover .figma-header__phone:hover,
  .figma-site:hover .footer-nav-list a:hover,
  .figma-site:hover .footer-nav-link:hover,
  .figma-site:hover .footer-contact-list a:hover {
    opacity: var(--hover-link-opacity);
  }
}
.figma-site .catalog-page__page-btn,
.figma-site .catalog-page__page-numbers span,
.figma-site .catalog-page__filters-toggle,
.figma-site .catalog-search__clear,
.figma-site .catalog-search__item,
.figma-site .nw-select__trigger,
.figma-site .site-controls__btn,
.figma-site .modal-close {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: background-color, color, border-color, opacity;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site:hover .catalog-page__page-btn:hover:not(:disabled),
  .figma-site:hover .catalog-page__page-numbers span:hover,
  .figma-site:hover .catalog-page__filters-toggle:hover,
  .figma-site:hover .catalog-search__clear:hover,
  .figma-site:hover .catalog-search__item:hover,
  .figma-site:hover .nw-select__trigger:hover:not(:disabled),
  .figma-site:hover .site-controls__btn:hover,
  .figma-site:hover .modal-close:hover {
    background: var(--hover-control-bg);
    border-color: var(--hover-control-border);
    color: var(--figma-text);
    opacity: 1;
  }
}
.figma-site .catalog-page__page-numbers span.is-active {
  background: var(--hover-control-bg);
  border-color: var(--hover-control-border);
  color: var(--figma-text);
}
.figma-site .catalog-page__category-link {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: color, border-color, background-color;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site:hover .catalog-page__category-link:hover:not(.is-active) {
    color: var(--figma-text);
  }
}
.figma-site .figma-glass--btn {
  transition-duration: var(--hover-duration);
  transition-timing-function: var(--hover-ease);
  transition-property: background-color, transform, opacity;
}
@media (hover: hover) and (pointer: fine) {
  .figma-site .figma-glass--btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(var(--hover-lift));
  }
}
@media (prefers-reduced-motion: reduce) {
  .figma-site {
    transform: none !important;
  }
}

/* Tokens & fonts: css/main.css (compiled from scss/) */
body.figma-site {
  background: var(--figma-bg);
  color: var(--figma-text);
  padding-top: 0 !important;
}

/* ── Header ── */
.figma-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--figma-page-pad);
  gap: 24px;
  width: 100%;
  height: 80px;
  background: var(--figma-surface);
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

.figma-header__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  color: var(--figma-text);
  text-decoration: none;
  flex-shrink: 0;
}

.figma-header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.figma-header__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--figma-text);
  text-decoration: none;
}

.figma-header__link.is-active {
  opacity: var(--hover-link-opacity);
}

.figma-header__nav-phone {
  display: none;
}

.figma-header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.figma-header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--figma-text);
  text-decoration: none;
  white-space: nowrap;
}

.figma-header__burger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--figma-text);
  padding: 10px;
  margin: -10px -10px -10px 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.figma-header__burger-lines {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.figma-header__burger-lines span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.figma-header__burger-lines span:nth-child(1) {
  top: 0;
}

.figma-header__burger-lines span:nth-child(2) {
  top: 7px;
}

.figma-header__burger-lines span:nth-child(3) {
  top: 14px;
}

.figma-header--open .figma-header__burger-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.figma-header--open .figma-header__burger-lines span:nth-child(2) {
  opacity: 0;
}

.figma-header--open .figma-header__burger-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.figma-header__backdrop {
  display: none;
}

/* ── Page shell ── */
.figma-page-main {
  padding: var(--figma-gap) var(--figma-page-pad) clamp(48px, 6vw, 80px);
  box-sizing: border-box;
}

.figma-page-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 2.5vw, 40px);
  line-height: 1.2;
  color: var(--figma-text);
}

/* ── Shared buttons ── */
.figma-btn,
.btn-primary,
.checkout-button,
.apply-filters-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  background: var(--figma-text);
  color: var(--figma-surface);
  border: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}

.figma-btn--ghost,
.reset-filters-btn,
.btn-secondary {
  background: var(--figma-surface);
  color: var(--figma-text);
  border: 1px solid var(--color-border);
}

/* ── Footer ── */
.figma-site .footer {
  background: var(--figma-surface);
  color: var(--figma-text);
  padding: 30px var(--figma-page-pad);
  border-top: none;
}

.figma-site .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  max-width: var(--figma-max);
  margin: 0 auto;
}

.figma-site .footer-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(32px, 10vw, 200px);
}

.figma-site .footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(40px, 8vw, 100px);
  flex: 0 0 auto;
  width: min(100%, 547px);
}

.figma-site .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.figma-site .footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin: 0;
  color: var(--figma-text);
}

.figma-site .footer-description {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 24px;
  color: var(--figma-text);
  opacity: 1;
}

.figma-site .footer-links-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(32px, 8vw, 100px);
  width: 100%;
}

.figma-site .footer-nav-block,
.figma-site .footer-contacts-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.figma-site .footer-nav-block {
  min-width: 142px;
}

.figma-site .footer-contacts-block {
  min-width: 0;
  flex: 1;
}

.figma-site .footer-block-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 24px;
  color: var(--figma-text);
  opacity: 0.5;
}

.figma-site .footer-nav-list,
.figma-site .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.figma-site .footer-nav-list li,
.figma-site .footer-contact-list li {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 24px;
  color: var(--figma-text);
}

.figma-site .footer-nav-list a,
.figma-site .footer-nav-link,
.figma-site .footer-contact-list a {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  position: static;
}

.figma-site .footer-nav-list a::before {
  display: none;
  content: none;
}

.figma-site .footer-map {
  flex: 1 1 0;
  min-width: 0;
  height: 372px;
  max-height: 372px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.figma-site .footer-map #map,
.figma-site .footer-map .footer-map__canvas {
  width: 100%;
  height: 100%;
  max-height: 372px;
  border-radius: 0;
  box-shadow: none;
  background: var(--figma-bg);
  overflow: hidden;
}

.figma-site .footer-divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid var(--figma-text);
  opacity: 0.2;
}

.figma-site .footer-copyright {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 16px);
  line-height: 24px;
  text-align: center;
  color: var(--figma-text);
  opacity: 0.5;
}

@media (max-width: 992px) {
  .figma-site .footer-main {
    flex-direction: column;
  }
  .figma-site .footer-info {
    width: 100%;
  }
  .figma-site .footer-map {
    width: 100%;
    height: min(372px, 56vw);
    max-height: min(372px, 56vw);
  }
  .figma-site .footer-map #map,
  .figma-site .footer-map .footer-map__canvas {
    max-height: min(372px, 56vw);
  }
}
@media (max-width: 640px) {
  .figma-site .footer-links-row {
    flex-direction: column;
    gap: 32px;
  }
}
/* ── Modal ── */
.figma-site .modal:not(.order-modal) {
  border-radius: 0;
  max-width: 480px;
}

.figma-site .order-modal {
  width: min(100%, 870px);
  max-width: min(100%, 870px);
}

.figma-site .modal-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 28px);
}

.figma-site .modal-close:hover {
  color: var(--figma-text);
}

.figma-site .modal-submit {
  background: var(--figma-text);
  color: var(--figma-surface);
  border-radius: 0;
}

/* ── Hide legacy header on figma pages ── */
.figma-site .shapka {
  display: none;
}

@media (max-width: 992px) {
  .figma-header {
    position: sticky;
    top: 0;
    height: 64px;
    padding: 12px max(16px, var(--figma-page-pad));
    gap: 12px;
  }
  .figma-header__burger {
    display: inline-flex;
  }
  .figma-header__right {
    gap: 8px;
    margin-left: auto;
  }
  .figma-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px max(16px, var(--figma-page-pad)) 20px;
    background: var(--figma-surface);
    border-top: 0.5px solid color-mix(in srgb, var(--figma-text) 30%, transparent);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 18px 40px rgba(15, 20, 25, 0.1);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .figma-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .figma-header__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-size: 18px;
    line-height: 1.3;
    border-bottom: 1px solid var(--color-border);
  }
  .figma-header__link.is-active {
    opacity: 1;
    font-weight: 500;
  }
  .figma-header__nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 48px;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--figma-surface);
    background: var(--figma-text);
    text-decoration: none;
    text-align: center;
  }
  .figma-header__phone {
    order: -1;
    font-size: 14px;
    line-height: 1.2;
  }
  .figma-header__burger {
    order: 0;
  }
  .figma-header__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: 64px;
    z-index: 20;
    background: rgba(15, 20, 25, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  .figma-header--open .figma-header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.figma-header-menu-open {
    overflow: hidden;
  }
  .figma-site .catalog-page__layout {
    flex-direction: column;
  }
  .figma-site .catalog-page__aside {
    width: 100%;
    position: static;
  }
}
@media (max-width: 640px) {
  .figma-header__logo {
    font-size: 26px;
    line-height: 1.15;
  }
}
@media (max-width: 992px) {
  .shapka_text ul {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .catalog-product__order {
    min-height: 44px;
  }
  .header-cta-button,
  .mobile-menu-btn {
    min-height: var(--nw-touch-min, 44px);
    min-width: var(--nw-touch-min, 44px);
  }
  .admin-content {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .catalog-page__filters {
    padding-top: 0;
  }
  .frame_tel_soci {
    flex-wrap: wrap;
    justify-content: center;
  }
  .admin-sidebar {
    width: 100%;
    min-height: auto;
  }
  .admin-layout {
    flex-direction: column;
  }
}
.figma-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.figma-banner__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--figma-page-pad);
  gap: 11px;
  box-sizing: border-box;
}
.figma-banner__frame {
  width: 100%;
  max-width: 1520px;
  min-height: clamp(420px, 31vw, 597px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 5.2vw, 100px) 0 0 clamp(24px, 5.2vw, 100px);
}
.figma-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 500px;
}
.figma-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
}
.figma-banner__subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  opacity: 0.5;
}
.figma-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media (max-width: 992px) {
  .figma-banner__actions {
    flex-direction: column;
  }
}
.figma-banner .figma-glass {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.figma-banner .figma-glass--badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px 10px 20px;
  width: 100%;
}
.figma-banner .figma-glass--badge p {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  opacity: 0.5;
}
.figma-banner .figma-glass--title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  width: 100%;
}
.figma-banner .figma-glass--btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  min-height: 40px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  .figma-banner .figma-glass--btn {
    width: 100%;
  }
}
.figma-banner button.figma-glass--btn {
  appearance: none;
}

.figma-catalog {
  padding: 0 var(--figma-page-pad);
  box-sizing: border-box;
}
.figma-catalog__inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.figma-catalog--page {
  padding-top: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(48px, 6vw, 80px);
  box-sizing: border-box;
}
.figma-catalog__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  width: 100%;
}
.figma-catalog__grid .figma-card {
  grid-column: span 2;
  min-width: 0;
}
.figma-catalog__grid .figma-card--wide {
  grid-column: span 3;
}
@media (max-width: 992px) {
  .figma-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .figma-catalog__grid .figma-card,
  .figma-catalog__grid .figma-card--wide {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  .figma-catalog__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.figma-catalog__rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.figma-catalog__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}
.figma-catalog__row .figma-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
}
@media (max-width: 992px) {
  .figma-catalog__row .figma-card {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (max-width: 640px) {
  .figma-catalog__row .figma-card {
    flex: 1 1 100%;
  }
}
.figma-catalog__row--two .figma-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
}
@media (max-width: 640px) {
  .figma-catalog__row--two .figma-card {
    flex: 1 1 100%;
  }
}

.figma-card {
  display: flex;
  flex-direction: column;
  background: var(--color-card-bg);
  color: var(--color-body);
  text-decoration: none;
  min-width: 0;
  border: 1px solid var(--color-border);
  box-sizing: border-box;
  overflow: hidden;
}
.figma-card__image {
  width: 100%;
  height: 283px;
  overflow: hidden;
  flex-shrink: 0;
}
.figma-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.figma-card--wide .figma-card__image {
  height: 307px;
}
@media (max-width: 640px) {
  .figma-card--wide .figma-card__image {
    height: 220px;
  }
}
.figma-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  min-height: 93px;
  box-sizing: border-box;
}
.figma-card__name {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-card-title);
}
.figma-card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-card-tags);
}
.figma-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.figma-card__spec {
  display: flex;
  flex: 1 1 calc(50% - 3px);
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
  padding: 6px 8px;
  background: var(--figma-bg);
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}
.figma-card__spec-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--figma-muted);
}
.figma-card__spec-value {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--figma-text);
}
.figma-card__spec-value--color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.figma-card__color-swatch {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.figma-card__spec-value--color[data-color=white] .figma-card__color-swatch {
  background: #ffffff;
}
.figma-card__spec-value--color[data-color=beige] .figma-card__color-swatch {
  background: #d9c4a5;
}
.figma-card__spec-value--color[data-color=brown] .figma-card__color-swatch {
  background: #8b5a2b;
}
.figma-card__spec-value--color[data-color=grey] .figma-card__color-swatch {
  background: #9ca3af;
}
.figma-card__spec-value--color[data-color=black] .figma-card__color-swatch {
  background: #1f2937;
}
.figma-card__sep {
  width: 1px;
  height: 16px;
  background: var(--color-card-separator);
  flex-shrink: 0;
}
.figma-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-card-tags);
}
@media (max-width: 640px) {
  .figma-card__image {
    height: clamp(140px, 42vw, 220px);
  }
  .figma-card__body {
    padding: 12px;
    gap: 6px;
    min-height: 0;
  }
  .figma-card__name {
    font-size: 16px;
    line-height: 20px;
  }
  .figma-card__tags, .figma-card__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.home-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 2.5vw, 40px);
  line-height: 1.2;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 0.75rem;
}
.home-section-title--left {
  text-align: left;
}
.home-section-title::after {
  display: none;
}

.home-section-lead {
  text-align: center;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.home-section-lead--left {
  text-align: left;
  margin-left: 0;
}

.figma-catalog__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-heading);
  margin: 0 0 20px;
}

.figma-gallery .figma-catalog__title,
.gallery-page .figma-catalog__title,
.catalog-page .figma-catalog__title {
  margin: 0;
  font-weight: 400;
}

.catalog-page .figma-catalog__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}
.catalog-page .catalog-page__sidebar-title,
.catalog-page .catalog-search__name,
.catalog-page .catalog-search__price {
  font-size: 20px;
  line-height: 24px;
}
.catalog-page .catalog-page__sort,
.catalog-page .catalog-page__sort label,
.catalog-page .catalog-page__category-link,
.catalog-page .catalog-page__option,
.catalog-page .catalog-page__price-label,
.catalog-page .catalog-page__price-field input,
.catalog-page .catalog-page__btn,
.catalog-page .catalog-page__status,
.catalog-page .catalog-page__empty,
.catalog-page .catalog-page__page-btn,
.catalog-page .catalog-page__page-numbers span,
.catalog-page .catalog-search__input,
.catalog-page .catalog-search__submit,
.catalog-page .catalog-search__meta,
.catalog-page .catalog-search__empty,
.catalog-page .nw-select__trigger,
.catalog-page .nw-select__option {
  font-size: 16px;
  line-height: 24px;
}

.btn-home-primary,
.btn-home-secondary,
.btn-home-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-home-primary {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
}

.btn-home-secondary,
.btn-home-outline {
  background: transparent;
  color: var(--color-body);
  border: 1px solid var(--color-btn-outline-border);
}

.btn-home-outline {
  width: 100%;
  margin-top: 1rem;
}

.home-gallery__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  box-sizing: border-box;
  border: 1px solid var(--color-border-subtle);
  background: transparent;
  color: var(--color-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.figma-gallery {
  padding: 0 var(--figma-page-pad);
  box-sizing: border-box;
  background: var(--color-bg-soft);
}
.figma-gallery__inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}
.figma-gallery--page {
  padding-top: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
@media (max-width: 900px) {
  .home-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .home-gallery__grid .home-gallery__item:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .home-gallery__grid {
    gap: 10px;
  }
}

.home-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-sizing: border-box;
}
.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-page {
  min-height: 60vh;
}

.gallery-page__title {
  margin: 0;
}

.gallery-mosaic {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) {
  .gallery-mosaic {
    column-count: 2;
    column-gap: 12px;
  }
}
@media (max-width: 640px) {
  .gallery-mosaic {
    column-count: 1;
  }
}
.gallery-mosaic__item {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  break-inside: avoid;
  overflow: hidden;
}
@media (max-width: 900px) {
  .gallery-mosaic__item {
    margin-bottom: 12px;
  }
}
.gallery-mosaic__item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
  box-sizing: border-box;
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
}
.gallery-lightbox__close, .gallery-lightbox__prev, .gallery-lightbox__next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-lightbox__close:hover, .gallery-lightbox__prev:hover, .gallery-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.gallery-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  border-radius: 0;
}
.gallery-lightbox__prev, .gallery-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 0;
}
@media (max-width: 640px) {
  .gallery-lightbox__prev, .gallery-lightbox__next {
    width: 40px;
    height: 40px;
  }
}
.gallery-lightbox__prev {
  left: 20px;
}
.gallery-lightbox__next {
  right: 20px;
}

body {
  font-family: "Inter", sans-serif;
}

.header-cta-button {
  background-color: var(--primary-color, #d9a45b);
  color: black;
  border: none;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
  text-decoration: none;
}

.header-cta-button:hover {
  background-color: var(--primary-dark, #c28c3d);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .header-cta-button {
    margin: 5px auto;
    font-size: 13px;
    padding: 7px 12px;
  }
}
@media (max-width: 768px) {
  .header-cta-button {
    display: none;
  }
}
.notification-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  width: 100%;
}

.notification {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  animation: notification-slide-in 0.4s ease forwards;
  transform: translateX(120%);
  position: relative;
  overflow: hidden;
}

.notification.success {
  border-left: 4px solid #4CAF50;
}

.notification.error {
  border-left: 4px solid #F44336;
}

.notification.info {
  border-left: 4px solid #2196F3;
}

.notification.warning {
  border-left: 4px solid #FF9800;
}

.notification-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.notification.success .notification-icon {
  color: #4CAF50;
}

.notification.error .notification-icon {
  color: #F44336;
}

.notification.info .notification-icon {
  color: #2196F3;
}

.notification.warning .notification-icon {
  color: #FF9800;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.notification-message {
  font-size: 14px;
  color: #666;
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.notification-close:hover {
  color: #333;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
}

.notification-progress-bar {
  height: 100%;
  width: 100%;
}

.notification.success .notification-progress-bar {
  background-color: #4CAF50;
}

.notification.error .notification-progress-bar {
  background-color: #F44336;
}

.notification.info .notification-progress-bar {
  background-color: #2196F3;
}

.notification.warning .notification-progress-bar {
  background-color: #FF9800;
}

@keyframes notification-slide-in {
  to {
    transform: translateX(0);
  }
}
@keyframes notification-slide-out {
  to {
    transform: translateX(120%);
  }
}
@keyframes progress-bar-animation {
  to {
    width: 0%;
  }
}
@media (max-width: 576px) {
  .notification-container {
    max-width: calc(100% - 40px);
    right: 20px;
  }
}
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.order-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  position: relative;
  width: min(100%, 870px);
  max-width: min(100%, 870px);
  margin: auto 0;
  overflow: visible;
  padding: clamp(24px, 4vw, 36px);
  background: var(--figma-surface);
  color: var(--figma-text);
  border: 1px solid var(--color-border);
  box-shadow: none;
  transform: translateY(12px);
  transition: transform 0.28s ease;
}
.order-modal-overlay.active .order-modal {
  transform: translateY(0);
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--figma-bg);
  color: var(--figma-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.order-modal__close:hover {
  color: var(--figma-text);
  border-color: var(--figma-text);
  background: var(--color-surface-hover);
}

.order-modal__header {
  padding-right: 48px;
  margin-bottom: 24px;
}

.order-modal__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--figma-muted);
  background: transparent;
  border: 0;
}

.order-modal__title {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--figma-text);
  text-align: left;
}

.order-modal__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--figma-muted);
}

.order-modal__product {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px;
  background: var(--figma-bg);
  border: 0;
}

.order-modal__product-media {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: var(--figma-surface);
}
.order-modal__product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-modal__product-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 400;
  color: var(--figma-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-modal__product-name {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--figma-text);
}

.order-modal__product-price {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--figma-muted);
}

.order-modal__form {
  display: block;
}

.order-modal__section {
  margin-bottom: 20px;
}

.order-modal__section-title {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--figma-muted);
}

.order-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.order-modal__field--full {
  grid-column: 1/-1;
}
.order-modal__field label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--figma-muted);
}
.order-modal__field input,
.order-modal__field select,
.order-modal__field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--figma-text);
  background: var(--figma-surface);
  border: 1px solid var(--color-border);
  border-radius: 0;
  transition: border-color 0.2s;
}
.order-modal__field input:focus,
.order-modal__field select:focus,
.order-modal__field textarea:focus {
  outline: none;
  border-color: var(--figma-text);
  box-shadow: none;
}
.order-modal__field input::placeholder,
.order-modal__field select::placeholder,
.order-modal__field textarea::placeholder {
  color: var(--figma-muted);
  opacity: 0.85;
}
.order-modal__field .nw-select {
  width: 100%;
}
.order-modal__field .nw-select__trigger {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 400;
  background: var(--figma-surface);
}
.order-modal__field .nw-select__menu {
  z-index: 2100;
}
.order-modal__field textarea {
  min-height: 88px;
  resize: vertical;
}
.order-modal__field input[type=number] {
  appearance: textfield;
}
.order-modal__field input[type=number]::-webkit-outer-spin-button, .order-modal__field input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.order-modal__required {
  color: #c0392b;
}

.order-modal__hint {
  font-weight: 400;
  color: var(--figma-muted);
}

.order-modal__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.order-modal__captcha {
  margin: 0 0 12px;
}

.order-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  cursor: pointer;
  user-select: none;
}
.order-modal__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.order-modal__consent input:focus-visible + .order-modal__consent-box {
  box-shadow: 0 0 0 2px var(--figma-text);
}
.order-modal__consent input:checked + .order-modal__consent-box {
  background: var(--figma-text);
  border-color: var(--figma-text);
}
.order-modal__consent input:checked + .order-modal__consent-box::after {
  opacity: 1;
}

.order-modal__consent-box {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--color-border);
  background: var(--figma-bg);
  transition: background 0.2s, border-color 0.2s;
}
.order-modal__consent-box::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: var(--figma-surface);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.4 8.6L11 1.4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 11px 9px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.4 8.6L11 1.4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 11px 9px;
  transition: opacity 0.2s;
}

.order-modal__consent-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--figma-muted);
}

.order-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: background 0.2s, opacity 0.2s;
}
.order-modal__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid transparent;
}
.form-status.error {
  color: #8b1e1e;
  background: #fdecea;
  border-color: #f5c2c0;
}
.form-status.success {
  color: #1e6b3a;
  background: #e8f7ee;
  border-color: #b8e0c6;
}

.order-modal__success {
  padding: 4px 0 0;
}

.order-modal__success-title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--figma-text);
}

.order-modal__success-text {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--figma-muted);
}

.order-modal__success-id {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--figma-muted);
}

.order-modal__success-close {
  width: 100%;
  min-width: 0;
  min-height: 48px;
}

@media (max-width: 960px) {
  .order-modal__grid {
    grid-template-columns: 1fr;
  }
  .order-modal__field--full {
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .order-modal-overlay {
    padding: 10px;
  }
  .order-modal {
    padding: 22px 18px 18px;
  }
}
.nw-select {
  position: relative;
  width: 100%;
}

.nw-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.nw-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: var(--figma-surface);
  border: 1px solid var(--color-border);
  color: var(--figma-text);
  padding: 8px 12px;
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.nw-select__trigger:hover:not(:disabled) {
  border-color: var(--color-border);
}

.nw-select__trigger:focus {
  outline: none;
  border-color: var(--figma-text);
  box-shadow: 0 0 0 1px var(--figma-text);
}

.nw-select.is-disabled .nw-select__trigger,
.nw-select__trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nw-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nw-select__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s;
}

.nw-select.is-open .nw-select__chevron {
  transform: rotate(180deg);
}

.nw-select__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 120;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--figma-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  max-height: 240px;
  overflow-y: auto;
}

.nw-select__menu[hidden] {
  display: none !important;
}

.nw-select__option {
  padding: 8px 12px;
  font-size: 15px;
  color: var(--figma-text);
  cursor: pointer;
  transition: background 0.15s;
}

.nw-select__option:hover {
  background: var(--color-accent-soft);
}

.nw-select__option.is-selected {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
}

.nw-select__option.is-selected:hover {
  background: var(--color-btn-primary-hover-bg);
}

[data-theme=dark] .nw-select__chevron {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f3f4f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
[data-theme=dark] .nw-select__option:hover {
  background: var(--color-surface-hover);
}
[data-theme=dark] .nw-select__option.is-selected:hover {
  background: var(--color-btn-primary-hover-bg);
}

.site-controls {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .site-controls {
    right: 10px;
    bottom: 10px;
  }
}
.site-controls__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-body);
  box-shadow: var(--shadow-card-hover);
  cursor: pointer;
}
@media (max-width: 768px) {
  .site-controls__btn {
    width: 44px;
    height: 44px;
  }
}
.site-controls__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-bg-soft), 0 0 0 4px var(--color-body);
}
.site-controls__btn--top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.site-controls__btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-controls__icon {
  font-size: 1.05rem;
  line-height: 1;
}

#theme-toggle-btn .site-controls__icon.site-controls__icon--moon {
  display: inline-block;
}

#theme-toggle-btn .site-controls__icon.site-controls__icon--sun {
  display: none;
}

[data-theme=dark] #theme-toggle-btn .site-controls__icon.site-controls__icon--moon,
#theme-toggle-btn.is-dark .site-controls__icon.site-controls__icon--moon {
  display: none;
}

[data-theme=dark] #theme-toggle-btn .site-controls__icon.site-controls__icon--sun,
#theme-toggle-btn.is-dark .site-controls__icon.site-controls__icon--sun {
  display: inline-block;
}

.figma-home {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.figma-home .footer {
  margin-top: 0;
}

.home-container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 var(--figma-page-pad);
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .figma-banner__frame {
    padding-top: 32px;
    padding-left: var(--figma-page-pad);
    padding-right: var(--figma-page-pad);
  }
  .figma-banner__content {
    max-width: 100%;
  }
}
:root:not([data-theme=dark]) .catalog-page {
  --catalog-focus: #cfcfcf;
  --catalog-active-bg: #f5f5f5;
  --catalog-active-text: #000000;
  --catalog-active-border: #000000;
}

[data-theme=dark] .catalog-page {
  --catalog-focus: #4b5563;
  --catalog-active-bg: var(--color-surface-hover);
  --catalog-active-text: var(--figma-text);
  --catalog-active-border: var(--figma-text);
}

.catalog-page {
  min-height: 60vh;
}
.catalog-page__inner {
  gap: clamp(28px, 3vw, 40px);
  width: 100%;
  align-items: stretch;
  box-sizing: border-box;
}
.catalog-page__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-page__intro-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.catalog-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--figma-text);
}
.catalog-page__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--figma-muted);
}
.catalog-page__categories-nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catalog-page__categories-nav::-webkit-scrollbar {
  display: none;
}
.catalog-page__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  min-width: min-content;
  border-bottom: 1px solid var(--color-border);
}
.catalog-page__category-link {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.catalog-page__category-link.is-active {
  color: var(--figma-text);
  border-bottom-color: var(--figma-text);
}
.catalog-page__controls {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.catalog-page__filters-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  background: var(--figma-surface);
  color: var(--figma-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.catalog-page__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  min-width: 0;
  align-items: start;
}
.catalog-page__sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}
.catalog-page__filters {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  background: var(--figma-surface);
  box-sizing: border-box;
}
.catalog-page__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-page__sidebar-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--figma-text);
}
.catalog-page__filters-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--figma-text);
  cursor: pointer;
}
.catalog-page__filters-close:hover {
  background: var(--catalog-active-bg);
}
.catalog-page__filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-page__filter-label {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.catalog-page__filter-empty {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 20px;
  color: var(--figma-muted);
}
.catalog-page__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-page__options--colors {
  gap: 8px;
}
.catalog-page__option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
  transition: color 0.2s;
}
.catalog-page__option:has(input:checked) {
  color: var(--figma-text);
}
.catalog-page__option input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  border: 1px solid var(--color-border);
  background: var(--figma-bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.catalog-page__option input[type=checkbox]:checked {
  background: var(--figma-text);
  border-color: var(--figma-text);
}
.catalog-page__option input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.4 8.6L11 1.4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px 9px no-repeat;
}
.catalog-page__option input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--figma-text);
}
.catalog-page__color-mark {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: var(--color-swatch, #cccccc);
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}
.catalog-page__color-mark.is-light {
  border-color: var(--color-border);
}
.catalog-page__price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 10px;
}
.catalog-page__price-sep {
  padding-bottom: 10px;
  color: var(--figma-muted);
  font-size: 16px;
  line-height: 24px;
}
.catalog-page__price-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.catalog-page__price-label {
  font-size: 14px;
  line-height: 20px;
  color: var(--figma-muted);
}
.catalog-page__price-field input {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  background: var(--figma-bg);
  color: var(--figma-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
}
.catalog-page__price-field input:focus {
  outline: none;
  border-color: var(--figma-text);
}
.catalog-page__price-field input::-webkit-outer-spin-button, .catalog-page__price-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.catalog-page__price-field input {
  appearance: textfield;
  -moz-appearance: textfield;
}
.catalog-page__filter-actions {
  padding: 16px 20px 20px;
}
.catalog-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
}
.catalog-page__btn--secondary {
  background: var(--figma-bg);
  color: var(--figma-text);
  border-color: var(--color-border);
}
.catalog-page__results {
  width: 100%;
  min-width: 0;
}
.catalog-page__results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-page__status {
  margin: 0;
  min-height: 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
}
.catalog-page__status:empty {
  visibility: hidden;
}
.catalog-page__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: auto;
}
.catalog-page__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--figma-text);
}
.catalog-page__sort label {
  white-space: nowrap;
  color: var(--figma-muted);
  flex-shrink: 0;
}
.catalog-page__sort .nw-select {
  min-width: 200px;
  flex: 1;
}
.catalog-page__sort .nw-select__trigger {
  min-height: 40px;
  height: 40px;
  box-sizing: border-box;
}
.catalog-page__page-btn, .catalog-page__page-numbers span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--figma-bg);
  border: 0;
  border-right: 1px solid var(--color-border);
  color: var(--figma-text);
  cursor: pointer;
}
.catalog-page__page-btn:last-child, .catalog-page__page-numbers span:last-child {
  border-right: 0;
}
.catalog-page__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.catalog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  justify-content: stretch;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  margin-bottom: 0;
}
.catalog-page__grid > .catalog-product {
  width: 100%;
  max-width: none;
  height: 100%;
  min-width: 0;
}
.catalog-page__empty {
  margin: 0 0 24px;
  padding: 48px 24px;
  text-align: center;
  background: var(--figma-surface);
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
}
.catalog-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.catalog-page__page-numbers {
  display: flex;
  border: 1px solid var(--color-border);
}
.catalog-page__page-numbers span {
  border-right: 1px solid var(--color-border);
}
.catalog-page__page-numbers span:last-child {
  border-right: 0;
}
.catalog-page__page-btn {
  border: 1px solid var(--color-border);
}
.catalog-page__sidebar-backdrop {
  display: none;
}

.catalog-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--figma-surface);
  border: 0;
  box-sizing: border-box;
}
.catalog-product__media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--figma-bg);
  flex-shrink: 0;
}
.catalog-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-product__swatches {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.catalog-product__swatch {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: var(--color-swatch, #cccccc);
  border: 1px solid var(--color-border);
}
.catalog-product__swatch.is-light {
  border-color: var(--color-border);
}
.catalog-product__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 2px;
  padding: 10px;
  min-height: 0;
}
.catalog-product__category {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  color: var(--figma-muted);
}
.catalog-product__category-sep {
  flex-shrink: 0;
  display: block;
  width: 0;
  height: 14px;
  border-left: 1px solid var(--figma-muted);
}
.catalog-product__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}
.catalog-product__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--figma-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-product__details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.catalog-product__desc {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  color: var(--figma-text);
}
.catalog-product__price {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--figma-text);
  opacity: 0.5;
}
.catalog-product__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  margin-top: auto;
  padding: 5px;
  border: 0;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

:root:not([data-theme=dark]) .catalog-page .catalog-product__order {
  background: #000000;
  color: #ffffff;
}

[data-theme=dark] .catalog-page .catalog-product__order {
  background: var(--figma-text);
  color: var(--figma-bg);
}

.catalog-search {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 40;
}
.catalog-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.catalog-search__form {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  background: var(--figma-surface);
}
.catalog-search__field {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  border-right: 1px solid var(--color-border);
}
.catalog-search__form:focus-within {
  border-color: var(--catalog-focus);
  box-shadow: none;
}
.catalog-search__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  color: var(--figma-muted);
  font-size: 16px;
}
.catalog-search__input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 12px 0 0;
  border: 0;
  background: transparent;
  color: var(--figma-text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  outline: none;
}
.catalog-search__input::placeholder {
  color: var(--figma-muted);
}
.catalog-search__input::-webkit-search-cancel-button, .catalog-search__input::-webkit-search-decoration {
  appearance: none;
}
.catalog-search__clear {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--figma-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.catalog-search__clear:hover {
  color: var(--figma-text);
}
.catalog-search__submit {
  flex-shrink: 0;
  min-width: 132px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-left: 1px solid var(--figma-text);
  background: var(--figma-text);
  color: var(--figma-surface);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
}
.catalog-search__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow: hidden;
  background: var(--figma-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.catalog-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 420px;
  overflow-y: auto;
}
.catalog-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.catalog-search__item:last-child {
  border-bottom: 0;
}
.catalog-search__item.is-active {
  background: var(--catalog-active-bg);
}
.catalog-search__thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: var(--figma-bg);
  border: 1px solid var(--color-border);
}
.catalog-search__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-search__info {
  flex: 1;
  min-width: 0;
}
.catalog-search__name {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-text);
  font-weight: 400;
}
.catalog-search__meta {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--figma-muted);
}
.catalog-search__price {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-text);
  white-space: nowrap;
}
.catalog-search__empty {
  margin: 0;
  padding: 20px 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--figma-muted);
  text-align: center;
}
.catalog-search__mark {
  color: var(--figma-text);
  font-weight: 400;
  background: var(--catalog-active-bg);
}

body.catalog-filters-open {
  overflow: hidden;
}
body.catalog-filters-open .site-controls {
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

@media (max-width: 992px) {
  .catalog-page__layout {
    grid-template-columns: 1fr;
  }
  .catalog-page__sidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 1300;
    width: min(100vw, 360px);
    max-width: 100%;
    height: 100dvh;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
  }
  .catalog-page__sidebar.is-open {
    transform: translateX(0);
  }
  .catalog-page__filters {
    width: 100%;
    min-height: 100%;
    border-right: 0;
  }
  .catalog-page__filters-close {
    display: flex;
  }
  .catalog-page__filters-toggle {
    display: inline-flex;
  }
  .catalog-page__sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1250;
    background: rgba(0, 0, 0, 0.45);
  }
  .catalog-page__sidebar-backdrop[hidden] {
    display: none;
  }
}
@media (max-width: 768px) {
  .catalog-page__intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-page__controls {
    flex-direction: column;
  }
  .catalog-page__filters-toggle,
  .catalog-page .catalog-search__form {
    width: 100%;
  }
  .catalog-page__results {
    width: 100%;
  }
  .catalog-page__results-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .catalog-page__toolbar {
    width: 100%;
    margin-left: 0;
  }
  .catalog-page__sort {
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .catalog-page__sort label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .catalog-page__sort .nw-select {
    min-width: 0;
    width: 100%;
  }
  .catalog-page__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .catalog-page__grid > .catalog-product {
    max-width: none;
  }
  .catalog-page__sidebar {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
  }
  .catalog-search {
    width: 100%;
  }
  .catalog-search__form {
    flex-direction: column;
    border: 0;
    gap: 10px;
    background: transparent;
  }
  .catalog-search__field {
    border: 1px solid var(--color-border);
  }
  .catalog-search__submit {
    width: 100%;
  }
}
[data-theme=dark] body {
  background: var(--figma-bg);
  color: var(--figma-text);
}

[data-theme=dark] .figma-header,
[data-theme=dark] .figma-site .footer,
[data-theme=dark] .figma-site .catalog-page__filters,
[data-theme=dark] .catalog-section {
  background: var(--figma-surface);
  color: var(--figma-text);
}

[data-theme=dark] input:not([type=checkbox]):not([type=radio]),
[data-theme=dark] select,
[data-theme=dark] textarea {
  background: #111827;
  border-color: var(--color-border);
  color: var(--figma-text);
}

[data-theme=dark] .figma-btn,
[data-theme=dark] .btn-primary,
[data-theme=dark] .checkout-button,
[data-theme=dark] .apply-filters-btn,
[data-theme=dark] .figma-site .catalog-product__order,
[data-theme=dark] .figma-site .order-btn,
[data-theme=dark] .figma-site .order-modal__submit,
[data-theme=dark] .figma-site .modal-submit,
[data-theme=dark] .figma-site .order-modal__success-close {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
}
[data-theme=dark] .figma-btn--ghost,
[data-theme=dark] .reset-filters-btn,
[data-theme=dark] .btn-secondary {
  background: transparent;
  color: var(--figma-text);
}
[data-theme=dark] .figma-site .catalog-page__category-link.is-active {
  background: transparent;
  color: var(--figma-text);
}
[data-theme=dark] .catalog-page__page-numbers span.is-active {
  background: var(--color-btn-primary-hover-bg);
  color: var(--color-btn-primary-text);
}
[data-theme=dark] .catalog-page__option input[type=checkbox] {
  background: var(--figma-bg);
  border-color: var(--color-border);
}
[data-theme=dark] .catalog-page__option input[type=checkbox]:checked {
  background: var(--color-btn-primary-bg);
  border-color: var(--color-btn-primary-bg);
}
[data-theme=dark] .catalog-page__btn--secondary {
  background: var(--figma-bg);
  border-color: var(--color-border);
}
[data-theme=dark] .order-modal {
  background: var(--figma-surface);
  border-color: var(--color-border);
}
[data-theme=dark] .order-modal__field input,
[data-theme=dark] .order-modal__field select,
[data-theme=dark] .order-modal__field textarea,
[data-theme=dark] .order-modal__field .nw-select__trigger,
[data-theme=dark] .order-modal__consent-box {
  background: #111827;
  border-color: var(--color-border);
  color: var(--figma-text);
}
[data-theme=dark] .order-modal__close {
  background: #111827;
  border-color: var(--color-border);
  color: var(--figma-muted);
}
[data-theme=dark] .order-modal__close:hover {
  color: var(--figma-text);
  border-color: var(--figma-text);
  background: var(--color-surface-hover);
}
[data-theme=dark] .form-status.error {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border-color: rgba(248, 113, 113, 0.35);
}
[data-theme=dark] .form-status.success {
  color: #bbf7d0;
  background: rgba(20, 83, 45, 0.35);
  border-color: rgba(74, 222, 128, 0.35);
}
[data-theme=dark] .catalog-search__field,
[data-theme=dark] .catalog-search__dropdown {
  background: #111827;
  border-color: var(--color-border);
}
[data-theme=dark] .catalog-search__submit {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  border-left-color: var(--color-btn-primary-bg);
  font-weight: 500;
}
[data-theme=dark] .catalog-search__item.is-active {
  background: var(--color-surface-hover);
}
[data-theme=dark] .catalog-search__mark {
  background: var(--color-surface-hover);
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

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