/*
Theme Name: Apparel B2B
Theme URI: https://example.com/
Author: Codex
Author URI: https://example.com/
Description: B2B apparel catalog theme with WordPress news and WooCommerce product inquiry pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: apparel-b2b
*/

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

body {
  color: #1d2633;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.page {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.nav {
  width: 80%;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  font-size: 15px;
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 50px;
  object-fit: contain;
}

.mobile-drawer-logo-item {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: #1c2637;
  background: #fff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 42px);
  min-width: 0;
  list-style: none;
}

.menu li {
  position: relative;
  list-style: none;
}

.menu a {
  display: flex;
  align-items: center;
  height: 64px;
  color: #1c2637;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.menu .current-menu-item > a,
.menu .current-menu-ancestor > a,
.menu .active {
  color: #2c63cb;
  border-bottom: 2px solid #2c63cb;
}

.menu > li.menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.menu > li.menu-item-has-children:hover > a::after,
.menu > li.menu-item-has-children:focus-within > a::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  min-width: 210px;
  padding: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(28, 38, 52, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
}

.menu .sub-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #e1e9f3;
  border-left: 1px solid #e1e9f3;
  transform: translateX(-50%) rotate(45deg);
}

.menu .sub-menu a {
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 40px;
  padding: 0 12px;
  color: #526174;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
}

.menu .sub-menu a:hover,
.menu .sub-menu a:focus,
.menu .sub-menu .current-menu-item > a {
  color: #2f67d7;
  background: #f2f7ff;
  border-bottom: 0;
  transform: translateX(3px);
}

.menu .sub-menu .menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: auto;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
}

.menu .sub-menu .sub-menu {
  top: -10px;
  left: calc(100% + 10px);
  transform: translate(12px, 0);
}

.menu .sub-menu li:hover > .sub-menu,
.menu .sub-menu li:focus-within > .sub-menu {
  transform: translate(0, 0);
}

.menu .sub-menu .sub-menu::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: -12px;
  width: 12px;
  height: auto;
}

.menu .sub-menu .sub-menu::after {
  display: none;
}

.mobile-auth-item {
  display: none;
}

.chevron {
  margin-left: 5px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
}

.actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
  white-space: nowrap;
}

.actions .search {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.actions .search::before {
  content: "";
  position: absolute;
  inset: 11px;
  background: #111;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 21-4.35-4.35M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.actions .search::after {
  display: none;
}

.actions > a:not(.search) {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  color: #2f67d7;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.actions > a:not(.search):hover,
.actions > a:not(.search):focus {
  color: #1f55bd;
  border-color: #bfd2f2;
}

.actions > a.register {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
}

.actions > a.register:hover,
.actions > a.register:focus {
  color: #fff;
  background: #245bc8;
  border-color: #245bc8;
}

.product-search-panel[hidden] {
  display: none;
}

.product-search-panel {
  position: absolute;
  top: 64px;
  right: 10%;
  width: min(620px, calc(100vw - 32px));
  border-top: 1px solid #edf1f5;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(28, 38, 52, 0.12);
}

.product-search-inner {
  padding: 16px;
}

.product-search-close {
  width: 34px;
  height: 34px;
  align-self: center;
  position: relative;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  cursor: pointer;
}

.product-search-close::before,
.product-search-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  background: #526174;
  border-radius: 2px;
}

.product-search-close::before {
  transform: rotate(45deg);
}

.product-search-close::after {
  transform: rotate(-45deg);
}

.product-search-form {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px 34px;
  gap: 10px;
  align-items: center;
}

.product-search-form input[type="search"] {
  height: 50px;
  padding: 0 16px;
  color: #1d2633;
  background: #fbfdff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  outline: none;
}

.search-type-select {
  position: relative;
}

.search-type-toggle {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 34px 0 16px;
  color: #1d2633;
  text-align: left;
  background: #fbfdff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  cursor: pointer;
}

.search-type-toggle::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  width: 8px;
  height: 8px;
  border: solid #526174;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.search-type-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(28, 38, 52, 0.12);
}

.search-type-menu[hidden] {
  display: none;
}

.search-type-menu button {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  color: #1d2633;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.search-type-menu button:hover,
.search-type-menu button:focus {
  background: #f3f8ff;
}

.product-search-form button[type="submit"] {
  height: 50px;
  color: #fff;
  background: #2f67d7;
  border: 1px solid #2f67d7;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.divider {
  width: 1px;
  height: 22px;
  background: #cfd3db;
}

.register {
  min-width: 92px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  background: #2865d9;
  font-size: 13px;
}

.account-menu {
  position: relative;
  flex: 0 0 auto;
}

.account-toggle {
  min-width: 0;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 0 6px;
  color: #1d2633;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  cursor: pointer;
}

.account-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) translateY(-2px);
}

.account-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eef4ff;
  border: 1px solid #d5e3f8;
}

.account-icon::before,
.account-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #2865d9;
  transform: translateX(-50%);
}

.account-icon::before {
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.account-icon::after {
  bottom: 7px;
  width: 16px;
  height: 8px;
  border-radius: 10px 10px 5px 5px;
}

.account-toggle span {
  max-width: 120px;
  overflow: hidden;
  color: #1d2633;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 152px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(28, 38, 52, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  height: 10px;
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown,
.account-menu.is-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-menu:hover .account-toggle,
.account-menu:focus-within .account-toggle,
.account-menu.is-open .account-toggle {
  border-color: #b9cae4;
  box-shadow: 0 8px 20px rgba(28, 38, 52, 0.08);
}

.account-menu:hover .account-toggle::after,
.account-menu:focus-within .account-toggle::after,
.account-menu.is-open .account-toggle::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.account-dropdown a {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #526174;
  border-radius: 6px;
  font-size: 14px;
}

.account-dropdown a:hover,
.account-dropdown a:focus {
  color: #2f67d7;
  background: #f2f7ff;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.46);
}

.auth-modal[hidden] {
  display: none;
}

.auth-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  background: #fff;
  border: 1px solid #e2e9f3;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.auth-close::before,
.auth-close::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 9px;
  width: 14px;
  height: 2px;
  background: #667386;
  border-radius: 2px;
}

.auth-close::before {
  transform: rotate(45deg);
}

.auth-close::after {
  transform: rotate(-45deg);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-right: 30px;
  padding: 4px;
  background: #f1f5fb;
  border-radius: 6px;
}

.auth-tab {
  height: 40px;
  color: #536174;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.auth-tab.active {
  color: #1d2633;
  background: #fff;
  box-shadow: 0 8px 18px rgba(28, 38, 52, 0.08);
}

.auth-panel {
  margin-top: 24px;
}

.auth-panel h2 {
  color: #1d2633;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.google-login-btn {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: #1d2633;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(28, 38, 52, 0.05);
}

.google-login-btn:hover,
.google-login-btn:focus {
  color: #1d2633;
  border-color: #c3d2e5;
  box-shadow: 0 14px 28px rgba(28, 38, 52, 0.09);
}

.google-login-btn span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #4285f4;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 -4px;
  color: #8a95a4;
  font-size: 12px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e1e9f3;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #526174;
  font-size: 13px;
  font-weight: 700;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="number"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #1d2633;
  background: #fbfdff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  outline: none;
}

.auth-form input:focus {
  border-color: #2f67d7;
  box-shadow: 0 0 0 3px rgba(47, 103, 215, 0.12);
}

.auth-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 9px !important;
  font-weight: 500 !important;
}

.auth-check input {
  width: 16px;
  height: 16px;
}

.auth-captcha {
  grid-template-columns: auto 1fr 92px;
  align-items: center;
  gap: 10px !important;
  padding: 12px;
  background: #f5f8fc;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
}

.auth-captcha span {
  color: #667386;
  font-size: 13px;
}

.auth-captcha img {
  justify-self: start;
  width: 150px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
}

.auth-captcha input[type="number"] {
  height: 36px;
  padding: 0 10px;
  text-align: center;
  background: #fff;
}

.auth-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.auth-form button[type="submit"] {
  height: 46px;
  color: #fff;
  background: #2f67d7;
  border: 1px solid #2f67d7;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(47, 103, 215, 0.16);
}

.auth-form button[type="submit"]:hover,
.auth-form button[type="submit"]:focus {
  background: #245bc8;
  border-color: #245bc8;
}

.auth-note,
.auth-note-link {
  width: fit-content;
  padding: 0;
  color: #667386;
  background: transparent;
  border: 0;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
}

