body {
  background-color: #eef1ed;
  background-image:
    linear-gradient(180deg, rgba(250, 247, 240, 0.82), rgba(238, 241, 237, 0.98)),
    linear-gradient(90deg, rgba(49, 74, 62, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(49, 74, 62, 0.05) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  background-position: 0 0, center top, center top;
  background-attachment: scroll, fixed, fixed;
  color: #17221b;
}

a {
  color: inherit;
}

#kt_wrapper {
  min-height: 100vh;
  justify-content: flex-start;
  align-items: stretch;
}

.psk-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(73, 92, 79, 0.18);
  box-shadow: 0 16px 40px rgba(23, 34, 27, 0.1);
}

.psk-site-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.psk-site-header-bar {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.psk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 280px;
  max-width: 430px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(212, 196, 167, 0.72);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 238, 0.94));
  box-shadow: 0 10px 26px rgba(23, 34, 27, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.psk-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  background: #fff;
  filter: drop-shadow(0 5px 12px rgba(15, 23, 42, 0.12));
}

.psk-brand-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.psk-brand-title {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  color: #17221b;
}

.psk-brand-subtitle {
  position: relative;
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: #465346;
  font-weight: 700;
  max-width: 320px;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transform-origin: left center;
  animation: psk-brand-tagline-pulse 4.8s ease-in-out infinite;
}

.psk-brand-subtitle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.75) 48%, rgba(255, 255, 255, 0.08) 62%, transparent 100%);
  transform: translateX(-120%);
  animation: psk-brand-tagline-shine 4.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes psk-brand-tagline-pulse {
  0%,
  100% {
    color: #465346;
    transform: translateX(0) scale(1);
    text-shadow: none;
  }
  22% {
    color: #1f6b43;
    transform: translateX(1px) scale(1.025);
    text-shadow: 0 4px 14px rgba(31, 107, 67, 0.18);
  }
  46% {
    color: #b46f16;
    transform: translateY(-1px) scale(1.04);
    text-shadow: 0 4px 14px rgba(180, 111, 22, 0.2);
  }
  68% {
    color: #245f7a;
    transform: translateX(1px) scale(1.02);
    text-shadow: 0 4px 14px rgba(36, 95, 122, 0.18);
  }
}

@keyframes psk-brand-tagline-shine {
  0%,
  38% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

.psk-header-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

.psk-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #d6ded2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: #17221b;
  cursor: pointer;
}

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

.psk-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.psk-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.psk-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.psk-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(212, 196, 167, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.psk-main-nav a {
  position: relative;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #3f4d42;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.psk-main-nav a:hover,
.psk-main-nav a:focus {
  background: rgba(235, 242, 232, 0.95);
  color: #1f6b43;
  transform: translateY(-1px);
}

.psk-main-nav a.is-active {
  background: linear-gradient(180deg, #ffffff, #edf6e8);
  color: #1f6b43;
  box-shadow: 0 6px 18px rgba(31, 107, 67, 0.15);
}

.psk-main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #c58a2a;
}

.psk-nav-admin {
  border: 1px solid #dbe3f0;
  background: #fff;
}

.psk-page {
  display: block;
  flex: 1 0 auto;
  align-self: stretch;
  justify-content: flex-start;
  padding: 36px 0 64px;
  padding-bottom: 210px;
  min-height: 0;
}

.psk-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(197, 138, 42, 0.12), transparent 30%),
    radial-gradient(circle at left 18% top 24%, rgba(31, 107, 67, 0.1), transparent 26%),
    radial-gradient(circle at bottom left, rgba(88, 71, 54, 0.08), transparent 22%);
  z-index: -1;
}

.psk-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center right;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(23, 34, 27, 0.22);
}

.psk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 34, 27, 0.88) 0%, rgba(23, 34, 27, 0.66) 42%, rgba(23, 34, 27, 0.18) 72%),
    linear-gradient(180deg, rgba(23, 34, 27, 0.08), rgba(23, 34, 27, 0.46));
}

.psk-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% 24%;
  height: 62%;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, transparent, rgba(197, 138, 42, 0.22), transparent);
  transform: rotate(-3deg);
  animation: psk-site-measure-sweep 9s ease-in-out infinite;
  pointer-events: none;
}

.psk-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 64px 48px 56px;
  color: #fff;
}

.psk-hero h1,
.psk-page-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

.psk-hero h1 {
  max-width: 780px;
  color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #fff3bf 24%, #b9f0c6 48%, #ffffff 72%, #e4b45f 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34));
  transform-origin: left center;
  animation:
    psk-hero-rise 0.7s ease both,
    psk-hero-title-glow 4.8s ease-in-out 0.7s infinite;
}

.psk-hero h1::after {
  content: "";
  display: block;
  width: min(220px, 42%);
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e4b45f, #6fbe7d, rgba(255, 255, 255, 0));
  box-shadow: 0 0 22px rgba(228, 180, 95, 0.34);
  transform-origin: left center;
  animation: psk-hero-title-rule 4.8s ease-in-out 0.7s infinite;
}

.psk-hero p,
.psk-page-head p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.psk-hero p {
  position: relative;
  display: inline-block;
  max-width: 680px;
  color: rgba(255, 250, 241, 0.94);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform-origin: left center;
  animation:
    psk-hero-rise 0.7s ease 0.12s both,
    psk-hero-slogan-focus 5.6s ease-in-out 1s infinite;
}

.psk-hero p::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -5px;
  bottom: -5px;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(197, 138, 42, 0), rgba(197, 138, 42, 0.2), rgba(31, 107, 67, 0));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  animation: psk-hero-slogan-band 5.6s ease-in-out 1s infinite;
}

.psk-hero p::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #e4b45f;
  box-shadow: 0 0 0 0 rgba(228, 180, 95, 0.36);
  transform: translateY(-50%);
  animation: psk-hero-slogan-marker 5.6s ease-in-out 1s infinite;
}

