@font-face {
  font-family: 'Gilroy-Bold';
  font-style: normal;
  font-weight: 400;
  src: local('Gilroy-Bold'), url('https://fonts.cdnfonts.com/s/16219/Gilroy-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy-Heavy';
  font-style: normal;
  font-weight: 400;
  src: local('Gilroy-Heavy'), url('https://fonts.cdnfonts.com/s/16219/Gilroy-Heavy.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy-Light';
  font-style: normal;
  font-weight: 400;
  src: local('Gilroy-Light'), url('https://fonts.cdnfonts.com/s/16219/Gilroy-Light.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy-Medium';
  font-style: normal;
  font-weight: 400;
  src: local('Gilroy-Medium'), url('https://fonts.cdnfonts.com/s/16219/Gilroy-Medium.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy-Regular';
  font-style: normal;
  font-weight: 400;
  src: local('Gilroy-Regular'), url('https://fonts.cdnfonts.com/s/16219/Gilroy-Regular.woff') format('woff');
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --swiper-navigation-size: 20px;
  --swiper-theme-color: #333;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0b1220;
  background: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
button {
  box-sizing: border-box;
  user-select: none;
  border: none;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  margin: 16px 0;
}
header.site-header {
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-row {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 72px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  width: 200px;
}
.logo img {
  width: 46px;
  height: 46px;
}
.logo span {
  padding-left: 10px;
  text-transform: uppercase;
  font-family: 'Gilroy-Bold', sans-serif;
  font-size: 40px;
  height: 50px;
  letter-spacing: 4px;
}
nav.main-nav {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: #374151;
}
.search {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.search input {
  width: 100%;
  padding: 0 12px;
  height: 40px;
  border: 1px solid #e6e9ef;
  border-radius: 8px 0 0 8px;
  background: #fff;
  outline: none;
  font-size: 0.95rem;
}
.search button[type="submit"] {
  height: 40px;
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  padding: 0 12px;
  border: 1px solid #e6e9ef;
  cursor: pointer;
}
.search button[type="submit"]:hover {
  background: #d3d4d8;
  border-color: #d3d4d8;
}
.search-results {
  background: #fff;
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  font-size: 14px;
  transform-origin: top center;
  opacity: 0;
  transform: translateY(-6px) scale(0.995);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.2, 0.9, 0.2, 1);
  display: block;
  /* невелика підказка під назвою (опціонально) */
  /* мобільна адаптація (якщо потрібно) */
}
.search-results.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.search-results h5 {
  padding: 10px 12px;
  margin: 0;
  font-size: 16px;
}
.search-results .empty {
  padding: 8px;
  color: #666;
}
.search-results .loader {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: rgba(0, 0, 0, 0.35);
  animation: spin 0.9s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.search-results .search-results .hint {
  font-size: 0.82rem;
  color: #777;
  margin-top: 6px;
}
@media (max-width: 520px) {
  .search-results .search-results {
    left: 0;
    right: 0;
    min-width: unset;
    width: calc(100% - 12px);
  }
}
.search-results ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.search-results ul li {
  border-bottom: 1px solid #e6e9ef;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.search-results ul li a {
  color: #4f46e5;
}
.search-results ul li:hover {
  background: #f6f7f9;
}
.search-results button[type="submit"] {
  margin: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn.primary {
  background: #4f46e5;
  color: white;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.12);
}
.widget .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.widget .items .item {
  background: #fff;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
}
.widget .items .item .image {
  padding: 15px;
}
.widget .items .item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.main-categories {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.main-categories a {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  flex-grow: 1;
  flex-basis: auto;
}
.main-categories a:hover {
  background: #7c3aed;
  color: #fff;
}
.popular-categories h2 {
  font-size: 32px;
  font-weight: 600;
}
.popular-categories .items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.popular-categories .category-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: #000;
  position: relative;
  border: 1px solid #e6e6e6;
  transition: 0.25s;
}
.popular-categories .category-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.popular-categories .image-wrap {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popular-categories .image-wrap img {
  padding: 20px;
  max-width: 100%;
  max-height: 100%;
}
.popular-categories .category-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
.popular-categories .category-count {
  margin-top: 6px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.25s;
  color: #5c5c5c;
}
.popular-categories .category-card:hover .category-count {
  opacity: 1;
}
.breadcrumbs {
  font-size: 14px;
  display: flex;
  margin: 15px 0;
  padding: 0;
}
.breadcrumbs li {
  align-items: center;
  display: flex;
}
.breadcrumbs li:not(:last-child):after {
  border-right: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  transform: rotate(315deg);
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  margin: 0 10px;
}
.breadcrumbs a {
  color: #b3b3b3;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
footer.footer {
  margin-top: 40px;
  background: #333;
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
}
footer.footer .copyright {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
footer.footer .info {
  text-align: center;
}
.brands-letters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.brands-letters a {
  color: #7c3aed;
  font-weight: 600;
  background: #fff;
  padding: 8px 0;
  width: 40px;
  text-align: center;
  border-radius: 8px;
}
.brands-letters a:hover {
  background: #7c3aed;
  color: #fff;
}
.brands-list {
  background: #fff;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  border-radius: 8px;
}
.brands-list h5 {
  width: 100%;
  grid-column: 1 / -1;
  font-size: 18px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}
.brands-list h5:first-child {
  margin-top: 0;
}
.brands-list a:hover {
  color: #7c3aed;
  text-decoration: underline;
}
.pagination {
  padding: 20px 0;
  justify-content: end;
  display: flex;
  column-gap: 12px;
  margin: 20px 0;
  list-style: none;
}
.pagination .item.active a {
  background: #7c3aed;
  color: #fff;
}
.pagination .item a {
  border-radius: 6px;
  display: flex;
  text-decoration: none;
  height: 46px;
  min-width: 60px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  background: #fff;
}
.pagination .item a:hover {
  background: #7c3aed;
  color: #fff;
}
.sort {
  font-size: 16px;
}
.sort a {
  text-decoration: none;
  color: #999;
  margin-left: 10px;
}
.sort a.active {
  text-decoration: underline;
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.products-header p {
  padding: 0;
  margin: 0;
}
.products-list-container {
  display: grid;
  grid-template-columns: 260px 4fr;
  gap: 16px;
}
.market-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.market-categories .category {
  background: #fff;
  padding: 10px;
  border: 1px solid #e8e8e8;
  text-align: center;
}
.market-categories .category img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 10px;
}
.market-categories .category a {
  text-decoration: none;
  color: #e10d0d;
  font-weight: 400;
}
.bottom-description {
  line-height: 1.65;
  color: #222;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}
.bottom-description h2 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #007bff;
  padding-left: 10px;
  font-weight: 700;
}
.bottom-description h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}
.bottom-description p {
  margin-bottom: 18px;
  color: #333;
}
.bottom-description ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.bottom-description ul li {
  margin-bottom: 8px;
}
.bottom-description strong {
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .bottom-description h2 {
    font-size: 22px;
  }
  .bottom-description h3 {
    font-size: 18px;
  }
}
#bottom-description {
  /* Для коректного відображення градієнту */
  position: relative;
  /* Плавна анімація розкриття */
  transition: height 0.5s ease;
  box-sizing: border-box;
}
.description-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}
.show-more-btn {
  display: block;
  margin: -100px auto 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.show-more-btn:hover {
  background-color: #0056b3;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 6px;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.products.swiper-wrapper {
  gap: normal;
}
.products .product-item {
  position: relative;
}
.products .product {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 10px 0 10px;
  position: relative;
  cursor: pointer;
  background: #fff;
}
.products .product:hover .goto {
  display: block;
}
.products .product a {
  text-decoration: none;
}
.products .product .sale-label {
  background: #ffcf11;
  padding: 3px 5px;
  font-weight: 400;
  font-size: 0.8em;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 4px;
}
.products .product .prices {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  font-weight: 500;
  font-size: 1em;
  padding-top: 8px;
  margin-bottom: 10px;
}
.products .product .prices span:first-child {
  font-weight: 900;
  font-size: 16px;
  color: #7c3aed;
}
.products .product .prices span:last-child {
  justify-content: right;
  font-size: 0.8em;
  font-weight: normal;
  text-decoration: line-through;
}
.products .product .desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  min-height: 36px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  position: relative;
  overflow: hidden;
}
.products .product .title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
    -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  position: relative;
  overflow: hidden;
    height: 58px;
    line-height: 20px;
  text-decoration: none;
}
.products .product .goto {
  display: none;
  background: #7c3aed;
  background: linear-gradient(90deg, #06b6d4, #7c3aed);
  color: #fff;
  text-align: center;
  padding: 10px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.products .product .image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 15px 0;
}
.products .product .image img {
  max-width: 100%;
  max-height: 100%;
}
.category-description {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 20px;
  text-align: justify;
}
.category-description b,
.category-description strong {
  font-weight: 400;
}
.tags-widget {
  margin-bottom: 40px;
}
.tags-widget-content {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-widget-content a {
  background-color: #ffffff;
  font-size: 14px;
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  flex-grow: 1;
  flex-basis: auto;
}
.tags-widget-content a:hover {
  background: #7c3aed;
  color: #fff;
}
.bottom-popular-models {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.bottom-popular-models h2 {
  margin: 0 0 20px 0;
  padding: 0;
}
.bottom-popular-models ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bottom-popular-models ul li {
  margin-bottom: 5px;
  color: #7c3aed;
  cursor: pointer;
}
/* ===== GRID (DESKTOP) ===== */
.products-list-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}
/* ===== FILTERS DESKTOP ===== */
.filters {
  position: relative;
}
/* кнопки */
.filters-toggle,
.filters-close {
  display: none;
}
/* ===== OVERLAY ===== */
.filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .products-list-container {
    grid-template-columns: 1fr;
  }
  /* кнопка */
  .filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 500;
    cursor: pointer;
  }
  /* filters → drawer */
  .filters {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100dvh;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 16px;
  }
  .filters-close {
    display: block;
    margin-bottom: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  /* ACTIVE */
  body.filters-open .filters {
    transform: translateX(0);
  }
  body.filters-open .filters-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.products-small-container {
    margin: 40px 0;
}
.products-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.products-small .product-item {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.products-small .product-item .image {
    padding: 15px;
}
.products-small .product-item .image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}
.products-small .product-item .title {
    font-size: 14px;
    margin: 0 0 10px 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    position: relative;
    overflow: hidden;
    height: 58px;
    line-height: 20px;
    text-decoration: none;
}
.filters {
  position: sticky;
  top: 90px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #7c7cff #f2f2f2;
}
.filters .full-height-scroll::-webkit-scrollbar {
  width: 0;
}
.filters .full-height-scroll:hover {
  scrollbar-width: thin;
}
.filters .full-height-scroll:hover::-webkit-scrollbar {
  width: 6px;
}
.filters .full-height-scroll::-webkit-scrollbar-thumb {
  background: rgba(90, 90, 255, 0.6);
  border-radius: 6px;
}
.filters .filter {
  background: #fff;
  margin-bottom: 15px;
  border: 1px solid #e8e8e8;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
}
.filters .filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filters .filter ul li {
  font-size: 14px;
}
.filters .filter ul li.hidden {
  display: none;
}
.filters .filter .show-more {
  background: #e8e8e8;
  color: #7c3aed;
  font-weight: 600;
  width: 100%;
  padding: 5px 10px;
  margin-top: 12px;
  border-radius: 6px;
  cursor: pointer;
}
.filters .filter .show-more:hover {
  background: #7c3aed;
  color: #fff;
}
.filters .filter .title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.1em;
  font-weight: 600;
  border-bottom: 1px solid #e8e8e8;
}
.filters .filter .price-range {
  display: flex;
  gap: 16px;
}
.filters .filter input[type="number"] {
  width: 100%;
}
.filters .checkbox-input {
  display: grid;
  grid-template-columns: 15px auto;
  gap: 0.5em;
  margin-bottom: 5px;
  align-items: end;
}
.filters .checkbox-input input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.filters .checkbox-input input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #e10d0d;
}
.filters .checkbox-input input[type="checkbox"]:checked::before {
  transform: scale(1);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.filters button[type="submit"] {
  background: #7c3aed;
  color: #fff;
  padding: 5px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.filters-open .filters {
    top: 0;
    height: 100vh;
}
@media only screen and (max-width: 900px) {
  .breadcrumbs {
    display: block;
  }
  .products-list-container {
    display: block;
  }
  .products-header p {
    display: none;
  }
  header.site-header {
    position: relative;
    z-index: auto;
  }
  .header-row {
    display: block;
    height: auto;
    padding: 10px;
  }
  .header-left {
    margin-bottom: 15px;
  }
  .read-item {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .header-left {
    display: block;
  }
  .header-left a.logo {
    margin-bottom: 10px;
  }
  .widget-popular .list {
    grid-template-columns: 1fr;
  }
  .widget-popular .list .title {
    height: auto;
  }
  .trio {
    grid-template-columns: 1fr;
  }
  .news-list .news-item {
    grid-template-columns: 1fr;
  }
  .news-list .news-item .img-container img {
    width: 100%;
    height: 200px;
  }
  .news-list .news-item .sub {
    padding-top: 20px;
  }
  .pagination {
    column-gap: 10px;
  }
  .pagination .item a {
    padding: 0 10px;
    font-size: 16px;
  }
  .products-list-container .products {
    gap: 6px;
  }
  .products-list-container .product > div {
    display: grid;
    grid-template-columns: 2fr 4fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .products-list-container .product > div .image {
    grid-area: 1 / 1 / 3 / 2;
    height: auto;
  }
  .products-list-container .product > div .title {
    grid-area: 1 / 2 / 2 / 3;
    height: auto;
    display: block;
  }
  .products-list-container .product > div .desc {
    grid-area: 2 / 2 / 3 / 3;
  }
  .products-list-container .product > div .prices {
    grid-area: 3 / 1 / 4 / 3;
  }
}
.page-container .content {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 40px;
  color: #333333;
  line-height: 1.6;
  box-sizing: border-box;
}
.view-product .swiper {
  width: 100%;
  height: 100%;
}
.view-product .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}
.view-product .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.view-product h1 {
  margin-top: 0;
  padding-top: 0;
}
.view-product .description {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.view-product .description h2 {
  margin: 0 0 15px 0;
}
.view-product .description div {
  line-height: 26px;
}
.view-product .description img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}
.view-product .info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.view-product .info .short-info {
  order: 2;
}
.view-product .info .images {
  order: 1;
}
.view-product .main-image-wrapper {
  padding: 20px;
  background: #fff;
  margin-bottom: 8px;
  border-radius: 8px;
  position: relative;
}
.view-product .images {
  border-radius: 8px;
}
.view-product .images img {
  max-width: 100%;
  width: 100%;
}
.view-product .images .main-image {
  width: 100%;
}
.view-product .price-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.view-product .price-row .price {
  color: #7c3aed;
  font-size: 32px;
  font-weight: 900;
}
.view-product .price-row a.go-to {
  display: grid;
  background: #7c3aed;
  color: #fff;
  padding: 10px 40px;
  font-weight: 600;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.view-product .price-row a.go-to svg {
  width: 30px;
  height: 30px;
}
.view-product .share {
  margin-bottom: 20px;
}
.view-product .share .title {
  font-weight: bold;
  margin-bottom: 10px;
}
.view-product .info-small {
  color: #7c3aed;
  font-size: 14px;
  margin-bottom: 20px;
}
.view-product .other-info {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.view-product .other-info div {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 8px;
}
.view-product .other-info ul {
  padding: 0 0 0 20px;
  margin: 0;
  font-size: 14px;
}
.view-product .other-info h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.group-badge {
  padding: 20px 10px 10px 10px;
  font-weight: 800;
  font-size: 18px;
  color: #7c3aed;
}
.specs-group {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 6px;
}
/* Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.specs-table tr {
  border-top: 1px solid rgba(11, 21, 36, 0.03);
}
.specs-table th {
  width: 36%;
  text-align: left;
  padding: 12px 10px;
  vertical-align: top;
  font-weight: 400;
}
.specs-table td {
  padding: 12px 10px;
  color: #6b7280;
}
@media only screen and (max-width: 900px) {
  .view-product .info {
    display: block;
  }
  .view-product .info .images {
    order: 2;
  }
  .view-product .info .short-info {
    order: 1;
  }
}
@media only screen and (max-width: 600px) {
  .view-product .short-info .other-info {
    display: block;
  }
  .view-product .short-info .other-info div {
    margin-bottom: 10px;
  }
  .view-product .price-row {
    display: block;
  }
  .view-product .price-row a.go-to {
    display: flex;
    justify-content: center;
  }
}
/* === FAQ / QA Block === */
.faq {
  margin: 48px auto;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  font-family: Inter, system-ui, -apple-system, sans-serif;
}
/* Header */
.faq-header {
  margin-bottom: 24px;
}
.faq-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.faq-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
/* Item */
.faq-item {
  border-top: 1px solid #e2e8f0;
  padding: 16px 0;
}
.faq-item:first-of-type {
  border-top: none;
}
/* Summary */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
/* Icon */
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: #6366f1;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
/* Content */
.faq-content {
  padding-top: 12px;
}
.faq-content p {
  margin: 0;
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
}
/* Hover */
.faq-item summary:hover {
  color: #4f46e5;
}
/* Mobile */
@media (max-width: 768px) {
  .faq {
    padding: 24px;
    margin: 32px 16px;
  }
  .faq-header h2 {
    font-size: 20px;
  }
}

.np-index {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.np-index .area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.np-index .area-list a {
    font-size: 16px;
    font-weight: 600;
    color: #7c3aed;
}

.np-index .area-list a:hover {
    text-decoration: underline;
}
/*# sourceMappingURL=app.css.map */