.auth-note-link:hover,
.auth-note-link:focus {
  color: #2f67d7;
  text-decoration: underline;
}

.page,
.section,
.footer-showcase {
  width: 80%;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.page {
  padding-top: 34px;
}

.product-page {
  width: 80%;
  padding-right: 0;
  padding-left: 0;
}

.content-page {
  width: 80%;
  padding-right: 0;
  padding-left: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8490a0;
  font-size: 13px;
  line-height: 1.4;
}

.breadcrumb a {
  color: #526174;
}

.breadcrumb span {
  color: #8490a0;
}

.page-banner {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 34, 62, 0.72), rgba(25, 54, 92, 0.34)),
    var(--banner-image) center / cover no-repeat;
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 24px;
  text-align: center;
}

.page-banner-content h1 {
  position: static;
}

.banner-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.banner-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.banner-meta a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #f8fafc;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero-track {
  display: flex;
  min-height: 640px;
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-image) center / cover no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 80%;
  min-height: auto;
  padding: 0 24px;
  margin: 0 auto;
}

.hero-copy {
  max-width: min(940px, 78vw);
  padding-left: 18px;
  transform: none;
}

.hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(36px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.14;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(18, 28, 44, 0.22);
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 42px, 0) rotateX(38deg);
  transform-origin: 50% 100%;
  will-change: opacity, filter, transform;
}

.hero h1.is-animating .hero-title-word {
  animation: heroTitleFlyIn 0.78s cubic-bezier(0.18, 0.86, 0.28, 1) forwards;
  animation-delay: var(--word-delay, 0s);
}

@keyframes heroTitleFlyIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 42px, 0) rotateX(38deg);
  }

  72% {
    opacity: 1;
    filter: blur(1px);
    transform: translate3d(0, -4px, 0) rotateX(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-word {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero h1.is-animating .hero-title-word {
    animation: none;
  }
}

.hero p {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(18, 28, 44, 0.2);
}

.primary-btn {
  margin-top: 48px;
  width: 196px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #2f67d7;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(47, 103, 215, 0.2);
}

.primary-btn:hover {
  background: #245bc8;
}

.hero-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #2f67d7;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(28, 38, 52, 0.09);
  font-size: 28px;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
}

.hero-arrow.prev { left: 34px; }
.hero-arrow.next { right: 34px; }

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #c8d4e5;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}

.hero-dot.active {
  width: 28px;
  background: #2f67d7;
  border-radius: 999px;
}

.section {
  width: 80%;
  margin: 0 auto;
  padding-top: 62px;
  text-align: center;
}

.about-page .section {
  width: 100%;
  margin-top: 78px;
  padding-top: 44px;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid #edf1f5;
  text-align: left;
}

.about-page .about-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 68px);
  margin-top: 36px;
}

.about-page .about-photo {
  min-height: 410px;
}

.about-page .about-photo img {
  min-height: 410px;
}

.section-title,
.section-head h2 {
  color: #1d2633;
  font-size: clamp(30px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.18;
}

.section-note {
  margin-top: 16px;
  color: #9aa0aa;
  font-size: 15px;
  line-height: 1.65;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid #edf1f5;
}

.news-head h2 {
  margin-top: 12px;
  color: #1d2633;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.15;
}

.news-head p {
  max-width: 520px;
  color: #778292;
  font-size: 16px;
  line-height: 1.8;
}

.news-head .news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.news-head .news-tab {
  min-width: 0;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #617087;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.news-head .news-tab.active {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
  box-shadow: 0 12px 24px rgba(47, 103, 215, 0.16);
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  justify-content: center;
  gap: 18px;
  margin: 34px auto 0;
}

.category-tabs .category {
  appearance: none;
  position: relative;
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  color: #1f2937;
  font: inherit;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(26, 44, 72, 0.055);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.category-tabs .category:hover,
.category-tabs .category.is-active {
  color: #2f67d7;
  border-color: #cdddf6;
  box-shadow: 0 18px 38px rgba(47, 103, 215, 0.12);
  transform: translateY(-3px);
}

.category-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f7fb;
  border: 1px solid #e4ebf4;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.category-tabs .category svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.category-tabs .category svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}

.category-tabs .category svg [fill]:not([fill="none"]) {
  fill: currentColor;
}

.category-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.category-tabs .category:hover .category-icon,
.category-tabs .category.is-active .category-icon {
  background: #eef4ff;
  border-color: #d5e3fa;
}

.category-tabs .category span:last-child {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 520px;
  color: #778292;
  font-size: 14px;
  line-height: 1.7;
}

.eyebrow {
  color: #2f67d7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 34px;
  margin-top: 48px;
}

.related-grid[hidden] {
  display: none;
}

.home-product-loop ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 34px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.home-product-loop ul.products::before,
.home-product-loop ul.products::after {
  display: none;
}

.empty-product-panel {
  margin-top: 48px;
  padding: 32px;
  color: #8b96a5;
  background: #f8fbff;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

.empty-product-panel strong {
  display: block;
  color: #1d2633;
  font-size: 18px;
}

.empty-product-panel p {
  margin-top: 8px;
}

.category-login-lock {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 38px;
  color: #667386;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 55, 88, 0.08);
  text-align: center;
}

.category-login-lock h2 {
  color: #1d2633;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
}

.category-login-lock p {
  max-width: 460px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.8;
}

.category-login-lock .submit-btn {
  width: auto;
  min-width: 128px;
  height: 42px;
  margin-top: 22px;
  padding: 0 22px;
}

.home-product-loop ul.products li.product {
  width: auto;
  margin: 0;
  padding: 14px 14px 18px;
  float: none;
  clear: none;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(230, 230, 230, 0.9);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(28, 38, 52, 0.035);
  transition: box-shadow 0.25s, transform 0.25s;
}

.home-product-loop ul.products li.product:hover {
  box-shadow: 0 18px 42px rgba(28, 38, 52, 0.08);
  transform: translateY(-4px);
}

.home-product-loop ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.home-product-loop ul.products li.product img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82 / 1;
  height: auto;
  margin: 0;
  object-fit: cover;
  background: #f4f1ef;
  transition: transform 0.45s, filter 0.45s;
}

.home-product-loop ul.products li.product:hover img {
  filter: contrast(1.03) saturate(1.02);
  transform: scale(1.035);
}

.home-product-loop ul.products li.product .woocommerce-loop-product__title {
  margin: 10px 0 0;
  padding: 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.home-product-loop ul.products li.product .product-category {
  margin-top: 14px;
  color: #b4b4b4;
  font-size: 14px;
}

.home-product-loop ul.products li.product .price {
  display: block;
  margin-top: 8px;
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 700;
}

.home-product-loop ul.products li.product .onsale,
.home-product-loop ul.products li.product .price {
  display: none;
}

.home-product-loop ul.products li.product .star-rating {
  display: none;
}

.home-product-loop ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 18px;
  color: #fff;
  background: #1d5fd0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home-product-loop ul.products li.product .tinv-wraper.tinv-wishlist {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 38px;
  height: 38px;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s, transform 0.22s;
}

.home-product-loop ul.products li.product:hover .tinv-wraper.tinv-wishlist,
.home-product-loop ul.products li.product:focus-within .tinv-wraper.tinv-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.home-product-loop ul.products li.product .tinv-wishlist-clear,
.home-product-loop ul.products li.product .tinvwl-tooltip,
.home-product-loop ul.products li.product .tinvwl_add_to_wishlist-text,
.home-product-loop ul.products li.product .tinvwl_remove_from_wishlist-text,
.home-product-loop ul.products li.product .tinvwl_already_on_wishlist-text,
.home-product-loop ul.products li.product .tinv-wraper.tinv-wishlist input {
  display: none !important;
}

.home-product-loop ul.products li.product .tinvwl_add_to_wishlist_button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #111;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 25, 34, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(28, 38, 52, 0.12);
  text-decoration: none;
}

.home-product-loop ul.products li.product .tinvwl_add_to_wishlist_button::before {
  position: static;
  margin: 0;
  font-size: 18px;
  line-height: 1;
  transform: none;
}

.home-product-loop ul.products li.product .tinvwl_add_to_wishlist_button:hover,
.home-product-loop ul.products li.product .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
  color: #df3638;
  border-color: rgba(223, 54, 56, 0.24);
}