@keyframes psk-hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes psk-hero-title-glow {
  0%,
  100% {
    background-position: 0% 50%;
    transform: translateX(0) scale(1);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34));
  }
  28% {
    background-position: 52% 50%;
    transform: translateX(3px) scale(1.018);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 18px rgba(228, 180, 95, 0.24));
  }
  58% {
    background-position: 100% 50%;
    transform: translateY(-2px) scale(1.032);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 22px rgba(111, 190, 125, 0.28));
  }
  78% {
    background-position: 58% 50%;
    transform: translateX(1px) scale(1.012);
  }
}

@keyframes psk-hero-title-rule {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleX(0.72);
  }
  36% {
    opacity: 1;
    transform: scaleX(1.08);
  }
  62% {
    opacity: 0.9;
    transform: scaleX(0.92);
  }
}

@keyframes psk-site-measure-sweep {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-3%) rotate(-3deg);
  }
  50% {
    opacity: 0.5;
    transform: translateX(4%) rotate(-3deg);
  }
}

@keyframes psk-hero-slogan-focus {
  0%,
  100% {
    color: rgba(255, 250, 241, 0.94);
    letter-spacing: 0;
    transform: translateX(0) scale(1);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  20% {
    color: #fff7d6;
    transform: translateX(3px) scale(1.025);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 22px rgba(228, 180, 95, 0.34);
  }
  44% {
    color: #dff4df;
    transform: translateY(-2px) scale(1.04);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 24px rgba(101, 178, 118, 0.36);
  }
  68% {
    color: #ffffff;
    transform: translateX(2px) scale(1.015);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 18px rgba(255, 255, 255, 0.24);
  }
}

@keyframes psk-hero-slogan-band {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.72);
  }
  22%,
  58% {
    opacity: 1;
    transform: scaleX(1);
  }
  78% {
    opacity: 0;
    transform: scaleX(1.06);
  }
}

@keyframes psk-hero-slogan-marker {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-2px, -50%) scale(0.82);
    box-shadow: 0 0 0 0 rgba(228, 180, 95, 0.24);
  }
  24% {
    opacity: 1;
    transform: translate(0, -50%) scale(1.4);
    box-shadow: 0 0 0 8px rgba(228, 180, 95, 0);
  }
  52% {
    opacity: 1;
    transform: translate(0, -50%) scale(1.15);
    box-shadow: 0 0 0 6px rgba(101, 178, 118, 0);
    background: #8fd19e;
  }
  76% {
    opacity: 0.56;
    transform: translate(1px, -50%) scale(0.95);
    background: #fff7d6;
  }
}

.psk-hero-actions,
.psk-page-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.psk-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  max-width: 100%;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  transition: 0.15s ease;
}

.psk-button-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psk-button-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.psk-icon-search::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.psk-icon-search::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.psk-icon-reset::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
}

.psk-icon-reset::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(12deg);
}

.psk-icon-filter::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 14px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 1px 1px;
}

.psk-icon-filter::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewX(-14deg);
}

.psk-icon-cart::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 2px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.psk-icon-cart::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 2px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.psk-icon-mail::before {
  content: "";
  position: absolute;
  inset: 3px 1px 4px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.psk-icon-mail::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 6px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.psk-icon-back::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.psk-icon-check::before,
.psk-icon-checkout::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 8px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}

.psk-icon-remove::before,
.psk-icon-remove::after,
.psk-icon-clear::before,
.psk-icon-clear::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.psk-icon-remove::before,
.psk-icon-clear::before {
  transform: rotate(45deg);
}

.psk-icon-remove::after,
.psk-icon-clear::after {
  transform: rotate(-45deg);
}

.psk-icon-browse::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
  border-radius: 2px;
}

.psk-icon-list::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 2px;
  top: 4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.psk-icon-link::before,
.psk-icon-link::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-32deg);
}

.psk-icon-link::before {
  left: 1px;
  top: 7px;
}

.psk-icon-link::after {
  right: 1px;
  top: 4px;
}

.psk-button-primary {
  background: linear-gradient(180deg, #2f7a4d, #1f5f3b);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 22px rgba(31, 95, 59, 0.22);
}

.psk-button-primary:hover {
  background: linear-gradient(180deg, #38885a, #246b45);
  color: #fff;
  transform: translateY(-1px);
}

.psk-button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.psk-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.psk-button-neutral {
  background: #fffaf2;
  color: #253326;
  border-color: #d9c8a8;
}

.psk-button-neutral:hover {
  background: #f4ead8;
  color: #17221b;
}

.psk-section {
  margin-top: 56px;
}

.psk-ai-summary {
  padding: 30px;
  border: 1px solid rgba(212, 196, 167, 0.68);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(236, 243, 232, 0.94));
  box-shadow: 0 16px 44px rgba(23, 34, 27, 0.08);
}

.psk-fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.psk-fact-list li {
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid #d9c8a8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #26362a;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: 0 8px 18px rgba(23, 34, 27, 0.05);
}

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

.psk-section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #17221b;
}

.psk-section-head p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #566251;
  max-width: 700px;
}

.psk-grid {
  display: grid;
  gap: 18px;
}

.psk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psk-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psk-card {
  display: block;
  background: #fffdf8;
  border: 1px solid #ded2bd;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 34, 27, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.psk-card:hover {
  transform: translateY(-2px);
  border-color: #c58a2a;
  box-shadow: 0 18px 40px rgba(23, 34, 27, 0.13);
}

.psk-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8ded4;
}

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

.psk-card:hover .psk-card-media img,
.psk-product-card:hover .psk-product-media img {
  transform: scale(1.04);
}

.psk-card-body {
  padding: 18px;
}

.psk-card-kicker {
  font-size: 12px;
  font-weight: 700;
  color: #1f6b43;
  text-transform: uppercase;
}

