/*
Theme Name: PM PROFF New
Theme URI: https://pmproff.com
Author: PM PROFF
Author URI: https://pmproff.com
Description: Lightweight custom theme for PM PROFF
Version: 1.0
Text Domain: pmproff-new
*/

:root {
  --bg: #f5f7fb;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: #dbe2ef;
  --blue: #2563eb;
  --blue-dark: #0b1220;
  --hero-top: #030817;
  --hero-bottom: #07132e;
  --card-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  --soft-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  --panel-radius: 24px;
  --soft-gradient: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  --container: 1240px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.pm-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 226, 239, 0.85);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo img,
.brand__logo svg {
  width: 46px;
  height: auto;
}

.brand__text {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  color: #1e293b;
}

.nav a:hover,
.lang-switch:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  font-weight: 600;
  background: transparent;
  border: 0;
  color: #1e293b;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.btn--secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--light {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(37, 99, 235, 0.3), transparent 24%),
    linear-gradient(180deg, var(--hero-top) 0%, var(--hero-bottom) 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.14;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  min-height: 720px;
  padding: 70px 0 76px;
}

.hero__eyebrow,
.section__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #68a2ff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .95;
  letter-spacing: -0.055em;
}

.hero h1 .accent {
  color: #3f83ff;
}

.hero__text {
  max-width: 680px;
  margin: 26px 0 34px;
  font-size: 1.42rem;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe {
  position: relative;
  width: min(100%, 690px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
  background:
    radial-gradient(circle at 34% 30%, rgba(155, 205, 255, 0.24), transparent 15%),
    radial-gradient(circle at 55% 45%, rgba(58, 122, 255, 0.18), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(30, 88, 221, 0.20), rgba(3, 8, 23, 0) 64%);
  box-shadow:
    inset 0 0 140px rgba(77, 139, 255, 0.13),
    0 0 120px rgba(37, 99, 235, 0.22),
    0 0 220px rgba(37, 99, 235, 0.12);
}

.hero-globe::before,
.hero-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-globe::before {
  background:
    repeating-linear-gradient(90deg, rgba(108, 167, 255, .12) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(180deg, rgba(108, 167, 255, .10) 0 1px, transparent 1px 28px);
  opacity: .42;
  mask-image: radial-gradient(circle at center, #000 0 61%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0 61%, transparent 76%);
}

.hero-globe::after {
  inset: 4%;
  border: 1px solid rgba(140, 188, 255, 0.25);
  box-shadow:
    0 0 24px rgba(96, 160, 255, 0.18),
    inset 0 0 24px rgba(96, 160, 255, 0.08);
}

.hero-globe__core {
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(197, 225, 255, 0.18), transparent 14%),
    radial-gradient(circle at 50% 50%, rgba(41, 113, 255, 0.14), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0 58%, rgba(52, 118, 255, 0.16) 74%, rgba(52, 118, 255, 0) 100%);
  box-shadow:
    inset 0 0 90px rgba(73, 135, 255, 0.12),
    0 0 50px rgba(37, 99, 235, 0.12);
}

.hero-globe__core::before,
.hero-globe__core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-globe__core::before {
  background:
    radial-gradient(circle at 63% 32%, rgba(57, 132, 255, .95) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 40%, rgba(57, 132, 255, .90) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 47%, rgba(57, 132, 255, .78) 0 1px, transparent 2px),
    radial-gradient(circle at 77% 52%, rgba(57, 132, 255, .85) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 55%, rgba(57, 132, 255, .82) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 58%, rgba(57, 132, 255, .75) 0 1px, transparent 2px),
    radial-gradient(circle at 59% 52%, rgba(57, 132, 255, .70) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 44%, rgba(57, 132, 255, .92) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 49%, rgba(57, 132, 255, .82) 0 1px, transparent 2px),
    radial-gradient(circle at 21% 56%, rgba(57, 132, 255, .72) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 61%, rgba(57, 132, 255, .82) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 22%, rgba(57, 132, 255, .60) 0 1px, transparent 2px),
    radial-gradient(circle at 56% 68%, rgba(57, 132, 255, .66) 0 1px, transparent 2px);
  opacity: .95;
}

.hero-globe__core::after {
  background:
    linear-gradient(120deg, transparent 0 33%, rgba(74, 140, 255, .18) 38%, transparent 44%),
    linear-gradient(205deg, transparent 0 45%, rgba(74, 140, 255, .12) 50%, transparent 56%),
    linear-gradient(28deg, transparent 0 58%, rgba(74, 140, 255, .10) 63%, transparent 69%);
  opacity: .85;
  mix-blend-mode: screen;
}

.hero-globe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 164, 255, 0.18);
  pointer-events: none;
}

.hero-globe__ring--one {
  inset: 8%;
}

.hero-globe__ring--two {
  inset: 17%;
  opacity: .7;
}

.hero-globe__ring--three {
  inset: 26%;
  opacity: .45;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(93, 151, 255, 0.22);
  pointer-events: none;
}

.orbit--one {
  inset: 5% -3%;
  transform: rotate(16deg);
}

.orbit--two {
  inset: 10% 3%;
  transform: rotate(-22deg);
  opacity: .82;
}

.orbit--three {
  inset: -2% 9%;
  transform: rotate(36deg);
  opacity: .4;
}

.orbit--four {
  inset: 16% -6%;
  transform: rotate(-38deg);
  opacity: .35;
}

.stars {
  position: absolute;
  inset: 0;
}

.stars span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8ec2ff;
  box-shadow:
    0 0 0 3px rgba(142, 194, 255, 0.08),
    0 0 16px rgba(142, 194, 255, 0.95),
    0 0 30px rgba(55, 128, 255, 0.45);
  animation: pulse 4.2s ease-in-out infinite;
}