.home-product-loop ul.products li.product .sizes,
.home-product-loop ul.products li.product .swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-product-loop ul.products li.product .sizes {
  min-height: 28px;
  margin-top: 16px;
  color: #9a9a9a;
  font-size: 12px;
}

.home-product-loop ul.products li.product .swatches {
  min-height: 22px;
  margin-top: 16px;
}

.home-product-loop ul.products li.product .sizes.is-placeholder,
.home-product-loop ul.products li.product .swatches.is-placeholder {
  pointer-events: none;
  visibility: hidden;
}

.home-product-loop ul.products li.product .size-option,
.home-product-loop ul.products li.product .swatch-choice {
  appearance: none;
  cursor: pointer;
}

.home-product-loop ul.products li.product .size-option {
  min-width: 38px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #8c8c8c;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
}

.home-product-loop ul.products li.product .size-option.active {
  color: #333;
  background-color: #fff;
  border-color: #222;
}

.home-product-loop ul.products li.product .swatch-choice {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-product-loop ul.products li.product .swatch-choice .swatch {
  width: 18px;
  height: 18px;
  display: block;
  background: var(--swatch-color, #d8e4f3);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.home-product-loop ul.products li.product .swatch-choice.active .swatch {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111;
}

.home-product-loop ul.products li.product .swatch-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #617087;
  font-size: 11px;
  font-weight: 700;
}

.product-card,
.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(230, 230, 230, 0.9);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(28, 38, 52, 0.035);
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover,
.related-card:hover {
  box-shadow: 0 18px 42px rgba(28, 38, 52, 0.08);
  transform: translateY(-4px);
}

.product-photo,
.related-photo {
  display: block;
  width: 100%;
  aspect-ratio: 0.82 / 1;
  background: #f4f1ef;
  overflow: hidden;
}

.product-photo img,
.related-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s, filter 0.45s;
}

.product-card:hover img,
.related-card:hover img {
  filter: contrast(1.03) saturate(1.02);
  transform: scale(1.035);
}

.product-category {
  margin-top: 14px;
  color: #b4b4b4;
  font-size: 14px;
}