.psk-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #17221b;
}

.psk-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #596653;
}

.psk-news-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.psk-news-card {
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.psk-news-card a {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
}

.psk-news-card h2 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
}

.psk-news-card time,
.psk-news-meta {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.psk-news-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.psk-news-card:hover {
  border-color: #9ec5fe;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.psk-news-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.psk-product-feature-section {
  padding: 30px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(37, 51, 38, 0.96), rgba(62, 86, 57, 0.94)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(23, 34, 27, 0.14);
}

.psk-product-feature-section .psk-section-head h2 {
  color: #fff;
}

.psk-product-feature-section .psk-section-head p {
  color: rgba(255, 250, 241, 0.84);
}

.psk-product-grid,
.psk-product-grid-list {
  align-items: stretch;
}

.psk-product-card {
  display: block;
  background: #fffdf8;
  border: 1px solid #ded2bd;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 28px rgba(23, 34, 27, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.psk-product-card:hover {
  transform: translateY(-2px);
  border-color: #c58a2a;
  box-shadow: 0 18px 40px rgba(23, 34, 27, 0.13);
}

.psk-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #d8ded4;
  overflow: hidden;
}

.psk-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.psk-product-category {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(23, 34, 27, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.psk-product-body {
  padding: 18px;
}

.psk-product-body h2,
.psk-product-body h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #17221b;
}

.psk-product-body p {
  margin: 10px 0 0;
  color: #596653;
  font-size: 14px;
  line-height: 1.7;
}

.psk-product-meta {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
}

.psk-product-price {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #0f5fd7;
}

.psk-product-unit {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.psk-product-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.psk-product-search {
  display: grid;
  gap: 18px;
}

.psk-product-search-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.psk-product-search-top label,
.psk-filter-group {
  display: grid;
  gap: 8px;
}

.psk-product-search-top label span,
.psk-filter-group h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #334155;
}

.psk-product-search-top input,
.psk-range-pair input,
.psk-range-pair select,
.psk-product-sort select {
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 11px;
  background: #f8fafc;
  color: #111827;
}

.psk-product-filter-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.psk-filter-group {
  align-content: start;
  padding: 14px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #f8fafc;
}

.psk-filter-group-wide {
  grid-column: 1 / -1;
}

.psk-filter-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.psk-filter-tree-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
}

.psk-filter-tree {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 66px;
  padding: 8px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.psk-filter-tree:hover,
.psk-filter-tree.is-selected {
  border-color: #0f5fd7;
  box-shadow: 0 8px 20px rgba(15, 95, 215, 0.12);
}

.psk-filter-tree.is-selected {
  background: #eff6ff;
}

.psk-filter-tree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.psk-filter-tree-icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef2f7;
}