.stars span:nth-child(1)  { top: 10%; left: 28%; animation-delay: .1s; }
.stars span:nth-child(2)  { top: 17%; left: 47%; animation-delay: 1.1s; }
.stars span:nth-child(3)  { top: 24%; right: 26%; animation-delay: .7s; }
.stars span:nth-child(4)  { top: 31%; right: 18%; animation-delay: 1.9s; }
.stars span:nth-child(5)  { top: 42%; left: 12%; animation-delay: .5s; }
.stars span:nth-child(6)  { top: 50%; left: 18%; animation-delay: 2.2s; }
.stars span:nth-child(7)  { top: 61%; left: 22%; animation-delay: 1.4s; }
.stars span:nth-child(8)  { top: 70%; left: 32%; animation-delay: 2.8s; }
.stars span:nth-child(9)  { top: 76%; left: 50%; animation-delay: 1.8s; }
.stars span:nth-child(10) { top: 67%; right: 22%; animation-delay: .4s; }
.stars span:nth-child(11) { top: 55%; right: 14%; animation-delay: 2.6s; }
.stars span:nth-child(12) { top: 39%; right: 9%; animation-delay: .9s; }
.stars span:nth-child(13) { top: 25%; left: 62%; animation-delay: 1.6s; }
.stars span:nth-child(14) { top: 35%; left: 72%; animation-delay: 2.9s; }
.stars span:nth-child(15) { top: 49%; left: 78%; animation-delay: 1.3s; }
.stars span:nth-child(16) { top: 58%; left: 68%; animation-delay: .3s; }
.stars span:nth-child(17) { top: 18%; left: 20%; animation-delay: 2.1s; }
.stars span:nth-child(18) { bottom: 16%; right: 28%; animation-delay: .8s; }

@keyframes pulse {
  0%, 100% {
    opacity: .28;
    transform: scale(.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

.section {
  padding: 88px 0;
}

.section--compact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section__header {
  text-align: center;
  margin-bottom: 42px;
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--card-shadow);
}

.card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue);
  border: 1px solid #cfe0ff;
  background: #f4f8ff;
  font-size: 26px;
}

.card__title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card__text {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
}

.card__link {
  font-weight: 700;
  color: var(--blue);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  padding: 26px;
}

.product-card__media img {
  max-height: 210px;
  object-fit: contain;
}

.product-card__body {
  padding: 24px;
}

.product-card__title {
  margin: 0 0 8px;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
}