.product-name,
.related-name {
  margin-top: 10px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.product-price {
  margin-top: 8px;
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 700;
}

.sizes,
.swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.size-option {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #617087;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.size-option.active {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.swatch.black { background: #050505; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111; }
.swatch.green { background: #45aa78; }
.swatch.red { background: #df3638; }

.profile-content,
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  margin-top: 58px;
  text-align: left;
}

.profile-section {
  padding-top: 112px;
  padding-bottom: 58px;
}

.profile-section .profile-content {
  grid-template-columns: 1.02fr 0.98fr;
  margin-top: 82px;
}

.profile-image,
.about-photo,
.article-cover,
.featured-image {
  overflow: hidden;
  background: #f4f7fb;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(28, 38, 52, 0.05);
}

.profile-image img,
.about-photo img,
.article-cover img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-section .profile-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.profile-section .profile-image img {
  aspect-ratio: 1.67 / 1;
}

.profile-text h2,
.about-copy h1,
.article-title {
  color: #1d2633;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}

.profile-text p,
.about-copy p,
.article-content p,
.news-card p {
  margin-top: 10px;
  color: #667386;
  font-size: 15px;
  line-height: 1.85;
}

.profile-copy h3 {
  margin-bottom: 34px;
  color: #1d2633;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.profile-copy p {
  max-width: 520px;
  color: #767676;
  font-size: 16px;
  line-height: 1.85;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 54px 84px;
  margin-top: 54px;
}

.stat strong {
  color: #2b5e91;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: inline-block;
  margin-left: 6px;
  color: #2d3a4a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  vertical-align: 0.22em;
}

.stat p {
  margin-top: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.35;
}

.more-btn {
  margin-top: 34px;
  min-width: 128px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 20px;
  color: #595959;
  background: #f2f2f2;
  font-size: 14px;
  cursor: pointer;
}

.more-btn:hover {
  color: #2f67d7;
  background: #eef4ff;
}

.profile-more-btn {
  min-width: 154px;
  height: 44px;
  gap: 12px;
  padding: 0 8px 0 22px;
  color: #fff;
  background: #245f9a;
  border: 1px solid #245f9a;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(36, 95, 154, 0.18);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.profile-more-btn:hover {
  color: #fff;
  background: #1d4f82;
  box-shadow: 0 16px 34px rgba(36, 95, 154, 0.24);
  transform: translateY(-2px);
}

.profile-more-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #245f9a;
  background: #fff;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.profile-more-btn:hover .profile-more-icon {
  transform: translateX(2px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-card,
.spec-card,
.advantage-card,
.news-card,
.comment-card,
.sidebar-card {
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(28, 38, 52, 0.035);
}

.stat-card {
  padding: 20px 18px;
}

.about-page .stat-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.stat-card strong {
  display: block;
  color: #2f67d7;
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: #667386;
  font-size: 13px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.advantage-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-page .advantage-card:hover {
  border-color: #c8d8f1;
  box-shadow: 0 20px 38px rgba(28, 38, 52, 0.07);
  transform: translateY(-3px);
}

.advantage-icon,
.comment-avatar {
  display: grid;
  place-items: center;
  color: #2f67d7;
  background: #f3f8ff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  font-weight: 700;
}

.advantage-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #f6faff 0%, #eaf3ff 100%);
  border-color: #d4e3f7;
  font-size: 22px;
}

.advantage-card h3 {
  color: #1d2633;
  font-size: 17px;
}

.advantage-card p {
  margin-top: 8px;
  color: #667386;
  font-size: 14px;
  line-height: 1.7;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 42px 24px;
  color: #667386;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.news-list .news-card {
  grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 0;
  min-width: 0;
  padding: 14px 18px;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-list .news-card:hover {
  border-color: #c8d8f1;
  box-shadow: 0 22px 42px rgba(28, 38, 52, 0.08);
  transform: translateY(-3px);
}

.news-list .news-thumb {
  align-self: start;
  height: 132px;
  min-height: 0;
  aspect-ratio: auto;
}

.news-list .news-card > div {
  align-self: start;
}

.news-list .news-card h3 {
  margin-top: 8px;
  color: #1d2633;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.news-list .news-card h3 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list .news-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 8px;
  color: #667386;
  font-size: 15px;
  line-height: 1.55;
}

.news-section {
  padding-top: 72px;
}

.news-tabs {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  padding: 6px;
  background: #f5f8fc;
  border: 1px solid #e1e9f3;
  border-radius: 999px;
}

.news-tab {
  min-width: 118px;
  height: 38px;
  padding: 0 18px;
  color: #647286;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.news-tab.active {
  color: #fff;
  background: #2f67d7;
  box-shadow: 0 10px 22px rgba(47, 103, 215, 0.18);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
  text-align: left;
}

.news-grid[hidden] {
  display: none;
}

.news-card {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 20px;
  min-height: 170px;
  padding: 18px;
}

.news-section .news-card {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.news-section .news-body {
  min-height: 174px;
}

.news-section .news-card:hover {
  box-shadow: 0 18px 42px rgba(28, 38, 52, 0.08);
  transform: translateY(-4px);
}

.news-thumb {
  overflow: hidden;
  background: #f4f7fb;
  border-radius: 6px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-image {
  display: block;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background: #f4f7fb;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.news-section .news-card:hover .news-image img {
  transform: scale(1.035);
}

.news-body {
  padding: 22px 22px 24px;
}

.news-title {
  margin-top: 12px;
  color: #1d2633;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.32;
}

.news-section .news-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-summary {
  margin-top: 14px;
  color: #6f7d91;
  display: -webkit-box;
  font-size: 16px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.75;
  overflow: hidden;
}

.news-date {
  color: #2f67d7;
  font-size: 13px;
  font-weight: 700;
}

.news-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.news-more-btn {
  min-width: 148px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  background: #2f67d7;
  border: 1px solid #2f67d7;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-more-btn:hover,
.news-more-btn:focus {
  color: #fff;
  background: #2457bd;
  border-color: #2457bd;
  transform: translateY(-1px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
  margin-top: 42px;
}

.article-layout > article {
  min-width: 0;
}

.article-body-card,
.comment-section {
  padding: 34px;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
}

.article-meta,
.article-tags,
.article-share,
.share-icons,
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta {
  margin-top: 22px;
}

.article-meta span,
.article-tags span,
.sidebar-tags a {
  padding: 8px 12px;
  color: #526174;
  background: #f5f8fc;
  border: 1px solid #e1e9f3;
  border-radius: 999px;
  font-size: 13px;
}

.article-meta a,
.article-tags a {
  color: inherit;
}

.article-meta a,
.article-tags a {
  color: inherit;
}

.article-content {
  color: #596779;
  font-size: 16px;
  line-height: 1.92;
}

.article-content h2 {
  margin: 36px 0 14px;
  color: #1d2633;
  font-size: 26px;
  font-weight: 500;
}

.page-content .tinv-wishlist {
  margin-top: 28px;
  padding: 28px;
  color: #526174;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
}

.page-content .tinv-header h2 {
  margin: 0 0 22px;
  color: #1d2633;
  font-size: 28px;
  font-weight: 500;
}

.page-content .tinvwl-table-manage-list {
  width: 100%;
  border-collapse: collapse;
  color: #526174;
  font-size: 14px;
}

.page-content .tinvwl-table-manage-list th,
.page-content .tinvwl-table-manage-list td {
  padding: 16px 12px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
  vertical-align: middle;
}

.page-content .tinvwl-table-manage-list th {
  color: #1d2633;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-content .tinvwl-table-manage-list .product-thumbnail img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  background: #f4f7fb;
  border-radius: 6px;
}

.page-content .tinvwl-table-manage-list .product-name a {
  color: #1d2633;
  font-weight: 700;
}

.page-content .tinvwl-table-manage-list .product-price {
  display: none !important;
}

.page-content .tinv-wishlist button[name="tinvwl-action-product_selected"],
.page-content .tinv-wishlist button[name="tinvwl-action-product_all"] {
  display: none !important;
}

.page-content .tinv-wishlist .button,
.page-content .tinv-wishlist button.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  background: #2f67d7;
  border: 1px solid #2f67d7;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.page-content .tinv-wishlist .wishlist-view-product {
  white-space: nowrap;
}

.page-content .tinvwl-table-manage-list .product-action .screen-reader-text {
  display: none !important;
}

.page-content .tinv-wishlist .social-buttons {
  display: none !important;
}

.page-content .tinv-wishlist .cart-empty {
  margin: 0;
  padding: 22px;
  color: #526174;
  background: #f5f9ff;
  border: 1px solid #d8e4f3;
  border-radius: 8px;
}

.page-content .tinv-wishlist .return-to-shop {
  margin-top: 18px;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinv-modal-inner {
  max-width: 420px;
  padding: 34px 32px 30px;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.24);
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinv-txt {
  margin: 14px 0 24px;
  color: #1d2633;
  font-size: 16px;
  line-height: 1.65;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group .button {
  min-height: 44px;
  width: min(100%, 172px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0 16px;
  color: #1d2633;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group .tinvwl_button_view {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
  box-shadow: 0 14px 28px rgba(47, 103, 215, 0.16);
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group .tinvwl_button_view:hover,
body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group .tinvwl_button_view:focus {
  color: #fff;
  background: #245bc8;
  border-color: #245bc8;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl_button_close:hover,
body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl_button_close:focus {
  color: #1d2633;
  background: #f5f9ff;
  border-color: #b9cbed;
}

body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinvwl-buttons-group .button i {
  margin: 0;
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 520px) {
  body > .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal .tinv-modal-inner {
    width: calc(100vw - 32px);
    padding: 28px 22px 24px;
  }
}

.article-quote {
  margin: 34px 0;
  padding: 26px 30px;
  color: #1d2633;
  background: linear-gradient(112deg, #f5f9ff 0%, #fff 58%, #f8fbff 100%);
  border: 1px solid #dce8f7;
  border-left: 4px solid #2f67d7;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.6;
}

.article-tags {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #edf1f5;
}

.article-tags a,
.sidebar-tags a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #526174;
  background: #fff;
  border: 1px solid #9aa6b5;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.article-tags a:hover,
.article-tags a:focus,
.sidebar-tags a:hover,
.sidebar-tags a:focus {
  color: #2f67d7;
  border-color: #2f67d7;
}

.share-icons a,
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #2f67d7;
  background: #f3f8ff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.comment-section,
.related-section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #edf1f5;
}

.comment-section {
  border-top: 1px solid #e1e9f3;
}

.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.comment-section h2,
.related-head h2 {
  color: #1d2633;
  font-size: 28px;
  font-weight: 500;
}

.comment-title {
  position: relative;
  padding-left: 12px;
  color: #1d2633;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.comment-title::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  background: #2f67d7;
  border-radius: 999px;
}

.comment-list-title {
  margin-top: 30px;
}

.refresh-related {
  min-width: 112px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  color: #2f67d7;
  background: #fff;
  border: 1px solid #cddcf3;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.refresh-related:hover,
.refresh-related:focus-visible {
  background: #f5f9ff;
  border-color: #9bb7ef;
  box-shadow: 0 10px 22px rgba(47, 103, 215, 0.1);
  transform: translateY(-1px);
}

.refresh-related:disabled {
  color: #9aa6b5;
  background: #fff;
  border-color: #dfe7f1;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.comment-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
  list-style: none;
}

.comment-list .children {
  position: relative;
  display: grid;
  gap: 0;
  margin: 10px 0 0 50px;
  padding: 12px 20px;
  list-style: none;
  background: #f7f7f7;
  border-radius: 8px;
}

.comment-list .children::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 16px;
  height: 16px;
  background: #f7f7f7;
  transform: rotate(45deg);
}

.comment-list .children .children {
  margin: 10px 0 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.comment-list .children .children::before {
  display: none;
}

.comment-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px 0 20px;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #edf1f5;
}

.comment-list .children .comment-card {
  position: relative;
  z-index: 1;
  padding: 12px 0 16px;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #e4e7eb;
}

.comment-list .children .comment-card:last-child {
  border-bottom: 0;
}

.comment-avatar {
  width: 38px;
  height: 38px;
  align-self: start;
  color: #fff;
  background: #2f67d7;
  border: 0;
  font-size: 14px;
}

.comment-card strong {
  display: block;
  color: #1d2633;
  font-size: 15px;
  line-height: 1.4;
}

.comment-card span {
  display: block;
  margin-top: 3px;
  color: #8a95a4;
  font-size: 13px;
}

.comment-text {
  margin-top: 12px;
  color: #2f3947;
  font-size: 15px;
  line-height: 1.75;
}

.comment-mention {
  display: inline;
  margin: 0 4px 0 0;
  color: #1d2633;
  font-size: inherit;
}

.comment-reply-link {
  display: inline-flex;
  margin-top: 8px;
  color: #2f67d7;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  padding: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.comment-card:hover .comment-reply-link,
.comment-card:focus-within .comment-reply-link {
  opacity: 1;
}

.comment-form,
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.comment-form {
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
}

.comment-form .comment-form-comment {
  grid-column: 1 / -1;
  margin: 0;
}

.comment-form .form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid #edf1f5;
}

.comment-form .comment-submit,
.comment-login-actions .comment-submit {
  min-width: 92px;
  height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
}

.comment-login-box {
  margin-top: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
}

.comment-login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #edf1f5;
}

.comment-login-actions button:first-child {
  color: #2f67d7;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: stretch;
  margin-top: 72px;
  padding: 36px;
  text-align: left;
  background: linear-gradient(112deg, #f5f9ff 0%, #fff 58%, #f8fbff 100%);
  border: 1px solid #e1e9f3;
  border-radius: 8px;
}

.inquiry-copy h2 {
  color: #1d2633;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.inquiry-copy p {
  margin-top: 16px;
  color: #667386;
  font-size: 16px;
  line-height: 1.8;
}

.inquiry-points {
  margin-top: 24px;
  color: #526174;
  font-size: 14px;
  line-height: 2;
  list-style: none;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  list-style: none;
}

.contact-methods li {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2ebf6;
}

.contact-methods span {
  color: #2f67d7;
  font-size: 13px;
  font-weight: 700;
}

.contact-methods strong,
.contact-methods a {
  color: #1d2633;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-methods a:hover,
.contact-methods a:focus {
  color: #2f67d7;
}

.contact-page {
  width: 80%;
  max-width: none;
  padding-top: 46px;
  padding-bottom: 72px;
  background: #fff;
}

.contact-page .breadcrumb {
  display: none;
}

.contact-inquiry-panel {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(520px, 1fr);
  gap: 24px;
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.contact-info {
  padding-right: 0;
}

.contact-info h2 {
  position: relative;
  margin: 0;
  padding-bottom: 28px;
  color: #191919;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.26;
}

.contact-info h2::before {
  content: "Contact Our Team";
  display: block;
  margin-bottom: 14px;
  color: #8b8b8b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #3f62f4;
}

.contact-info p {
  margin-top: 18px;
  color: #8e8e8e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.contact-page .contact-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 64px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid #e4e4e4;
}

.contact-page .contact-methods li {
  gap: 15px;
  padding: 0;
  border: 0;
}

.contact-page .contact-methods span {
  color: #969696;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-page .contact-methods strong,
.contact-page .contact-methods a {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-page .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
  padding-top: 0;
}

.contact-page .contact-form input[name="inquiry_name"] {
  order: 1;
}

.contact-page .contact-form input[name="phone"] {
  order: 2;
}

.contact-page .contact-form input[name="inquiry_email"] {
  order: 3;
}

.contact-page .contact-form input[name="country_region"] {
  order: 4;
}

.contact-page .contact-form textarea[name="inquiry_message"] {
  order: 5;
}

.contact-page .contact-form .apparel-honeypot {
  order: 6;
}

.contact-page .contact-form .submit-btn {
  order: 7;
}

.contact-page .contact-form .form-field {
  width: 100%;
  min-height: 60px;
  padding: 0 21px;
  color: #333;
  background: #f7f7f9;
  border: 1px solid #e8e8ea;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

.contact-page .contact-form .form-field::placeholder {
  color: #797979;
  opacity: 1;
}

.contact-page .contact-form .form-field:focus {
  border-color: #3f62f4;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(63, 98, 244, 0.1);
}

.contact-page .contact-form textarea.form-field {
  min-height: 130px;
  padding-top: 25px;
  resize: vertical;
}

.contact-page .contact-form .submit-btn {
  height: 58px;
  margin-top: 1px;
  color: #fff;
  background: #3f62f4;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: none;
}

.contact-page .contact-form .submit-btn:hover,
.contact-page .contact-form .submit-btn:focus {
  background: #3154ec;
}

.comment-field,
.form-field {
  min-height: 48px;
  padding: 0 14px;
  color: #1d2633;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  outline: none;
}

textarea.comment-field,
textarea.form-field {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 100px;
  padding-top: 14px;
  resize: vertical;
}

.comment-login-box textarea.comment-field {
  cursor: pointer;
  resize: none;
}

.inquiry-form .submit-btn {
  grid-column: 1 / -1;
  width: 100%;
  height: 52px;
}

.inquiry-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  color: #1d4f2c;
  background: #ecf8ef;
  border: 1px solid #b8e2c4;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-status-invalid,
.inquiry-status-failed {
  color: #8a1f11;
  background: #fff4f2;
  border-color: #f0b7ad;
}

.apparel-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.comment-submit,
.submit-btn,
.favorite-btn {
  min-width: 56px;
  height: 28px;
  color: #fff;
  background: #2f67d7;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(47, 103, 215, 0.16);
}

.article-pager,
.product-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
}

.article-pager {
  background: #fff;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
}

.article-pager .pager-item {
  grid-template-columns: 24px 76px minmax(0, 1fr);
  gap: 14px;
  min-height: 104px;
  padding: 18px;
}

.article-pager .pager-item.next {
  grid-template-columns: minmax(0, 1fr) 76px 24px;
}

.article-pager .pager-arrow {
  width: 24px;
  height: 24px;
  font-size: 26px;
}

.article-pager .pager-text strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-pager {
  margin-top: 34px;
}

.pager-item {
  min-height: 118px;
  display: grid;
  grid-template-columns: 30px 100px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  color: #1d2633;
}

.pager-item.next {
  grid-template-columns: minmax(0, 1fr) 100px 30px;
  border-left: 1px solid #e8eef7;
  text-align: left;
}

.pager-item.is-empty {
  background: #fff;
}

.pager-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #6b7584;
  font-size: 30px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pager-item:hover .pager-arrow {
  color: #2f67d7;
  transform: translateX(-2px);
}

.pager-item.next:hover .pager-arrow {
  transform: translateX(2px);
}

.pager-thumb {
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #f4f7fb;
  border-radius: 6px;
}

.pager-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.pager-item:hover .pager-thumb img {
  transform: scale(1.04);
}

.pager-text span {
  display: block;
  margin-bottom: 8px;
  color: #8a95a4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pager-text strong {
  display: block;
  color: #1d2633;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.article-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.sidebar-card li a {
  color: #526174;
  font-size: 14px;
  font-weight: 700;
}

.sidebar-card .sidebar-tags {
  margin-top: 14px;
}

.sidebar-card + .sidebar-card {
  margin-top: 22px;
}

.hot-list {
  margin-top: 16px;
}

.hot-article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #edf1f5;
}

.hot-article:first-child {
  border-top: 0;
  padding-top: 0;
}

.hot-article img {
  width: 78px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.hot-article > div {
  min-width: 0;
  padding-top: 2px;
}

.hot-article span {
  display: block;
  color: #2f67d7;
  font-size: 12px;
  font-weight: 700;
}

.hot-article strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: #1d2633;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(34px, 4vw, 58px);
  margin-top: 28px;
  align-items: start;
}

.category-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  min-height: 126px;
  padding: 28px 36px;
  overflow: hidden;
  background: linear-gradient(112deg, rgba(239, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(245, 248, 253, 0.96) 100%);
  border: 1px solid rgba(214, 226, 241, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(31, 55, 88, 0.08);
}

.category-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 103, 215, 0.08), transparent 32%), radial-gradient(circle at 92% 42%, rgba(47, 103, 215, 0.08), transparent 24%);
  pointer-events: none;
}

.category-head > * {
  position: relative;
  z-index: 1;
}

.category-head h1 {
  color: #1e2a3a;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.15;
}

.category-count {
  padding: 11px 16px;
  color: #647286;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(211, 224, 241, 0.95);
  border-radius: 999px;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(31, 55, 88, 0.06);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 16px;
  align-items: start;
}

.main-photo {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfd 0%, #f5f7fb 100%);
  border: 1px solid #edf1f6;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(28, 38, 52, 0.045);
  cursor: zoom-in;
}

.main-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  padding: 0;
  transform: scale(1);
  transition: transform 0.18s ease;
  will-change: transform;
}

.main-photo.is-zooming img {
  transform: scale(1.85);
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: none;
  overflow-y: auto;
}

.thumb {
  aspect-ratio: 1 / 1;
  padding: 5px;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.thumb.active {
  border-color: #2f67d7;
  box-shadow: 0 0 0 3px rgba(47, 103, 215, 0.1);
}

.thumb:hover {
  border-color: #b9cbed;
  transform: translateY(-2px);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
}

.product-info {
  position: relative;
  padding: clamp(26px, 2.6vw, 34px);
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(28, 38, 52, 0.055);
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f67d7 0%, #8db4ff 100%);
  border-radius: 8px 8px 0 0;
}

.product-label {
  color: #2f67d7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  margin-top: 10px;
  color: #1d2633;
  font-size: clamp(34px, 2.85vw, 46px);
  font-weight: 500;
  line-height: 1.15;
}

.product-price {
  margin-top: 22px;
  color: #2f67d7;
  font-size: 30px;
  font-weight: 700;
}

.product-inquiry-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  color: #25d366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
  box-shadow: none;
}

.product-inquiry-price svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.product-inquiry-price:hover,
.product-inquiry-price:focus {
  color: #fff;
  text-decoration: none;
  background: #25d366;
  border-color: #25d366;
}

.product-price del {
  margin-right: 8px;
  color: #98a3b2;
  font-size: 16px;
  font-weight: 500;
}

.product-price ins {
  color: #2f67d7;
  text-decoration: none;
}

.product-price .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.product-description {
  margin-top: 18px;
  color: #667386;
  font-size: 16px;
  line-height: 1.75;
}

.option-group {
  margin-top: 22px;
}

.option-title {
  margin-bottom: 12px;
  color: #1d2633;
  font-size: 16px;
  font-weight: 700;
}

.color-options,
.size-options,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-dot {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--swatch-color, #d8e4f3);
  color: #617087;
  font-size: 11px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-dot.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111, 0 8px 16px rgba(28, 38, 52, 0.12);
  transform: translateY(-1px);
}
.color-dot.black { background: #050505; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111; }
.color-dot.green { background: #45aa78; }
.color-dot.red { background: #df3638; }

.color-dot:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(47, 103, 215, 0.45), 0 8px 16px rgba(28, 38, 52, 0.12);
}

.product-info .size-option {
  min-width: 46px;
  height: 34px;
  padding: 0 14px;
  color: #6f7784;
  background: #fff;
  border-style: solid;
  border-color: #d7d7d7;
  border-radius: 4px;
  cursor: pointer;
}

.product-info .size-option.active {
  color: #111;
  background: #fff;
  border-color: #111;
}

.product-info .size-option:hover {
  color: #2f67d7;
  background: #f6faff;
  border-color: #9bb7ef;
}

.service-tags span {
  padding: 9px 12px;
  color: #526174;
  background: #f5f8fc;
  border: 1px solid #e1e9f3;
  border-radius: 999px;
  font-size: 13px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #7b8491;
  font-size: 15px;
}

.share-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f67d7;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.share-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.share-icon:hover,
.share-icon:focus-visible {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
  box-shadow: 0 10px 18px rgba(47, 103, 215, 0.18);
  transform: translateY(-1px);
}

.share-icon-facebook {
  color: #245bc8;
}

.share-icon-x {
  color: #111827;
}

.share-icon-linkedin {
  color: #0a66c2;
}

.share-icon-pinterest {
  color: #bd081c;
}

.share-icon-email {
  color: #526174;
}

.footer-share-row {
  flex-wrap: wrap;
  margin-top: 16px;
}

.product-info .favorite-btn {
  width: 100%;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: linear-gradient(135deg, #2f67d7 0%, #245bc8 100%);
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(47, 103, 215, 0.18);
}

.product-info .product-wishlist-action {
  margin-top: 24px;
}

.product-info .product-wishlist-action .tinv-wishlist-clear {
  display: none;
}

.product-info .product-wishlist-action .tinv-wraper.tinv-wishlist {
  display: block;
  margin: 0;
}

.product-info .product-wishlist-action .tinvwl_add_to_wishlist_button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #2f67d7 0%, #245bc8 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(47, 103, 215, 0.18);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.product-info .product-wishlist-action .tinvwl_add_to_wishlist_button:hover,
.product-info .product-wishlist-action .tinvwl_add_to_wishlist_button:focus {
  color: #fff;
  background: linear-gradient(135deg, #245bc8 0%, #1e4fac 100%);
  text-decoration: none;
}

.product-info .product-wishlist-action .tinvwl_add_to_wishlist_button::before {
  font-size: 18px;
  margin: 0;
  color: currentColor;
}

.product-info .product-wishlist-action .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
  background: linear-gradient(135deg, #1d2633 0%, #111827 100%);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.order-notes {
  margin-top: 48px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
}

.order-notes h2 {
  color: #1d2633;
  font-size: 28px;
  font-weight: 500;
}

.order-notes ol {
  margin-top: 18px;
  padding-left: 20px;
  color: #667386;
  line-height: 1.9;
  font-size: 15px;
}

.filter-panel {
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(28, 38, 52, 0.04);
}

.filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf1f5;
}

.filter-top strong {
  color: #1d2633;
  font-size: 18px;
}

.filter-top a {
  color: #2f67d7;
  font-size: 13px;
  font-weight: 700;
}

.filter-row,
.series-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.series-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.filter-chip,
.category-item {
  padding: 10px 14px;
  color: #526174;
  background: #f5f8fc;
  border: 1px solid #e1e9f3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.category-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 12px;
  min-height: 86px;
  padding: 18px;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.category-item:hover,
.category-item.active {
  color: #1d2633;
  background: #f4f8ff;
  border-color: rgba(47, 103, 215, 0.58);
  box-shadow: 0 14px 30px rgba(47, 103, 215, 0.09);
  transform: translateY(-2px);
}

.category-item span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #2f67d7;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
}

.category-item span img,
.category-item span svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.category-item span svg {
  display: block;
}

.category-item strong {
  color: #1d2633;
  font-size: 15px;
}

.category-item small {
  color: #7b8797;
  font-size: 12px;
  font-weight: 500;
}

.category-item.active::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #2f67d7;
  border-radius: 50%;
  font-size: 12px;
}

.procurement-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #edf1f5;
}

.procurement-search input {
  height: 50px;
  padding: 0 16px;
  color: #1d2633;
  background: #fbfdff;
  border: 1px solid #d8e4f3;
  border-radius: 6px;
  outline: none;
}

.procurement-search button,
.filter-row button,
.filter-row a {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #526174;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.filter-row a.active,
.filter-row a:hover,
.filter-row a:focus {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
}

.procurement-search button {
  height: 50px;
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
  border-radius: 6px;
  font-size: 15px;
}

.hot-keywords,
.selected-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #7b8797;
  font-size: 13px;
}

.selected-row > span:first-child {
  min-width: 58px;
  color: #1d2633;
  font-size: 16px;
  font-weight: 700;
}

.hot-keywords a,
.selected-row strong,
.selected-row a {
  color: #526174;
  font-weight: 700;
}

.selected-row strong,
.selected-row a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  font-size: 13px;
}

.filter-row {
  align-items: center;
}

.filter-row > span:first-child {
  min-width: 58px;
  color: #1d2633;
  font-weight: 700;
}

.color-filter .color-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  color: #617087;
  background: var(--filter-color, #fff);
}

.color-filter .color-dot.active {
  color: #617087;
  background: var(--filter-color, #fff);
  border-color: #fff;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.color-filter .color-dot:hover,
.color-filter .color-dot:focus {
  color: #617087;
  background: var(--filter-color, #fff);
  border-color: #9fb4d4;
}

.color-dot.white { background: #fff; box-shadow: inset 0 0 0 1px #d8e4f3; }
.color-dot.pink { background: #f7a8c6; }
.color-dot.yellow { background: #f3d45d; }
.color-dot.gray { background: #a5adba; }

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 34px 3px 0;
  padding: 0 10px;
  color: #526174;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.page-numbers.current {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
}

.product-pagination {
  display: none;
}

.news-pagination {
  display: none;
}

.product-load-status,
.news-load-status {
  margin-top: 34px;
  color: #7b8797;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.footer-showcase {
  width: 80%;
  margin-top: 86px;
  padding-top: 34px;
  padding-bottom: 0;
  border-top: 1px solid #edf1f5;
}

.footer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-section-head h2 {
  color: #1d2633;
  font-size: 24px;
  font-weight: 500;
}

.footer-arrows {
  display: flex;
  gap: 10px;
}

.footer-arrow {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #2f67d7;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-arrow:hover,
.footer-arrow:focus-visible {
  color: #fff;
  background: #2f67d7;
  border-color: #2f67d7;
  outline: none;
}

.partner-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 5);
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.partner-strip::-webkit-scrollbar,
.certification-grid::-webkit-scrollbar {
  display: none;
}

.partner-card {
  aspect-ratio: 5 / 2;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 8px;
  scroll-snap-align: start;
}

.partner-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.certification-section {
  margin-top: 46px;
}

.certification-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 5);
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cert-card {
  user-select: none;
}

.partner-strip.is-dragging,
.certification-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.footer-intro {
  margin-top: 56px;
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(112deg, #f5f9ff 0%, #fff 58%, #f8fbff 100%);
  border: 1px solid #e1e9f3;
  border-radius: 8px;
}

.site-footer {
  margin-top: 52px;
  padding: 44px 0 24px;
  color: #5f6b7b;
  border-top: 1px solid #edf1f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr 1.05fr;
  gap: 34px;
}

.footer-brand {
  color: #1d2633;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-desc,
.footer-col a,
.footer-col span,
.footer-intro p {
  margin-top: 10px;
  color: #6b7584;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #1d2633;
  font-size: 16px;
}

.footer-menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  display: inline-block;
  margin-top: 0;
  color: #6b7584;
  font-size: 15px;
  line-height: 1.5;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: #2f67d7;
}

.footer-contact > span {
  display: block;
  margin-top: 10px;
}

.footer-contact strong {
  display: block;
  margin: 12px 0;
  color: #2f67d7;
  font-size: 22px;
  font-weight: 600;
}

.footer-contact-html,
.footer-contact p,
.footer-contact ul,
.footer-contact ol {
  margin-top: 10px;
  color: #6b7584;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact-html p,
.footer-contact-html ul,
.footer-contact-html ol,
.footer-contact p,
.footer-contact ul,
.footer-contact ol {
  margin: 0 0 8px;
}

.footer-contact-html a,
.footer-contact a {
  color: #2f67d7;
  text-decoration: none;
}

.footer-contact-html a:hover,
.footer-contact-html a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: underline;
}

.socials,
.footer-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-trust {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 16px;
}

.footer-trust img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.payment-badge {
  min-width: 0;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #4d5a6b;
  background: #fff;
  border: 1px solid #dfe7f1;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.payment-badge.paypal { color: #154c9f; }
.payment-badge.visa { color: #1f3f95; }
.payment-badge.mastercard { color: #d94221; }
.payment-badge.apple { color: #111; }
.payment-badge.bank { color: #2f67d7; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #edf1f5;
  color: #929baa;
  font-size: 13px;
}

.woocommerce-result-count,
.woocommerce-ordering,
.single_add_to_cart_button,
.cart,
.product_meta,
#moderncart-floating-cart,
#moderncart-slide-out-modal,
#power-coupons-drawer {
  display: none !important;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 70;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2f67d7;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(47, 103, 215, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #245bc8;
}

.back-to-top span {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  color: #4f5b6b;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(24, 36, 54, 0.14);
  backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cookie-mark {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef4ff;
  border: 1px solid #d9e6fb;
}

.cookie-mark::before,
.cookie-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #2f67d7;
}

.cookie-mark::before {
  width: 9px;
  height: 9px;
  top: 11px;
  left: 12px;
  box-shadow: 12px 5px 0 rgba(47, 103, 215, 0.75);
}

.cookie-mark::after {
  width: 6px;
  height: 6px;
  right: 10px;
  bottom: 9px;
}

.cookie-consent strong {
  display: block;
  color: #1d2633;
  font-size: 16px;
}

.cookie-consent p {
  color: #4f5b6b;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.cookie-action {
  height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-accept {
  color: #fff;
  background: #2f67d7;
  border: 1px solid #2f67d7;
  box-shadow: 0 12px 24px rgba(47, 103, 215, 0.18);
}

.cookie-accept:hover {
  background: #245bc8;
  border-color: #245bc8;
}

.cookie-reject {
  color: #445066;
  background: #fff;
  border: 1px solid #d6dfec;
}

.cookie-reject:hover {
  color: #1d2633;
  background: #f5f8fc;
  border-color: #c6d3e4;
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
    width: 40px;
    height: 40px;
  }

body.nav-open {
  overflow: hidden;
}

body.auth-open {
  overflow: hidden;
}

  .nav {
    width: 100%;
    height: 64px;
    min-height: 64px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 0 18px;
  }

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

  .logo img {
    max-width: min(180px, 52vw);
    max-height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 42px;
    order: 3;
  }

  .actions {
    display: flex;
    flex: 0 0 auto;
    order: 2;
    width: auto;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 8px;
  }

  .actions > a:not(.search),
  .actions .divider {
    display: none;
  }

  .account-toggle {
    width: 42px;
    padding: 0;
    justify-content: center;
    border: 0;
    background: transparent;
  }

  .account-toggle > span:not(.account-icon),
  .account-toggle::after {
    display: none;
  }

  .account-dropdown {
    right: -42px;
  }

  .menu {
    position: fixed;
    z-index: 40;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(82vw, 320px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 22px 28px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 24px 0 60px rgba(25, 45, 76, 0.16);
    transform: translateX(-104%);
    transition: transform 0.24s ease;
  }

  .menu.is-open {
    transform: translateX(0);
  }

  .menu::before {
    display: none;
    content: none;
  }

  .menu::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background: rgba(16, 29, 48, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .menu.is-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .menu li {
    width: 100%;
  }

  .menu .mobile-drawer-logo-item {
    display: block;
    margin-bottom: 26px;
  }

  .menu .mobile-drawer-logo {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: #1d2633;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 700;
  }

  .menu .mobile-drawer-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 42px;
    object-fit: contain;
  }

  .menu a {
    height: auto;
    min-height: 48px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid #edf1f5;
    font-size: 16px;
  }

  .menu .current-menu-item > a,
  .menu .current-menu-ancestor > a,
  .menu .active {
    color: #2c63cb;
    border-bottom: 1px solid #d8e6fa;
    font-weight: 700;
  }

  .menu > li.menu-item-has-children:hover > a::after,
  .menu > li.menu-item-has-children:focus-within > a::after {
    transform: rotate(45deg) translateY(-2px);
  }

  .menu > li.menu-item-has-children.submenu-open > a::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .menu .sub-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .menu .sub-menu .sub-menu {
    position: static;
    min-width: 0;
    transform: none;
  }

  .menu li:hover > .sub-menu,
  .menu li:focus-within > .sub-menu {
    visibility: visible;
    transform: none;
  }

  .menu .sub-menu::before,
  .menu .sub-menu::after {
    display: none;
  }

  .menu li.submenu-open > .sub-menu,
  .menu li.submenu-open:hover > .sub-menu,
  .menu li.submenu-open:focus-within > .sub-menu {
    max-height: 520px;
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .menu .sub-menu a {
    min-height: 36px;
    padding: 0 0 0 14px;
    color: #667386;
    background: transparent;
    border-bottom: 0;
    border-left: 2px solid #dbe6f5;
    border-radius: 0;
    font-size: 14px;
  }

  .menu .sub-menu .menu-item-has-children > a::after {
    margin-left: 8px;
    transform: rotate(45deg) translateY(-2px);
  }

  .menu .sub-menu .menu-item-has-children.submenu-open > a::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .menu .sub-menu a:hover,
  .menu .sub-menu a:focus {
    transform: none;
  }

  .menu .mobile-auth-item {
    display: block;
    margin-top: 20px;
  }

  .menu .mobile-auth-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .menu .mobile-auth-btn {
    min-height: 46px;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d8e4f3;
    border-radius: 6px;
    font-weight: 700;
  }

  .menu .mobile-auth-login {
    color: #2f67d7;
    background: #fff;
  }

  .menu .mobile-auth-register {
    color: #fff;
    background: #2f67d7;
    border-color: #2f67d7;
  }

	  .page,
	  .section,
	  .footer-showcase {
	    padding-right: 16px;
	    padding-left: 16px;
	    width: 100%;
	  }

	  .product-page {
	    padding-right: 16px;
	    padding-left: 16px;
	  }

  .news-head {
    align-items: flex-start;
    flex-direction: column;
  }

	  .content-page {
	    width: 100%;
	    padding-right: 16px;
	    padding-left: 16px;
	  }

	  .content-page .page-content {
	    width: 100%;
	    max-width: 100%;
	    overflow-x: hidden;
	  }

	  .content-page .tinv-wishlist {
	    width: 100%;
	    max-width: 100%;
	    padding: 18px;
	    overflow: visible;
	  }

	  .content-page .tinv-header h2 {
	    font-size: 24px;
	  }

	  .content-page .tinvwl-table-manage-list {
	    display: block;
	    width: 100%;
	    min-width: 0;
	    border-collapse: separate;
	  }

	  .content-page .tinvwl-table-manage-list thead,
	  .content-page .tinvwl-table-manage-list tfoot {
	    display: none;
	  }

	  .content-page .tinvwl-table-manage-list tbody {
	    display: grid;
	    gap: 14px;
	  }

	  .content-page .tinvwl-table-manage-list tr.wishlist_item {
	    position: relative;
	    display: grid;
	    grid-template-columns: 88px minmax(0, 1fr);
	    gap: 10px 14px;
	    padding: 14px;
	    background: #fff;
	    border: 1px solid #e1e9f3;
	    border-radius: 8px;
	    box-shadow: 0 10px 22px rgba(28, 38, 52, 0.04);
	  }

	  .content-page .tinvwl-table-manage-list tr.wishlist_item td {
	    display: block !important;
	    width: auto !important;
	    padding: 0;
	    border-bottom: 0;
	    text-align: left;
	  }

	  .content-page .tinvwl-table-manage-list td.product-cb {
	    position: absolute;
	    top: 15px;
	    left: 15px;
	    z-index: 1;
	  }

	  .content-page .tinvwl-table-manage-list td.product-remove {
	    position: absolute;
	    top: 12px;
	    right: 12px;
	    z-index: 1;
	    display: block !important;
	  }

	  .content-page .tinvwl-table-manage-list td.product-thumbnail {
	    grid-row: 1 / span 4;
	    width: 88px !important;
	  }

	  .content-page .tinvwl-table-manage-list .product-thumbnail img {
	    width: 88px;
	    height: 88px;
	    margin: 0;
	  }

	  .content-page .tinvwl-table-manage-list td.product-name {
	    padding-right: 34px;
	    color: #1d2633;
	    font-size: 14px;
	    line-height: 1.45;
	  }

	  .content-page .tinvwl-table-manage-list td.product-price,
	  .content-page .tinvwl-table-manage-list td.product-date,
	  .content-page .tinvwl-table-manage-list td.product-stock {
	    color: #526174;
	    font-size: 12px;
	    line-height: 1.45;
	  }

	  .content-page .tinvwl-table-manage-list td.product-stock p {
	    margin: 0;
	  }

	  .content-page .tinvwl-table-manage-list td.product-action {
	    grid-column: 1 / -1;
	    margin-top: 4px;
	  }

	  .content-page .tinvwl-table-manage-list td.product-action .button {
	    width: 100%;
	  }

	  .content-page .tinv-wishlist .cart-empty {
	    padding: 18px;
	    line-height: 1.6;
	  }

	  .content-page .tinv-wishlist .return-to-shop {
	    width: 100%;
	  }

	  .content-page .tinv-wishlist .button,
	  .content-page .tinv-wishlist button.button {
	    width: 100%;
	    min-height: 44px;
	    white-space: normal;
	    text-align: center;
	  }

	  .hero-inner,
	  .profile-content,
	  .about-hero,
	  .article-layout,
	  .product-detail,
	  .inquiry-panel,
	  .footer-intro {
	    grid-template-columns: 1fr;
	  }

  .hero-inner {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .article-sidebar {
    position: static;
  }

			  .gallery {
			    grid-template-columns: 1fr;
			  }

			  .thumbs {
			    display: grid;
			    grid-auto-flow: column;
			    grid-auto-columns: calc((100% - 36px) / 4);
			    gap: 12px;
			    max-height: none;
			    overflow-x: auto;
			    overflow-y: hidden;
			    scroll-snap-type: x proximity;
			    -webkit-overflow-scrolling: touch;
			  }

			  .thumb {
			    width: 100%;
			    min-width: 0;
			    scroll-snap-align: start;
			  }

		  .product-grid,
		  .home-product-loop ul.products,
		  .related-grid,
		  .news-grid,
  .advantage-grid,
  .footer-grid,
  .series-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-strip,
  .certification-grid {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .partner-card {
    height: auto;
    aspect-ratio: 5 / 2;
    min-height: 0;
    padding: 0;
  }

  .certification-section {
    margin-top: 34px;
  }
}

@media (max-width: 900px) {
  .contact-page {
    padding: 34px 18px 54px;
  }

  .contact-inquiry-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info h2 {
    margin-top: 0;
  }

  .contact-page .contact-form {
    grid-template-columns: 1fr;
  }

  .about-page {
    padding-top: 28px;
  }

  .about-page .about-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .about-page .about-photo,
  .about-page .about-photo img {
    min-height: 320px;
  }

  .about-page .about-copy h1 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .about-page .stat-row,
  .about-page .advantage-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-page .section {
    margin-top: 48px;
    padding-top: 34px;
  }

  .about-page .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .profile-section {
    padding-top: 72px;
    padding-bottom: 46px;
  }

  .profile-section .profile-content {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  .profile-section .profile-image {
    width: 100%;
  }

  .profile-section .profile-copy {
    width: 100%;
  }

  .profile-copy h3 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .profile-copy p {
    max-width: none;
  }

  .stats {
    gap: 26px 46px;
    margin-top: 32px;
  }
}

@media (max-width: 560px) {
  .contact-page {
    padding: 26px 14px 42px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-page .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .contact-page .contact-form .form-field {
    min-height: 56px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 15px;
  }

  .contact-page .contact-form textarea.form-field {
    min-height: 120px;
  }

  .about-page {
    padding-top: 24px;
  }

  .about-page .breadcrumb {
    margin-bottom: 0;
  }

  .about-page .about-hero {
    gap: 22px;
    margin-top: 22px;
  }

  .about-page .about-photo,
  .about-page .about-photo img {
    min-height: 240px;
  }

  .about-page .about-copy h1 {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.2;
  }

  .about-page .about-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-page .stat-row {
    margin-top: 22px;
    gap: 12px;
  }

  .about-page .stat-card {
    padding: 16px;
  }

  .about-page .stat-card strong {
    font-size: 26px;
  }

  .about-page .section {
    margin-top: 38px;
    padding-top: 28px;
  }

  .about-page .section-head {
    margin-bottom: 20px;
  }

  .about-page .section-head h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .about-page .section-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .about-page .advantage-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px;
  }

  .about-page .advantage-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .about-page .advantage-card h3 {
    font-size: 16px;
  }

  .about-page .advantage-card p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.62;
  }

  .page,
  .section,
  .footer-showcase {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .content-page {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .content-page .tinv-wishlist {
    padding: 16px;
  }

  .content-page .tinv-header h2 {
    font-size: 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero,
  .hero-track,
  .hero-slide {
    min-height: 560px;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(24px, 7.4vw, 34px);
    white-space: nowrap;
  }

  .hero p {
    font-size: 18px;
  }

		  .product-grid,
		  .home-product-loop ul.products,
		  .related-grid,
		  .news-grid,
	  .advantage-grid,
  .stat-row,
  .footer-grid,
  .series-row,
  .comment-form,
  .inquiry-form,
  .article-pager,
		  .product-pager {
		    grid-template-columns: 1fr;
		  }

	  .partner-strip,
  .certification-grid {
    grid-auto-columns: calc((100% - 10px) / 2);
    gap: 10px;
  }

  .footer-showcase {
    width: 100%;
    margin-top: 54px;
    padding-top: 24px;
  }

  .footer-section-head {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .footer-section-head h2 {
    font-size: 20px;
  }

  .footer-arrows {
    gap: 8px;
  }

  .footer-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .partner-card {
    height: auto;
    aspect-ratio: 5 / 2;
    min-height: 0;
    padding: 0;
    border-radius: 6px;
  }

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

  .category-tabs {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 16px) / 3);
    grid-template-columns: none;
    justify-content: start;
    gap: 8px;
    max-width: 100%;
    margin-top: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tabs .category {
    min-height: 98px;
    gap: 8px;
    scroll-snap-align: center;
  }

  .category-icon {
    width: 44px;
    height: 44px;
  }

  .category-tabs .category svg {
    width: 24px;
    height: 24px;
  }

  .category-tabs .category span:last-child {
    font-size: 13px;
  }

  .category-head,
  .related-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-head {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .related-head h2 {
    min-width: 0;
    font-size: 26px;
  }

  .related-head .refresh-related {
    flex: 0 0 auto;
  }

  .procurement-search {
    grid-template-columns: 1fr;
  }

  .product-search-inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-search-panel {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .product-search-form {
    grid-template-columns: 1fr;
  }

  .product-search-close {
    justify-self: center;
  }

  .product-search-close::before,
  .product-search-close::after {
    left: 50%;
    transform-origin: center;
  }

  .product-search-close::before {
    transform: translateX(-50%) rotate(45deg);
  }

  .product-search-close::after {
    transform: translateX(-50%) rotate(-45deg);
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-card,
  .news-list .news-card {
    grid-template-columns: 1fr;
  }

  .news-list .news-card {
    grid-template-columns: minmax(96px, 28%) minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .news-list .news-thumb {
    aspect-ratio: 25 / 22;
    height: auto;
  }

  .news-list .news-card p {
    -webkit-line-clamp: 2;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .news-list .news-date {
    font-size: 12px;
  }

  .news-list .news-card h3 {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.28;
  }

  .footer-section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-carousel .footer-section-head {
    align-items: center;
    flex-direction: row;
  }

  .footer-carousel .partner-strip {
    grid-auto-columns: 38%;
    gap: 10px;
  }

  .footer-carousel .certification-grid {
    grid-auto-columns: 38%;
    gap: 10px;
  }

  .footer-carousel .partner-card {
    height: auto;
    aspect-ratio: 5 / 2;
    min-height: 0;
    padding: 0;
  }

  .footer-carousel .partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .auth-captcha {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .auth-captcha img {
    justify-self: stretch;
    width: 100%;
  }

  .auth-captcha input[type="number"] {
    width: 100%;
  }
}