.psk-filter-tree-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psk-filter-tree-name {
  color: #334155;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.psk-filter-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}

.psk-filter-chip,
.psk-filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dbe3ef;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.psk-filter-chip.is-selected {
  border-color: #0f5fd7;
  background: #eff6ff;
  color: #0f5fd7;
}

.psk-filter-list {
  display: grid;
  gap: 8px;
}

.psk-range-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.psk-filter-submit {
  display: flex;
  align-items: end;
}

.psk-product-filter {
  position: sticky;
  top: 112px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.psk-product-filter form,
.psk-product-filter label {
  display: grid;
  gap: 8px;
}

.psk-product-filter form {
  gap: 16px;
}

.psk-product-filter label span {
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
}

.psk-product-filter input,
.psk-product-filter select {
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 11px;
  background: #f8fafc;
  color: #111827;
}

.psk-product-filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.psk-product-filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.psk-product-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.psk-product-sort {
  margin: 0;
}

.psk-product-table {
  display: grid;
  gap: 10px;
}

.psk-real-product-table-wrap {
  overflow-x: auto;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.psk-real-product-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  color: #111827;
  font-size: 13px;
}

.psk-real-product-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 11px 12px;
  background: #1f2937;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  white-space: nowrap;
}

.psk-real-product-table td {
  vertical-align: top;
  padding: 13px 12px;
  border-right: 1px solid #eef2f7;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  line-height: 1.45;
}

.psk-real-product-table tbody tr:hover td {
  background: #f8fbff;
}

.psk-real-product-table tbody tr:last-child td {
  border-bottom: 0;
}

.psk-real-product-wood {
  width: 105px;
  text-align: center;
}

.psk-real-product-wood-icon-link {
  display: inline-block;
  border-radius: 14px;
  line-height: 0;
  text-decoration: none;
}

.psk-real-product-wood-icon-link:focus-visible {
  outline: 3px solid rgba(15, 95, 215, 0.35);
  outline-offset: 3px;
}

.psk-real-product-wood img {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 7px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.psk-real-product-wood-icon-link:hover img {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.psk-real-product-wood strong,
.psk-real-product-name a,
.psk-real-product-table td > strong {
  display: block;
  color: #111827;
  font-weight: 900;
}

.psk-real-product-name a {
  color: #0f5fd7;
  text-decoration: none;
}

.psk-real-product-name a:hover {
  text-decoration: underline;
}

.psk-real-product-wood span,
.psk-table-sub,
.psk-real-product-name span,
.psk-real-product-name small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.psk-real-product-name {
  width: 280px;
}

.psk-real-product-name em {
  display: block;
  margin-top: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 800;
}

.psk-real-product-status {
  min-width: 150px;
}

.psk-real-product-status span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 4px 5px 0;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #bfd4fb;
  background: #eff6ff;
  color: #0f5fd7;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.psk-product-detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.psk-product-detail-side,
.psk-product-detail-main,
.psk-product-detail-section {
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.psk-product-detail-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.psk-product-detail-wood {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  text-align: center;
}

.psk-product-detail-wood img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 22px;
  border: 5px solid #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.psk-product-detail-wood h2,
.psk-product-detail-wood p {
  margin: 0;
}

.psk-product-detail-actions {
  display: grid;
  gap: 10px;
}

.psk-product-detail-main {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.psk-product-detail-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.psk-product-detail-summary div {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.psk-product-detail-summary span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.psk-product-detail-summary strong {
  display: block;
  margin-top: 5px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.psk-product-detail-section {
  overflow: hidden;
}

.psk-product-detail-section h2 {
  margin: 0;
  padding: 14px 16px;
  background: #1f2937;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.psk-product-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.psk-product-detail-table th,
.psk-product-detail-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
  text-align: left;
}

.psk-product-detail-table th {
  width: 190px;
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.psk-product-detail-table td {
  color: #111827;
  font-size: 14px;
  line-height: 1.6;
}

.psk-product-detail-table td strong,
.psk-product-detail-table td span {
  display: block;
}

.psk-product-detail-table td span {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
}

.psk-product-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.psk-product-detail-card {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
}

.psk-product-detail-card span,
.psk-product-detail-card strong,
.psk-product-detail-card small {
  display: block;
}

.psk-product-detail-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.psk-product-detail-card strong {
  margin-top: 6px;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.psk-product-detail-card small {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.psk-product-table-head,
.psk-product-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.4fr) minmax(180px, 0.9fr) minmax(120px, 0.5fr) 110px;
  gap: 14px;
  align-items: center;
}

.psk-product-table-head {
  padding: 10px 14px;
  border-radius: 12px;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.psk-product-row {
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.psk-product-row-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: #eef2f7;
}

.psk-product-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psk-product-row-main h2 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.psk-product-row-main p,
.psk-product-row-spec p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.psk-product-number {
  color: #0f5fd7 !important;
  font-weight: 900;
}

.psk-product-row-price strong {
  display: block;
  color: #0f5fd7;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.psk-product-row-price span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.psk-product-grid-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.psk-product-specs {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
}

.psk-product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #eadfca;
  padding-top: 6px;
}

.psk-product-specs dt {
  color: #687461;
  font-size: 12px;
  font-weight: 800;
}

.psk-product-specs dd {
  margin: 0;
  color: #17221b;
  font-size: 12px;
  font-weight: 800;
}

.psk-product-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  border-radius: 9px;
  background: #0f5fd7;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.psk-product-inquiry:hover {
  color: #fff;
  background: #0b52ba;
}

.psk-band {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
  padding: 28px;
}

.psk-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.psk-list {
  display: grid;
  gap: 14px;
}

.psk-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.psk-list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.psk-list-index {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef4ff;
  color: #0f5fd7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

.psk-list-item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
}

.psk-list-item p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

.psk-quote-card {
  background: linear-gradient(180deg, #fffdf8, #f7f1e7);
  border: 1px solid #ded2bd;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 12px 28px rgba(23, 34, 27, 0.07);
}

.psk-quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.psk-quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 3px solid #fffaf2;
  box-shadow: 0 8px 18px rgba(23, 34, 27, 0.13);
}

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

.psk-quote-name {
  font-size: 17px;
  font-weight: 800;
  color: #17221b;
}

.psk-quote-body {
  font-size: 14px;
  line-height: 1.8;
  color: #465346;
}

.psk-comment-layout {
  display: block;
}

.psk-comment-form,
.psk-comment-thread {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.psk-comment-form {
  display: grid;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}

.psk-comment-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  color: #111827;
}

.psk-comment-form textarea {
  width: 100%;
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  color: #111827;
  font: inherit;
}

.psk-comment-form textarea {
  resize: vertical;
  min-height: 132px;
}

.psk-comment-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
  background: #fff;
}

.psk-comment-actions,
.psk-comment-success,
.psk-comment-form .psk-contact-form-errors {
  width: 100%;
}

.psk-comment-success {
  padding: 12px 14px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

.psk-comment-actions {
  display: flex;
  justify-content: flex-end;
}

.psk-comment-thread {
  display: grid;
  gap: 14px;
}

.psk-modal-open {
  overflow: hidden;
}

.psk-comment-login-modal[hidden] {
  display: none;
}

.psk-comment-login-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
}

.psk-comment-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 34, 27, 0.62);
  backdrop-filter: blur(5px);
}

.psk-comment-login-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #d9c8a8;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf8, #f7f1e7);
  box-shadow: 0 26px 80px rgba(23, 34, 27, 0.32);
}

.psk-comment-login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid #d9c8a8;
  border-radius: 999px;
  background: #fffaf2;
  color: #253326;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.psk-comment-login-close:hover {
  background: #f5ead7;
  color: #1f6b43;
}

.psk-comment-login-head {
  padding-right: 36px;
}

.psk-comment-login-head h3 {
  margin: 0;
  color: #17221b;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.psk-comment-login-head p {
  margin: 8px 0 0;
  color: #566251;
  font-size: 14px;
  line-height: 1.65;
}

.psk-comment-social-login {
  display: grid;
  gap: 10px;
}

.psk-comment-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #f8fafc;
}

.psk-comment-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.psk-comment-item-head strong {
  color: #111827;
  font-size: 15px;
}

.psk-comment-item-head time {
  color: #64748b;
  font-size: 12px;
  white-space: nowrap;
}

.psk-comment-item p,
.psk-comment-empty {
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
}

.psk-page-head {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(23, 34, 27, 0.96), rgba(41, 83, 57, 0.94)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  color: #fff;
  padding: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(23, 34, 27, 0.16);
}

.psk-page-head h1,
.psk-page-head h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
}

.psk-page-head p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.psk-page-head-copy {
  max-width: 760px;
  margin-top: 18px;
}