.product-card__price {
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.product-card__price del {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-decoration-color: #94a3b8;
}

.product-card__price ins {
  color: #2563eb;
  text-decoration: none;
  font-size: 1.48rem;
  font-weight: 800;
}

.products-action {
  text-align: center;
  margin-top: 30px;
}

.trust {
  background: linear-gradient(180deg, #050c1c 0%, #07132e 100%);
  color: #fff;
  border-top: 1px solid rgba(100,146,224,.15);
  border-bottom: 1px solid rgba(100,146,224,.15);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust__item {
  padding: 30px 28px;
  border-right: 1px solid rgba(110, 152, 224, .18);
}

.trust__item:last-child {
  border-right: 0;
}

.trust__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.trust__text {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: stretch;
}

.cta-card,
.details-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.cta-card {
  padding: 46px;
  background:
    radial-gradient(circle at 85% 100%, rgba(37,99,235,.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.cta-card__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.cta-card__text {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.details-card {
  padding: 42px;
  background: #fbfcff;
}

.details-card h3 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  letter-spacing: -0.035em;
}

.details-list {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.75;
}

.site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.14), transparent 26%),
    linear-gradient(180deg, #040b19 0%, #07132c 100%);
  color: #fff;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(117, 146, 191, 0.14);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand__link {
  margin-bottom: 18px;
}

.footer-brand__text {
  font-size: 1.5rem;
  color: #fff;
}

.footer-brand__lead {
  margin: 0 0 12px;
  max-width: 360px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}

.footer-brand__text-muted {
  margin: 0 0 20px;
  max-width: 380px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
}

.footer-brand__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7fb0ff;
  font-weight: 700;
}

.footer-brand__cta:hover {
  color: #ffffff;
}

.footer-title {
  margin: 0 0 18px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-contact__item {
  color: rgba(255,255,255,.72);
  transition: color .18s ease, transform .18s ease;
}

.footer-col a:hover,
.footer-contact__item:hover {
  color: #ffffff;
}

.footer-contact__cta {
  margin-top: 8px;
  color: #7fb0ff;
  font-weight: 700;
}

.footer-contact__cta:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(117, 146, 191, .18);
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: .95rem;
}

@media (max-width: 1180px) {
  .hero__inner,
  .split,
  .cards,
  .products,
  .trust__grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero__inner,
  .split,
  .cards,
  .products,
  .trust__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 56px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .cta-card,
  .details-card {
    padding: 32px;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand__text {
    font-size: 1.42rem;
  }
}

@media (max-width: 640px) {
  .pm-container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-actions .lang-switch {
    display: none;
  }

  .hero__text {
    font-size: 1.06rem;
  }


  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card,
  .product-card__body,
  .trust__item,
  .cta-card,
  .details-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-globe {
    max-width: 360px;
  }
}

.single-product-page {
  padding: 40px 0 80px;
}

.single-product-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.single-product-page .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: #5b6475;
  font-size: 14px;
}

.single-product-page .woocommerce-breadcrumb a {
  color: #0f172a;
  text-decoration: none;
}

.pmproff-product {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(360px, 42%);
  gap: 48px;
  align-items: start;
}

.pmproff-product__gallery,
.pmproff-product__summary {
  min-width: 0;
}

.pmproff-product__gallery {
  background: linear-gradient(180deg, #eef4fc 0%, #e8f0fa 100%);
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.pmproff-product__gallery .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.pmproff-product__gallery .woocommerce-product-gallery__wrapper {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pmproff-product__gallery .woocommerce-product-gallery__image {
  text-align: center;
}

.pmproff-product__gallery .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 620px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.pmproff-product__gallery .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px !important;
  padding: 0;
}

.pmproff-product__gallery .flex-control-thumbs li {
  list-style: none;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
}

.pmproff-product__gallery .flex-control-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  padding: 6px;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.pmproff-product__gallery .flex-control-thumbs img:hover {
  opacity: 1;
  border-color: #bfd3f7;
  transform: translateY(-1px);
}

.pmproff-product__gallery .flex-control-thumbs .flex-active {
  opacity: 1;
  border-color: #2563eb;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
}

.pmproff-product__inner {
  background: #fbfcff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 32px;
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.pmproff-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #cfe0ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pmproff-product__title {
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pmproff-product__price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.pmproff-product__price del {
  color: #94a3b8;
  opacity: 1;
  margin-right: 10px;
}

.pmproff-product__price ins {
  color: #2563eb;
  text-decoration: none;
}

.pmproff-product__wishlist {
  margin-bottom: 18px;
}

.pmproff-product__excerpt {
  color: #5b6475;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pmproff-product__add-to-cart {
  margin-bottom: 24px;
}

.pmproff-product__add-to-cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pmproff-product__add-to-cart .quantity input.qty {
  width: 84px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.pmproff-product__add-to-cart .single_add_to_cart_button {
  height: 52px !important;
  min-width: 190px;
  border-radius: 14px !important;
  padding: 0 26px !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pmproff-product__add-to-cart .single_add_to_cart_button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.pmproff-product__meta {
  padding-top: 20px;
  border-top: 1px solid #dbe2ef;
  color: #64748b;
  font-size: 14px;
}

.pmproff-product__meta a {
  color: #2563eb;
  text-decoration: none;
}

.pmproff-product-tabs {
  margin-top: 56px;
}

.single-product-page .woocommerce-tabs {
  margin-top: 0;
}

.single-product-page .woocommerce-tabs ul.tabs {
  padding-left: 0;
  margin-bottom: 24px;
}

.single-product-page .woocommerce-tabs ul.tabs li {
  border-radius: 12px 12px 0 0;
}

.single-product-page div.product .woocommerce-tabs .panel {
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 0 18px 18px 18px;
  padding: 24px;
  color: #5b6475;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}


.single-product-page span.onsale {
  background: #2563eb !important;
  color: #fff !important;
  border-radius: 999px;
  min-height: auto;
  min-width: auto;
  padding: 8px 12px;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 700;
}

body.single-product {
  background: #f5f7fb;
}

body.single-product .site-main {
  background: transparent;
}

@media (max-width: 991px) {
  .pmproff-product {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pmproff-product__gallery {
    padding: 18px;
  }

  .pmproff-product__inner {
    padding: 24px;
  }

  .pmproff-product__title {
    font-size: 32px;
  }
}

.single-product-page .related.products {
  display: block !important;
  width: 100% !important;
  margin-top: 72px;
  clear: both !important;
}

.single-product-page .related.products > h2 {
  display: block !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: #0f172a;
  text-align: center;
}

.single-product-page .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  clear: both !important;
}

.single-product-page .related.products ul.products::before,
.single-product-page .related.products ul.products::after {
  content: none !important;
  display: none !important;
}

.single-product-page .related.products ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  position: relative !important;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.single-product-page .related.products ul.products li.product::before,
.single-product-page .related.products ul.products li.product::after {
  content: none !important;
  display: none !important;
}

.single-product-page .related.products ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  text-decoration: none !important;
}

.single-product-page .related.products ul.products li.product a img {
  display: block !important;
  width: 100% !important;
  height: 260px !important;
  object-fit: contain !important;
  background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  padding: 26px;
  margin: 0 !important;
  border-bottom: 1px solid #dbe2ef;
}

.single-product-page .related.products ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.26rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #0f172a;
  padding: 24px 24px 8px;
  margin: 0 !important;
  min-height: 110px;
}

.single-product-page .related.products ul.products li.product .price {
  display: block !important;
  padding: 0 24px 14px;
  margin: 0 !important;
  font-size: 1.48rem;
  font-weight: 800;
  color: #0f172a;
}

.single-product-page .related.products ul.products li.product .price del {
  color: #94a3b8;
  margin-right: 8px;
}

.single-product-page .related.products ul.products li.product .price ins {
  color: #2563eb;
  text-decoration: none;
}

.single-product-page .related.products ul.products li.product .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  margin: auto 24px 24px !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 14px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.single-product-page .related.products ul.products li.product .onsale {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .single-product-page .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .single-product-page .related.products ul.products {
    grid-template-columns: 1fr !important;
  }

  .single-product-page .related.products > h2 {
    font-size: 34px;
  }
}

.pmproff-product__summary,
.pmproff-product__inner,
.pmproff-product__excerpt,
.pmproff-product__excerpt p,
.pmproff-product__excerpt li,
.pmproff-product__excerpt span,
.pmproff-product__excerpt strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pmproff-product__excerpt ul,
.pmproff-product__excerpt ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.pmproff-product__excerpt li {
  margin-bottom: 10px;
}

.pmproff-product__excerpt table,
.single-product-page .woocommerce-tabs .panel table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.pmproff-product__excerpt td,
.pmproff-product__excerpt th,
.single-product-page .woocommerce-tabs .panel td,
.single-product-page .woocommerce-tabs .panel th {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pmproff-product__summary * {
  max-width: 100%;
}

.pmproff-product__excerpt {
  overflow: hidden;
}

body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag {
  background: #f5f7fb;
}

.woocommerce-page .site-main,
.woocommerce .site-main {
  background: transparent;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #0f172a;
  text-decoration: none;
}

.woocommerce-products-header {
  margin-bottom: 28px;
}

.woocommerce-products-header__title.page-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #0f172a;
}

.woocommerce-result-count {
  color: #5b6475;
  font-size: 15px;
  margin: 0;
}

.woocommerce-ordering select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  height: 100%;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  height: 260px !important;
  object-fit: contain !important;
  background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  padding: 26px;
  margin: 0 !important;
  border-bottom: 1px solid #dbe2ef;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 24px 24px 8px;
  font-size: 1.26rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #0f172a;
  min-height: 110px;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: block !important;
  margin: 0 !important;
  padding: 0 24px 16px;
  font-size: 1.48rem;
  font-weight: 800;
  color: #0f172a;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: #94a3b8;
  margin-right: 8px;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  color: #2563eb;
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  min-height: 46px !important;
  margin: auto 24px 24px !important;
  padding: 0 18px !important;
  border-radius: 14px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.woocommerce span.onsale {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  margin: 0 !important;
  background: #2563eb !important;
  color: #fff !important;
  border-radius: 999px;
  min-height: auto;
  min-width: auto;
  padding: 8px 12px;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woocommerce-products-header__title.page-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-products-header__title.page-title {
    font-size: 32px;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    float: none !important;
    width: 100%;
  }

  .woocommerce-ordering select {
    width: 100%;
  }
}

body.post-type-archive-product .shop-main > .container,
body.tax-product_cat .shop-main > .container,
body.tax-product_tag .shop-main > .container {
  max-width: 1280px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 44px;
  padding-bottom: 56px;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #1e293b;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 90px;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 8px;
  display: none;
  z-index: 100;
}

.lang-switcher:hover .lang-switcher__menu,
.lang-switcher:focus-within .lang-switcher__menu {
  display: block;
}

.lang-switcher__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.lang-switcher__menu a:hover,
.lang-switcher__menu a.is-active {
  background: #eef4ff;
  color: #2563eb;
}

.section__subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: #667085;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.services-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-grid .card__text {
  flex-grow: 1;
}

.why-block {
  margin-top: 80px;
  padding-top: 8px;
}

.why-block__header {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-item {
  padding: 0 24px 0 0;
  border-right: 1px solid #dbe3f0;
}

.why-item:last-child {
  border-right: none;
  padding-right: 0;
}

.why-item__title {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.why-item__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #667085;
}

@media (max-width: 1180px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .why-item {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section__subtitle {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item__title {
    font-size: 1.15rem;
  }

  .why-item__text {
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand__lead {
    font-size: 1.05rem;
  }

  .footer-brand__text-muted {
    font-size: 0.95rem;
  }

  .footer-bottom {
    text-align: left;
  }
}


.contact-menu {
  position: relative;
}

.contact-menu__toggle {
  white-space: nowrap;
}

.contact-menu__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 120;
}

.contact-menu:hover .contact-menu__dropdown,
.contact-menu:focus-within .contact-menu__dropdown,
.contact-menu.is-open .contact-menu__dropdown {
  display: block;
}

.contact-menu__hint {
  margin: 0 0 10px;
  padding: 4px 6px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
  border-bottom: 1px solid #e7edf7;
}

.contact-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}

.contact-menu__item:hover {
  background: #f6f9ff;
  transform: translateY(-1px);
}

.contact-menu__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  border: 1px solid #d8e5ff;
  color: #2563eb;
}

.contact-menu__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-menu__item--call .contact-menu__icon {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

.contact-menu__item--telegram .contact-menu__icon {
  background: #eef8ff;
  border-color: #bfe4ff;
  color: #229ed9;
}

.contact-menu__item--whatsapp .contact-menu__icon {
  background: #effdf5;
  border-color: #bbf7d0;
  color: #25d366;
}

.contact-menu__item--viber .contact-menu__icon {
  background: #f5f0ff;
  border-color: #ddd6fe;
  color: #7360f2;
}

.contact-menu__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-menu__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.contact-menu__value {
  font-size: 14px;
  line-height: 1.45;
  color: #64748b;
  word-break: break-word;
}

@media (max-width: 920px) {
  .contact-menu__dropdown {
    right: 0;
    width: 300px;
  }
}

@media (max-width: 640px) {
  .contact-menu__dropdown {
    width: min(320px, calc(100vw - 24px));
    right: 0;
  }
}

.cart-link {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.cart-link:hover {
  transform: translateY(-1px);
  border-color: #bfd3f7;
  color: #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.14);
}

.cart-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-link__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-link__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}


@media (max-width: 640px) {
  .header-actions {
    gap: 10px;
  }

  .cart-link {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .cart-link__icon svg {
    width: 20px;
    height: 20px;
  }
}


/* FINAL CLASSIC CART POLISH */
body.woocommerce-cart .woocommerce {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

body.woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 0;
}

body.woocommerce-cart table.shop_table {
  background: #fff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-cart table.shop_table th {
  padding: 20px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  background: #fbfcff;
  border-bottom: 1px solid #e6edf7;
}

body.woocommerce-cart table.shop_table td {
  padding: 18px;
  vertical-align: middle;
  border-top: 1px solid #eef3fb;
}

body.woocommerce-cart table.shop_table tbody tr:first-child td {
  border-top: 0;
}

body.woocommerce-cart td.product-remove {
  width: 34px;
  padding-right: 4px;
  text-align: left;
}

body.woocommerce-cart td.product-remove a.remove {
  width: 28px;
  height: 28px;
  line-height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8 !important;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  font-size: 18px;
  font-weight: 500;
  transition: all .18s ease;
  box-shadow: none;
}

body.woocommerce-cart td.product-remove a.remove:hover {
  color: #fff !important;
  background: #ef4444;
  border-color: #ef4444;
}

body.woocommerce-cart td.product-thumbnail {
  width: 112px;
  padding-left: 10px;
}

body.woocommerce-cart td.product-thumbnail img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  border: 1px solid #dbe2ef;
  padding: 10px;
}

body.woocommerce-cart td.product-name a {
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-cart td.product-name a:hover {
  color: #2563eb;
}

body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

body.woocommerce-cart td.product-price del,
body.woocommerce-cart td.product-subtotal del {
  color: #94a3b8;
  font-size: 0.98rem;
  font-weight: 600;
  margin-right: 6px;
}

body.woocommerce-cart td.product-price ins,
body.woocommerce-cart td.product-subtotal ins {
  color: #2563eb;
  text-decoration: none;
}

body.woocommerce-cart .quantity .qty {
  width: 74px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  color: #0f172a;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

body.woocommerce-cart .actions {
  padding: 18px !important;
  background: #fbfcff;
  border-top: 1px solid #e6edf7;
}

body.woocommerce-cart .coupon {
  display: none !important;
}

body.woocommerce-cart .actions button[name="update_cart"] {
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 14px !important;
  background: #eaf1ff !important;
  color: #2563eb !important;
  border: 1px solid #cfe0ff !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body.woocommerce-cart .actions button[name="update_cart"]:hover {
  background: #dce8ff !important;
  color: #1d4ed8 !important;
}

body.woocommerce-cart .cart-collaterals {
  margin-top: 24px;
}

body.woocommerce-cart .cart_totals {
  width: min(100%, 460px);
  margin-left: auto;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

body.woocommerce-cart .cart_totals table.shop_table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 16px 0;
  border-top: 1px solid #eef3fb;
  background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: 0;
}

body.woocommerce-cart .cart_totals table.shop_table th {
  font-weight: 600;
  color: #64748b;
}

body.woocommerce-cart .cart_totals table.shop_table td {
  text-align: right;
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-cart .cart_totals .shipping,
body.woocommerce-cart .cart_totals tr.shipping,
body.woocommerce-cart .cart_totals .woocommerce-shipping-totals,
body.woocommerce-cart .cart_totals .shipping-calculator-button,
body.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
  display: none !important;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  font-size: 1.18rem;
  color: #0f172a !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 18px;
  padding-bottom: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .button {
  width: 100%;
  min-height: 54px !important;
  padding: 0 24px !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.2 !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

body.woocommerce-cart .wc-proceed-to-checkout .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

body.woocommerce-cart .cross-sells {
  display: none !important;
}

@media (max-width: 991px) {
  body.woocommerce-cart .woocommerce {
    width: min(1180px, calc(100% - 24px));
    padding-top: 20px;
  }

  body.woocommerce-cart table.shop_table thead {
    display: none;
  }

  body.woocommerce-cart table.shop_table,
  body.woocommerce-cart table.shop_table tbody,
  body.woocommerce-cart table.shop_table tr,
  body.woocommerce-cart table.shop_table td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table tr {
    padding: 12px 0;
    border-top: 1px solid #eef3fb;
  }

  body.woocommerce-cart table.shop_table tr:first-child {
    border-top: 0;
  }

  body.woocommerce-cart table.shop_table td {
    padding: 10px 16px;
    border: 0;
  }

  body.woocommerce-cart td.product-remove,
  body.woocommerce-cart td.product-thumbnail {
    width: 100%;
    text-align: left;
  }

  body.woocommerce-cart .cart_totals {
    width: 100%;
    margin-left: 0;
    padding: 22px;
  }
}

.pm-page-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 2px;
}

.pm-page-header__title {
  margin: 0 0 6px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #0f172a;
}

.pm-page-header__text {
  margin: 0;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #667085;
}

body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce,
body.woocommerce-account .woocommerce {
  padding-top: 0 !important;
}

@media (max-width: 991px) {
  .pm-page-header {
    width: min(1180px, calc(100% - 24px));
    padding: 0 0 10px;
  }

  .pm-page-header__title {
    margin-bottom: 4px;
  }

  .pm-page-header__text {
    font-size: 1rem;
    line-height: 1.55;
  }
}

body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-cart .page-title,
body.woocommerce-checkout .page-title,
body.woocommerce-account .page-title {
  display: none;
}

/* CHECKOUT PAGE */
body.woocommerce-checkout {
  background: #f5f7fb;
}

body.woocommerce-checkout .woocommerce {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
  margin-top: -8px;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
  border-radius: 16px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none !important;
}

body.woocommerce-checkout .checkout_coupon {
  display: none !important;
}

body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

body.woocommerce-checkout #order_review_heading {
  display: none !important;
}

body.woocommerce-checkout #order_review {
  grid-column: 2;
  align-self: start;
  margin: 22px 0 0 !important;
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-checkout #order_review::before {
  content: "Ваше замовлення";
  display: block;
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review {
  width: 100%;
  float: none;
}

body.woocommerce-checkout #customer_details {
  grid-column: 1;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-checkout .woocommerce-billing-fields {
  margin-top: 0;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3 {
  margin: 0 0 20px;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

body.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

body.woocommerce-checkout .form-row label {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
}

body.woocommerce-checkout .input-text,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
  min-height: 52px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  padding: 0 16px;
  font: inherit;
  color: #0f172a;
  box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

body.woocommerce-checkout textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

body.woocommerce-checkout .input-text:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus {
  border-color: #bfd3f7;
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: 52px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: flex;
  align-items: center;
  height: 50px;
  line-height: 1.2;
  padding-left: 16px;
  padding-right: 40px;
  color: #0f172a;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 10px;
}

body.woocommerce-checkout #ship-to-different-address {
  display: none !important;
}

body.woocommerce-checkout .shipping_address {
  display: none !important;
}


body.woocommerce-checkout table.shop_table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
  padding: 14px 0;
  border-top: 1px solid #eef3fb;
  background: transparent;
}

body.woocommerce-checkout table.shop_table tr:first-child th,
body.woocommerce-checkout table.shop_table tr:first-child td {
  border-top: 0;
}

body.woocommerce-checkout table.shop_table th {
  font-weight: 600;
  color: #64748b;
}

body.woocommerce-checkout table.shop_table td {
  text-align: right;
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 20px;
  background: #fbfcff !important;
  border: 1px solid #e6edf7 !important;
  border-radius: 18px !important;
}

body.woocommerce-checkout .place-order {
  padding-top: 18px !important;
}

body.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 54px !important;
  padding: 0 24px !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.2 !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

body.woocommerce-checkout #place_order:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

@media (max-width: 1180px) {
  body.woocommerce-checkout .woocommerce {
    width: min(1180px, calc(100% - 24px));
    padding-bottom: 48px;
  }

  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-additional-fields,
  body.woocommerce-checkout #order_review {
    padding: 22px;
  }
}

/* ORDER RECEIVED / THANK YOU PAGE */
body.woocommerce-order-received {
  background: #f5f7fb;
}

body.woocommerce-order-received .woocommerce {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0 72px;
}

body.woocommerce-order-received .woocommerce-notice,
body.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: #667085;
}

body.woocommerce-order-received ul.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 34px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-order-received ul.woocommerce-order-overview::before,
body.woocommerce-order-received ul.woocommerce-order-overview::after {
  display: none !important;
  content: none !important;
}

body.woocommerce-order-received ul.woocommerce-order-overview li {
  margin: 0 !important;
  padding: 18px 18px 16px !important;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
  text-transform: none;
}

body.woocommerce-order-received ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

body.woocommerce-order-received .woocommerce-order > h2,
body.woocommerce-order-received .woocommerce-customer-details > h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #0f172a;
}

body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 34px;
}

body.woocommerce-order-received .woocommerce-table--order-details,
body.woocommerce-order-received .shop_table.order_details {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-order-received .woocommerce-table--order-details th,
body.woocommerce-order-received .woocommerce-table--order-details td,
body.woocommerce-order-received .shop_table.order_details th,
body.woocommerce-order-received .shop_table.order_details td {
  padding: 18px 20px;
  border-top: 1px solid #eef3fb;
  background: transparent;
}

body.woocommerce-order-received .woocommerce-table--order-details thead th,
body.woocommerce-order-received .shop_table.order_details thead th {
  border-top: 0;
  background: #fbfcff;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-order-received .woocommerce-table--order-details tbody tr:first-child td,
body.woocommerce-order-received .shop_table.order_details tbody tr:first-child td {
  border-top: 0;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot th,
body.woocommerce-order-received .woocommerce-table--order-details tfoot td,
body.woocommerce-order-received .shop_table.order_details tfoot th,
body.woocommerce-order-received .shop_table.order_details tfoot td {
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-order-received .woocommerce-table--order-details td:last-child,
body.woocommerce-order-received .woocommerce-table--order-details th:last-child,
body.woocommerce-order-received .shop_table.order_details td:last-child,
body.woocommerce-order-received .shop_table.order_details th:last-child {
  text-align: right;
}

body.woocommerce-order-received .woocommerce-customer-details address {
  margin: 0;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  color: #0f172a;
  font-style: normal;
  line-height: 1.8;
}

body.woocommerce-order-received .woocommerce-customer-details address p {
  margin: 0;
}

body.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 10px;
  color: #5b6475;
}

body.woocommerce-order-received .woocommerce-customer-details .woocommerce-column {
  width: 100% !important;
  float: none !important;
  margin: 0 0 18px !important;
}

body.woocommerce-order-received .woocommerce-customer-details .woocommerce-column:last-child {
  margin-bottom: 0 !important;
}

body.woocommerce-order-received .woocommerce-table--order-details a,
body.woocommerce-order-received .shop_table.order_details a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

body.woocommerce-order-received .woocommerce-table--order-details a:hover,
body.woocommerce-order-received .shop_table.order_details a:hover {
  color: #2563eb;
}

@media (max-width: 1180px) {
  body.woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.woocommerce-order-received .woocommerce {
    width: min(1180px, calc(100% - 24px));
    padding-bottom: 48px;
  }

  body.woocommerce-order-received ul.woocommerce-order-overview {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px !important;
  }

  body.woocommerce-order-received .woocommerce-order > h2,
  body.woocommerce-order-received .woocommerce-customer-details > h2 {
    font-size: 1.6rem;
  }

  body.woocommerce-order-received .woocommerce-table--order-details,
  body.woocommerce-order-received .shop_table.order_details,
  body.woocommerce-order-received .woocommerce-table--order-details tbody,
  body.woocommerce-order-received .shop_table.order_details tbody,
  body.woocommerce-order-received .woocommerce-table--order-details tr,
  body.woocommerce-order-received .shop_table.order_details tr,
  body.woocommerce-order-received .woocommerce-table--order-details td,
  body.woocommerce-order-received .shop_table.order_details td,
  body.woocommerce-order-received .woocommerce-table--order-details th,
  body.woocommerce-order-received .shop_table.order_details th,
  body.woocommerce-order-received .woocommerce-table--order-details tfoot,
  body.woocommerce-order-received .shop_table.order_details tfoot {
    display: block;
    width: 100%;
  }

  body.woocommerce-order-received .woocommerce-table--order-details thead,
  body.woocommerce-order-received .shop_table.order_details thead {
    display: none;
  }

  body.woocommerce-order-received .woocommerce-table--order-details tr,
  body.woocommerce-order-received .shop_table.order_details tr {
    border-top: 1px solid #eef3fb;
  }

  body.woocommerce-order-received .woocommerce-table--order-details tr:first-child,
  body.woocommerce-order-received .shop_table.order_details tr:first-child {
    border-top: 0;
  }

  body.woocommerce-order-received .woocommerce-table--order-details td,
  body.woocommerce-order-received .woocommerce-table--order-details th,
  body.woocommerce-order-received .shop_table.order_details td,
  body.woocommerce-order-received .shop_table.order_details th {
    padding: 10px 16px;
    border: 0;
    text-align: left !important;
  }

  body.woocommerce-order-received .woocommerce-customer-details address {
    padding: 18px 18px;
  }
}

/* MY ACCOUNT */
body.woocommerce-account {
  background: #f5f7fb;
}

body.woocommerce-account .woocommerce {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0 72px;
}

body.woocommerce-account .woocommerce::after,
body.woocommerce-account .woocommerce::before {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
}

body.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100% !important;
  margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 14px;
  list-style: none;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
  margin-top: 6px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: #f6f9ff;
  color: #2563eb;
  transform: translateY(-1px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #eef4ff;
  color: #2563eb;
  box-shadow: inset 0 0 0 1px #cfe0ff;
}

body.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
  color: #5b6475;
  line-height: 1.75;
}

body.woocommerce-account .woocommerce-MyAccount-content strong,
body.woocommerce-account .woocommerce-MyAccount-content b {
  color: #0f172a;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

body.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: #1d4ed8;
}

body.woocommerce-account .woocommerce-orders-table,
body.woocommerce-account table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

body.woocommerce-account .woocommerce-orders-table th,
body.woocommerce-account .woocommerce-orders-table td,
body.woocommerce-account table.shop_table th,
body.woocommerce-account table.shop_table td {
  padding: 16px 18px;
  border-top: 1px solid #eef3fb;
}

body.woocommerce-account .woocommerce-orders-table thead th,
body.woocommerce-account table.shop_table thead th {
  border-top: 0;
  background: #fbfcff;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.woocommerce-account .woocommerce-orders-table .button,
body.woocommerce-account .woocommerce-button,
body.woocommerce-account .button {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}

body.woocommerce-account .woocommerce-orders-table .button:hover,
body.woocommerce-account .woocommerce-button:hover,
body.woocommerce-account .button:hover {
  transform: translateY(-1px);
}

body.woocommerce-account .addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body.woocommerce-account .woocommerce-Address {
  margin: 0;
  padding: 24px;
  background: #fbfcff;
  border: 1px solid #e6edf7;
  border-radius: 20px;
}

body.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #0f172a;
}

body.woocommerce-account .woocommerce-Address address {
  margin: 0;
  color: #5b6475;
  font-style: normal;
  line-height: 1.75;
}

body.woocommerce-account form .form-row {
  margin-bottom: 16px;
}

body.woocommerce-account form label {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
}

body.woocommerce-account form .input-text,
body.woocommerce-account form input[type="text"],
body.woocommerce-account form input[type="email"],
body.woocommerce-account form input[type="password"],
body.woocommerce-account form input[type="tel"],
body.woocommerce-account form select,
body.woocommerce-account form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  padding: 0 16px;
  color: #0f172a;
  font: inherit;
  box-shadow: none;
}

body.woocommerce-account form textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

body.woocommerce-account form .input-text:focus,
body.woocommerce-account form input:focus,
body.woocommerce-account form select:focus,
body.woocommerce-account form textarea:focus {
  border-color: #bfd3f7;
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

body.woocommerce-account fieldset {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #e6edf7;
  border-radius: 18px;
}

body.woocommerce-account fieldset legend {
  padding: 0 8px;
  font-weight: 700;
  color: #0f172a;
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid #dbe2ef;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

@media (max-width: 991px) {
  body.woocommerce-account .woocommerce {
    width: min(1180px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 48px;
  }

  body.woocommerce-account .woocommerce-MyAccount-content {
    padding: 22px;
  }

  body.woocommerce-account .addresses {
    grid-template-columns: 1fr;
  }
}

body.woocommerce-account .woocommerce-orders-table td:last-child,
body.woocommerce-account table.shop_table td:last-child {
  vertical-align: middle;
  text-align: right;
}

body.woocommerce-account .woocommerce-orders-table td:last-child .button,
body.woocommerce-account table.shop_table td:last-child .button {
  min-width: 118px;
  justify-content: center;
  margin-left: auto;
}

body.woocommerce-account .woocommerce-orders-table td:last-child .button,
body.woocommerce-account table.shop_table td:last-child .button {
  min-width: 128px;
}

body.woocommerce-account .woocommerce-orders-table td:last-child .button,
body.woocommerce-account table.shop_table td:last-child .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  min-height: 42px !important;
  padding: 0 16px !important;
}

body.pm-modal-open {
  overflow: hidden;
}

.pm-refactor-modal[hidden] {
  display: none;
}

.pm-refactor-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.pm-refactor-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.pm-refactor-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  margin: min(12vh, 100px) auto 0;
  background: #ffffff;
  border: 1px solid #dbe2ef;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  padding: 32px 28px 28px;
}

.pm-refactor-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid #dbe2ef;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.pm-refactor-modal__close:hover {
  color: #2563eb;
  border-color: #bfd3f7;
}

.pm-refactor-modal__title {
  margin: 0 0 14px;
  padding-right: 48px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.pm-refactor-modal__text {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5b6475;
}

.pm-refactor-modal__btn {
  width: 100%;
}

@media (max-width: 640px) {
  .pm-refactor-modal__dialog {
    padding: 26px 20px 20px;
    border-radius: 20px;
  }

  .pm-refactor-modal__title {
    font-size: 1.5rem;
  }

  .pm-refactor-modal__text {
    font-size: 1rem;
  }
}