.psk-page-head-copy p,
.psk-page-head-copy li,
.psk-prose-invert p,
.psk-prose-invert li {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.psk-page-head-copy p:first-child,
.psk-prose-invert p:first-child {
  margin-top: 0;
}

.psk-page-head-copy p:last-child,
.psk-prose-invert p:last-child {
  margin-bottom: 0;
}

.psk-page-head-copy ul,
.psk-page-head-copy ol,
.psk-prose-invert ul,
.psk-prose-invert ol {
  margin: 0.8em 0 0;
  padding-left: 1.3em;
}

.psk-page-head-copy strong,
.psk-page-head-copy h2,
.psk-page-head-copy h3,
.psk-prose-invert strong,
.psk-prose-invert h2,
.psk-prose-invert h3 {
  color: #fff;
}

.psk-page-head-copy br + br {
  content: "";
  display: block;
  margin-top: 0.55em;
}

.psk-breadcrumbs {
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.psk-breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.psk-detail-meta {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.psk-detail-meta a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.psk-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.psk-detail-content,
.psk-detail-side {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
}

.psk-service-story {
  display: grid;
  gap: 24px;
}

.psk-service-gallery-stage {
  display: grid;
  gap: 16px;
}

.psk-service-gallery-hero {
  overflow: hidden;
  border-radius: 18px;
  background: #dbe3eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.psk-service-gallery-hero {
  min-height: 520px;
}

.psk-service-gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psk-service-gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.psk-service-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.psk-service-gallery-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.psk-service-gallery-thumb.is-active {
  border-color: #0f5fd7;
  box-shadow: 0 0 0 3px rgba(15, 95, 215, 0.14);
}

.psk-service-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.psk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.psk-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.psk-company-table {
  display: grid;
  gap: 0;
}

.psk-company-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 0.66fr);
  border-bottom: 1px solid #e5e7eb;
}

.psk-company-row:first-child {
  border-top: 1px solid #e5e7eb;
}

.psk-company-label,
.psk-company-value {
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.7;
}

.psk-company-label {
  background: #eef2f7;
  color: #111827;
  font-weight: 800;
}

.psk-company-value {
  background: #fafbfd;
  color: #374151;
}

.psk-company-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23, 34, 27, 0.12);
}

.psk-company-map {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}

.psk-company-map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  pointer-events: none;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.psk-company-map-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, #e53e3e, #b91c1c);
  transform: rotate(-45deg);
  border: 3px solid #fff;
}

.psk-company-map-pin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -62%);
}

.psk-company-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 34px;
  height: 14px;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.24);
  transform: translateX(-50%);
  animation: psk-map-pin-pulse 1.8s ease-in-out infinite;
}

.psk-company-map-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid #d9c8a8;
  border-radius: 9px;
  background: #fffaf2;
  color: #1f6b43;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.psk-company-map-link:hover {
  background: #edf6e8;
  border-color: #1f6b43;
  color: #1f6b43;
}

@keyframes psk-map-pin-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-50%) scale(0.82);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.22);
  }
}

.psk-about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.psk-about-panel,
.psk-about-side,
.psk-contact-side {
  height: 100%;
}

.psk-about-panel h2,
.psk-about-side h2,
.psk-contact-side h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.psk-contact-content .psk-contact-form,
.psk-contact-form {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
}

.psk-detail-content.psk-contact-content,
.psk-contact-content {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 26px;
}

.psk-contact-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  border-top: 1px solid #e5e7eb;
}

.psk-contact-row:last-of-type {
  border-bottom: 1px solid #e5e7eb;
}

.psk-contact-label,
.psk-contact-value {
  padding: 18px;
}

.psk-contact-label {
  background: #eef2f7;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  color: #111827;
}

.psk-contact-label .psk-required-mark,
.psk-contact-feedback .psk-required-mark,
.psk-required-mark {
  color: #e11d48 !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

.psk-contact-value {
  background: #fff;
}

.psk-contact-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.psk-contact-name-grid label,
.psk-contact-value label {
  display: grid;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: #4b5563;
}

.psk-contact-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.psk-contact-value input,
.psk-contact-value textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  background: #f8fafc;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #111827;
}

.psk-contact-inline input {
  width: auto;
  min-width: 0;
  flex: 1 1 0;
}

.psk-contact-inline span {
  flex: 0 0 auto;
  color: #64748b;
  font-weight: 900;
}

.psk-contact-row:nth-of-type(even) .psk-contact-value {
  background: #fbfdff;
}

.psk-contact-content h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.psk-contact-context {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #bfd4fb;
  border-radius: 14px;
  background: #eff6ff;
}

.psk-contact-context span {
  display: block;
  color: #0f5fd7;
  font-size: 12px;
  font-weight: 900;
}

.psk-contact-context strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.psk-contact-context p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.psk-contact-value textarea {
  min-height: 180px;
  resize: vertical;
}

.psk-contact-value input:focus,
.psk-contact-value textarea:focus {
  outline: 0;
  border-color: #0f5fd7;
  box-shadow: 0 0 0 3px rgba(15, 95, 215, 0.12);
  background: #fff;
}

.psk-contact-form.is-validated input:invalid,
.psk-contact-form.is-validated textarea:invalid,
.psk-contact-value input:invalid:focus,
.psk-contact-value textarea:invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
  background: #fff7f7;
}

.psk-contact-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 20px;
}

.psk-contact-feedback {
  margin-right: auto;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #6b7280;
}

.psk-contact-form .psk-contact-form-errors,
.psk-contact-form .psk-field-error,
.psk-contact-form-errors,
.psk-field-error {
  color: #dc2626 !important;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.psk-contact-form-errors {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 12px;
  background: #fef2f2;
}

.psk-field-error {
  margin-top: 6px;
}

.psk-contact-feedback.is-error {
  color: #b91c1c;
}

.psk-contact-feedback.is-success {
  color: #047857;
}

.psk-contact-map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 16px;
  display: block;
  margin-top: 18px;
}

.psk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.psk-pagination-link,
.psk-pagination-current {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.psk-pagination-link {
  background: #fff;
  border: 1px solid #dbe3f0;
  color: #374151;
}

.psk-pagination-link:hover {
  background: #eef4ff;
  color: #0f5fd7;
  border-color: #bfd4fb;
}

.psk-pagination-current {
  background: #0f5fd7;
  color: #fff;
  border: 1px solid #0f5fd7;
}

.psk-pagination-muted {
  font-size: 13px;
  color: #6b7280;
  padding: 0 6px;
}

.psk-prose,
.psk-prose p,
.psk-prose li {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
}

.psk-prose p:first-child {
  margin-top: 0;
}

.psk-prose h2,
.psk-prose h3,
.psk-prose h4 {
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  margin: 1.6em 0 0.65em;
}

.psk-prose h2 {
  font-size: 28px;
}

.psk-prose h3 {
  font-size: 22px;
}

.psk-prose ul,
.psk-prose ol {
  padding-left: 1.3em;
  margin: 0.8em 0 1.1em;
}

.psk-prose li + li {
  margin-top: 0.45em;
}

.psk-prose strong {
  color: #111827;
  font-weight: 800;
}

.psk-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.psk-about-staff-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
}

.psk-about-staff-media {
  width: 200px;
  display: flex;
  justify-content: center;
}

.psk-about-staff-media a,
.psk-about-staff-media img {
  display: block;
}

.psk-about-staff-media img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% / 42%;
  border: 6px solid rgba(255, 255, 255, 0.96);
  outline: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.14),
    0 2px 10px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.psk-about-staff-copy h3 {
  margin: 0 0 6px;
}

.psk-about-staff-role {
  margin: 0 0 12px;
  color: #6b7280;
  font-weight: 700;
}

.psk-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.psk-header-icon-button,
.psk-header-login,
.psk-header-account-trigger {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid #d9c8a8;
  background: rgba(255, 250, 242, 0.86);
  color: #253326;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.psk-customer-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.psk-customer-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
  background: #edf6e8;
  color: #1f6b43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.psk-customer-avatar-lg {
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.psk-header-icon-button,
.psk-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}

.psk-header-icon-button:hover,
.psk-header-login:hover,
.psk-header-icon-button.is-active,
.psk-header-login.is-active {
  border-color: #b9852c;
  background: #f5ead7;
  color: #1f6b43;
}

.psk-header-cart-mark {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.psk-header-cart-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -6px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.psk-header-icon-button strong {
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1f6b43;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.psk-header-account-menu {
  position: relative;
}

.psk-header-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  padding: 0 12px;
  cursor: pointer;
}

.psk-header-account-trigger > span {
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.psk-header-account-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.psk-header-account-trigger:hover,
.psk-header-account-trigger[aria-expanded="true"] {
  border-color: #b9852c;
  background: #f5ead7;
  color: #1f6b43;
}

.psk-header-account-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 180px;
  padding: 8px;
  border: 1px solid #e3d6bd;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 18px 40px rgba(31, 45, 36, 0.18);
}

.psk-header-account-popover a,
.psk-header-account-popover button {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #253326;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.psk-header-account-popover a:hover,
.psk-header-account-popover button:hover {
  background: #f5ead7;
  color: #1f6b43;
}

.psk-header-account-popover form {
  margin: 0;
}

.psk-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #1f6b43;
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.psk-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.psk-action-card {
  display: flex;
  flex-direction: column;
}

.psk-action-card .psk-card-link {
  flex: 1 1 auto;
}

.psk-card-action-form {
  display: grid;
  padding: 0 18px 18px;
  margin: 0;
}

.psk-inline-action-form,
.psk-detail-cart-form,
.psk-real-product-action form,
.psk-payment-submit {
  margin: 0;
}

.psk-product-add-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid #0f5fd7;
  border-radius: 10px;
  background: #0f5fd7;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.psk-product-add-button:hover {
  background: #0b52ba;
}

.psk-auth-layout,
.psk-cart-layout,
.psk-checkout-layout,
.psk-payment-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.psk-auth-layout {
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
}

.psk-auth-panel,
.psk-empty-state,
.psk-cart-summary,
.psk-checkout-form,
.psk-checkout-summary,
.psk-payment-section,
.psk-order-complete {
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.psk-auth-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.psk-auth-panel h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.psk-auth-form {
  display: grid;
  gap: 12px;
  margin: 0;
}

.psk-auth-form label {
  display: grid;
  gap: 7px;
}

.psk-auth-form label span {
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.psk-auth-form input,
.psk-auth-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 9px 12px;
  background: #f8fafc;
  color: #111827;
  font-size: 15px;
}

.psk-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.psk-auth-links a {
  color: #0f5fd7;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.psk-auth-links a:hover {
  text-decoration: underline;
}

.psk-alert {
  padding: 12px 14px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  font-weight: 800;
}

.psk-alert-success {
  border-color: #bbdfc3;
  background: #f0fbf2;
  color: #1f6b43;
}

.psk-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.psk-profile-layout .psk-auth-panel:first-child {
  grid-row: span 2;
}

.psk-profile-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -2px 0 16px;
}

.psk-profile-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
}

.psk-profile-check input {
  width: auto !important;
}

.psk-profile-social {
  display: grid;
  gap: 10px;
}

.psk-profile-social div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e5ddcf;
  border-radius: 8px;
  background: #fffaf2;
}

.psk-profile-social form {
  margin: 0;
}

.psk-profile-social a,
.psk-profile-social button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d9c8a8;
  border-radius: 999px;
  background: #fff;
  color: #1f6b43;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.psk-profile-social a:hover,
.psk-profile-social button:hover {
  background: #f5ead7;
}

.psk-profile-avatar {
  width: 72px;
  height: 72px;
  margin-top: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.psk-profile-muted {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.psk-social-login {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.psk-social-login span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef2f7;
  color: #111827;
  font-weight: 900;
}

.psk-social-login-facebook span {
  background: #1877f2;
  color: #fff;
}

.psk-social-login:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.psk-cart-layout,
.psk-checkout-layout,
.psk-payment-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.psk-cart-list {
  display: grid;
  gap: 14px;
}

.psk-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  padding: 18px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.psk-cart-row-main h2 {
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.psk-cart-row-main h2 a {
  color: #0f5fd7;
  text-decoration: none;
}

.psk-cart-row-main p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.psk-cart-row-main small,
.psk-checkout-summary-item small {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.psk-cart-type {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

.psk-cart-row-actions,
.psk-form-grid {
  display: grid;
  gap: 10px;
}

.psk-cart-row-actions label,
.psk-form-grid label {
  display: grid;
  gap: 7px;
}

.psk-cart-row-actions label span,
.psk-form-grid label span {
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.psk-cart-row-actions input,
.psk-form-grid input,
.psk-form-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 9px 11px;
  background: #f8fafc;
  color: #111827;
}

.psk-form-grid textarea {
  resize: vertical;
}

.psk-checkout-richtext-source {
  display: none;
}

.psk-checkout-richtext {
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
}

.psk-checkout-richtext-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.psk-checkout-richtext-toolbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 34px;
  padding: 0 10px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.psk-checkout-richtext-toolbar button:hover,
.psk-checkout-richtext-toolbar button:focus {
  border-color: #0f5fd7;
  color: #0f5fd7;
}

.psk-checkout-richtext-editor {
  min-height: 150px;
  padding: 11px;
  color: #111827;
  line-height: 1.65;
  outline: 0;
}

.psk-checkout-richtext-editor:empty::before {
  content: "";
  display: block;
  min-height: 1.65em;
}

.psk-form-grid small {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
}

.psk-cart-summary,
.psk-checkout-summary {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.psk-cart-summary h2,
.psk-checkout-form h2,
.psk-checkout-summary h2,
.psk-payment-section h2 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.psk-cart-summary p {
  margin: 0;
  color: #64748b;
}

.psk-empty-state {
  padding: 32px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.psk-empty-state h2,
.psk-empty-state p {
  margin: 0;
}

.psk-checkout-form {
  padding: 22px;
}

.psk-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.psk-form-wide {
  grid-column: 1 / -1;
}

.psk-checkout-actions,
.psk-payment-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.psk-checkout-summary-item {
  padding: 12px 0;
  border-top: 1px solid #eef2f7;
}

.psk-checkout-summary-item span {
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

.psk-checkout-summary-item strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  line-height: 1.4;
}

.psk-payment-main {
  display: grid;
  gap: 16px;
}

.psk-payment-section {
  padding: 20px;
}

.psk-payment-section p {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.psk-review-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.psk-review-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid #eef2f7;
}

.psk-review-list dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.psk-review-list dd {
  margin: 0;
  color: #111827;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.psk-order-complete {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 26px;
}

.psk-order-complete span,
.psk-order-complete strong {
  display: block;
}

.psk-order-complete span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.psk-order-complete strong {
  margin-top: 5px;
  color: #111827;
  font-size: 26px;
  font-weight: 900;
}

.psk-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  border-top: 1px solid rgba(73, 92, 79, 0.18);
  background: rgba(248, 245, 238, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 -16px 36px rgba(23, 34, 27, 0.09);
  padding: 8px 0 39px;
}

.psk-footer-grid {
  display: block;
}

.psk-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  width: 100%;
  margin-top: 0;
  align-items: center;
}

.psk-footer-links a {
  color: #3f4d42;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(212, 196, 167, 0.72);
}

.psk-footer-links a:hover {
  color: #1f6b43;
  border-color: #b9852c;
  background: #f5ead7;
}

.psk-language-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.psk-language-select {
  min-height: 32px;
  max-width: 150px;
  appearance: none;
  border: 1px solid #d9c8a8;
  border-radius: 999px;
  background: #fff;
  color: #3f4d42;
  font-size: 12px;
  font-weight: 800;
  padding: 0 30px 0 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.psk-language-select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.psk-language-select:hover,
.psk-language-select:focus {
  outline: 0;
  border-color: #b9852c;
  color: #1f6b43;
  background: #f5ead7;
}

@media (max-width: 991.98px) {
  .psk-site-header-bar {
    min-height: auto;
    padding-top: 12px;
    flex-wrap: wrap;
  }

  .psk-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
    padding: 7px 10px 7px 7px;
  }

  .psk-brand img {
    width: 50px;
    height: 50px;
  }

  .psk-brand-title {
    font-size: 20px;
  }

  .psk-brand-subtitle {
    display: none;
  }

  .psk-menu-toggle {
    display: inline-flex;
  }

  .psk-header-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    width: auto;
    max-height: 0;
    margin-left: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    transform: translateY(-6px);
    transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.18s ease, padding 0.18s ease;
  }

  .psk-header-menu.is-open {
    max-height: min(76vh, 620px);
    padding: 12px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .psk-main-nav {
    width: 100%;
    margin-left: 0;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid #eef2f7;
    background: rgba(255, 255, 255, 0.78);
  }

  .psk-main-nav a {
    padding: 12px 14px;
    font-size: 14px;
  }

  .psk-header-actions {
    width: 100%;
    justify-content: stretch;
    flex-wrap: nowrap;
  }

  .psk-header-icon-button,
  .psk-header-login,
  .psk-header-account-menu {
    flex: 1 1 0;
  }

  .psk-header-account-trigger {
    width: 100%;
    justify-content: center;
  }

  .psk-hero {
    min-height: 440px;
  }

  .psk-hero-content,
  .psk-page-head {
    padding: 28px;
  }

  .psk-page {
    padding-top: 52px;
    padding-bottom: 270px;
  }

  .psk-metrics,
  .psk-grid-4,
  .psk-grid-3,
  .psk-product-grid-list,
  .psk-product-layout,
  .psk-product-search-top,
  .psk-product-filter-board,
  .psk-fact-list,
  .psk-product-table-head,
  .psk-product-row,
  .psk-product-detail-layout,
  .psk-product-detail-summary,
  .psk-product-detail-card-grid,
  .psk-cart-layout,
  .psk-cart-row,
  .psk-auth-layout,
  .psk-profile-layout,
  .psk-checkout-layout,
  .psk-payment-layout,
  .psk-form-grid,
  .psk-review-list div,
  .psk-about-layout,
  .psk-two-col,
  .psk-detail-layout,
  .psk-footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .psk-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psk-company-row {
    grid-template-columns: 1fr;
  }

  .psk-contact-row,
  .psk-contact-name-grid {
    grid-template-columns: 1fr;
  }

  .psk-detail-content.psk-contact-content,
  .psk-contact-content {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
  }

  .psk-contact-content h2 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .psk-contact-form {
    gap: 22px;
  }

  .psk-contact-row {
    overflow: hidden;
    border: 1px solid #e3eaf3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  }

  .psk-contact-row:last-of-type {
    border-bottom: 1px solid #e3eaf3;
  }

  .psk-contact-label {
    padding: 12px 14px 0;
    background: #fff;
    color: #1f2937;
    font-size: 13px;
  }

  .psk-contact-value,
  .psk-contact-row:nth-of-type(even) .psk-contact-value {
    padding: 10px 14px 14px;
    background: #fff;
  }

  .psk-contact-name-grid {
    gap: 10px;
  }

  .psk-contact-value input,
  .psk-contact-value textarea {
    min-height: 48px;
    border-color: #dbe3ef;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 16px;
  }

  .psk-contact-inline {
    display: grid;
    gap: 6px;
  }

  .psk-contact-inline input {
    width: 100%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
  }

  .psk-contact-inline-two {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .psk-contact-inline-three {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .psk-contact-inline span {
    font-size: 12px;
  }

  .psk-contact-value textarea {
    min-height: 150px;
  }

  .psk-contact-submit {
    display: grid;
    gap: 12px;
    justify-items: stretch;
    padding-top: 6px;
  }

  .psk-contact-feedback {
    margin-right: 0;
    font-size: 12px;
  }

  .psk-contact-submit .psk-button {
    width: 100%;
  }

  .psk-footer {
    bottom: 0;
    padding: 7px 0 calc(37px + env(safe-area-inset-bottom));
  }

  .psk-footer-links {
    width: 100%;
    grid-template-columns: max-content max-content max-content minmax(108px, 1fr);
    column-gap: 6px;
    row-gap: 6px;
    padding-bottom: 1px;
  }

  .psk-footer-links a {
    padding: 6px 9px;
    font-size: 11px;
  }

  .psk-language-select {
    max-width: 118px;
    min-height: 30px;
    font-size: 11px;
    padding-left: 10px;
    padding-right: 28px;
  }

  .psk-about-staff-card {
    grid-template-columns: 1fr;
  }

  .psk-product-filter {
    position: static;
  }

  .psk-cart-summary,
  .psk-checkout-summary {
    position: static;
  }

  .psk-product-feature-section {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }

  .psk-service-gallery-hero {
    min-height: 360px;
  }

  .psk-service-gallery-strip {
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .psk-site-shell {
    width: min(100% - 20px, 1240px);
  }

  .psk-button {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .psk-icon-mobile .psk-button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .psk-button.psk-icon-mobile,
  .psk-product-add-button.psk-icon-mobile,
  .psk-link-button.psk-icon-mobile {
    width: 44px;
    min-width: 44px;
    padding-left: 0;
    padding-right: 0;
  }

  .psk-header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .psk-header-icon-button,
  .psk-header-login,
  .psk-header-account-menu {
    width: auto;
    min-width: 0;
  }

  .psk-header-icon-button span:not(.psk-header-cart-mark) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .psk-header-account-menu {
    grid-column: 1 / -1;
  }

  .psk-header-account-trigger > span {
    max-width: min(58vw, 220px);
  }

  .psk-product-search-top {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    justify-items: stretch;
    gap: 10px;
    padding: 14px;
  }

  .psk-product-search-top label {
    grid-column: 1 / -1;
  }

  .psk-product-search-top .psk-button {
    justify-self: stretch;
  }

  .psk-product-filter-board {
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .psk-filter-group {
    padding: 11px;
  }

  .psk-filter-tree-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psk-filter-chip-grid {
    grid-template-columns: 1fr;
  }

  .psk-filter-submit {
    justify-content: end;
  }

  .psk-product-results-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .psk-product-sort select {
    width: 100%;
  }

  .psk-product-add-button {
    min-height: 42px;
  }

  .psk-cart-row-actions {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    align-items: end;
  }

  .psk-cart-row-actions label {
    min-width: 0;
  }

  .psk-cart-row-actions .psk-link-button {
    min-height: 44px;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
    background: #fff;
  }

  .psk-cart-summary .psk-button,
  .psk-checkout-actions .psk-button,
  .psk-payment-submit .psk-button,
  .psk-product-detail-actions .psk-button,
  .psk-card-action-form .psk-button {
    width: 100%;
  }

  .psk-checkout-actions,
  .psk-payment-submit {
    display: grid;
    grid-template-columns: 1fr;
  }

  .psk-checkout-richtext-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .psk-checkout-richtext-toolbar button {
    flex: 0 0 36px;
    width: 36px;
    padding-left: 0;
    padding-right: 0;
  }

  .psk-comment-login-modal {
    padding: 12px;
    align-items: end;
  }

  .psk-comment-login-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 20px;
    border-radius: 16px 16px 10px 10px;
  }

  .psk-comment-login-head h3 {
    font-size: 21px;
  }
}
