@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --mcw-ink: #101827;
  --mcw-ink-2: #213047;
  --mcw-muted: #64748b;
  --mcw-line: #dce6ef;
  --mcw-soft: #f4f8fb;
  --mcw-white: #ffffff;
  --mcw-cyan: #2fb9d4;
  --mcw-green: #2fc98f;
  --mcw-blue: #2368e8;
  --mcw-sand: #f6f0e6;
  --mcw-radius: 8px;
  --mcw-shadow: 0 24px 80px rgba(16, 24, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mcw-ink);
  background: #fbfdff;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.mcw-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.mcw-site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
  background: transparent;
}
.mcw-header-inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 12px 8px 22px;
  border: 1px solid rgba(178, 238, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.68), rgba(14, 72, 92, 0.54));
  box-shadow: 0 24px 90px rgba(6, 12, 24, 0.30);
  backdrop-filter: blur(30px) saturate(155%);
  pointer-events: auto;
}
.mcw-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; }
.mcw-brand-image {
  flex: 0 0 auto;
  min-width: 252px;
}
.mcw-brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 270px;
  object-fit: contain;
}
.mcw-brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #042532;
  background: linear-gradient(135deg, #dff8ff, #dff8ee);
  border: 1px solid rgba(47, 185, 212, 0.35);
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
}
.mcw-brand-text { font-size: 1.1rem; color: #f7fbff; }
.mcw-nav { margin-left: auto; }
.mcw-menu { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.mcw-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  font-size: 0.88rem;
  color: rgba(247, 251, 255, 0.88);
}
.mcw-menu a:hover { background: rgba(255, 255, 255, 0.12); }
.mcw-menu a:hover { color: #ffffff; }
.mcw-header-actions { display: flex; align-items: center; gap: 12px; }
.mcw-login-link { text-decoration: none; font-weight: 820; font-size: 0.9rem; color: rgba(247, 251, 255, 0.70); }
.mcw-menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--mcw-line); background: #fff; border-radius: 8px; }
.mcw-menu-toggle span { display: block; width: 20px; height: 2px; background: var(--mcw-ink); margin: 4px auto; }

.mcw-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mcw-social-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(178, 238, 255, 0.24);
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.mcw-social-link span {
  display: inline-grid;
  place-items: center;
}
.mcw-social-link svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mcw-social-facebook svg,
.mcw-social-telegram svg {
  fill: currentColor;
  stroke: none;
}
.mcw-social-link:hover,
.mcw-social-link:focus {
  transform: translateY(-2px);
  border-color: rgba(223, 248, 255, 0.56);
  background: rgba(255, 255, 255, 0.18);
}
.mcw-social-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045); }
.mcw-social-facebook { background: #1877f2; }
.mcw-social-whatsapp { background: #25d366; }
.mcw-social-telegram { background: #229ed9; }
.mcw-floating-social {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 78;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(178, 238, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7, 16, 31, 0.80), rgba(14, 72, 92, 0.66));
  box-shadow: 0 22px 58px rgba(5, 13, 24, 0.28);
  backdrop-filter: blur(22px) saturate(145%);
  transform: translateY(-50%);
}

.mcw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 860;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.mcw-btn:hover { transform: translateY(-2px); }
.mcw-btn-primary { background: #101827; color: #fff; box-shadow: 0 14px 34px rgba(16, 24, 39, 0.18); }
.mcw-btn-secondary { background: rgba(255,255,255,0.9); color: var(--mcw-ink); border-color: rgba(16,24,39,0.14); box-shadow: 0 10px 24px rgba(16,24,39,0.08); }
.mcw-btn-outline { background: #fff; color: var(--mcw-ink); border-color: var(--mcw-line); }
.mcw-btn-light { background: #fff; color: var(--mcw-ink); }
.mcw-btn-small { min-height: 40px; padding: 0 16px; font-size: 0.9rem; }

.mcw-hero-v4 {
  position: relative;
  min-height: 760px;
  padding: 142px 0 0;
  overflow: hidden;
  color: #fff;
  background: #0b1220;
}
.mcw-hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.58;
  filter: brightness(0.72) contrast(1.12) saturate(1.08);
  transform: scale(1.04);
  animation: mcw-bg-drift 18s ease-in-out infinite alternate;
}
.mcw-hero-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 74%, rgba(47, 185, 212, 0.30), rgba(39, 112, 244, 0.16) 36%, transparent 62%),
    linear-gradient(90deg, rgba(4, 10, 20, 0.96) 0%, rgba(4, 10, 20, 0.86) 44%, rgba(4, 10, 20, 0.58) 72%, rgba(4, 10, 20, 0.38) 100%),
    linear-gradient(180deg, rgba(6, 12, 24, 0.82) 0%, rgba(11, 50, 91, 0.66) 100%);
}
.mcw-hero-v4::after { content: none; }
.mcw-curve {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(47,185,212,0.18);
  transform: rotate(-8deg);
}
.mcw-curve-one {
  right: -16vw;
  top: 170px;
  width: 46vw;
  height: 280px;
  border-radius: 999px 0 0 999px;
  border-right: 0;
  background: linear-gradient(90deg, rgba(47,185,212,0.14), rgba(255,255,255,0));
}
.mcw-curve-two {
  left: -20vw;
  top: 480px;
  width: 48vw;
  height: 240px;
  border-radius: 0 999px 999px 0;
  border-left: 0;
  background: linear-gradient(270deg, rgba(47,201,143,0.12), rgba(255,255,255,0));
}
.mcw-hero-shell { position: relative; z-index: 2; }
.mcw-hero-copy {
  max-width: 650px;
  margin: 0;
  text-align: left;
  animation: mcw-rise 0.75s ease both;
}
.mcw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(47,185,212,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  color: #0b7289;
  font-size: 0.86rem;
  font-weight: 900;
}
.mcw-hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mcw-green);
  box-shadow: 0 0 0 5px rgba(47,201,143,0.16);
}
.mcw-hero h1 {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(2.15rem, 3vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: #f6f8ff;
}
.mcw-lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(234, 240, 255, 0.82);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}
.mcw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: min(650px, 100%);
  gap: 14px;
  margin-top: 30px;
}
.mcw-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.14);
  box-shadow: 0 28px 90px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
  animation: mcw-rise 0.9s ease 0.18s both;
}
.mcw-hero-metrics div {
  padding: 22px;
  background: rgba(8, 16, 32, 0.58);
  text-align: center;
}
.mcw-hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}
.mcw-hero-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(234,240,255,0.74);
  font-size: 0.92rem;
}
@keyframes mcw-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes mcw-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mcw-device-in {
  from { opacity: 0; transform: rotateX(8deg) translateY(30px) scale(0.98); }
  to { opacity: 1; transform: rotateX(4deg) translateY(0) scale(1); }
}
.mcw-marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 56px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(6,12,24,0.42);
  backdrop-filter: blur(16px);
}
.mcw-marquee div {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-right: 16px;
  animation: mcw-marquee 58s linear infinite;
}
.mcw-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(244,248,255,0.88);
  font-size: 0.9rem;
  font-weight: 900;
}
@keyframes mcw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes mcw-bg-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-18px, 10px, 0); }
}

.mcw-free-hosting-promo {
  position: relative;
  padding: 46px 0 22px;
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 201, 143, 0.18), transparent 32%),
    linear-gradient(180deg, #f4fbff, #fbfdff);
}
.mcw-free-promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(117, 235, 255, 0.28);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 201, 143, 0.36), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(47, 185, 212, 0.30), transparent 36%),
    linear-gradient(135deg, #07101f 0%, #0d2d42 48%, #0b6a78 100%);
  box-shadow: 0 34px 110px rgba(8, 19, 33, 0.24);
}
.mcw-free-promo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}
.mcw-free-promo-copy,
.mcw-free-promo-offer {
  position: relative;
  z-index: 1;
}
.mcw-free-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(47, 201, 143, 0.16);
  color: #b9ffe7;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mcw-free-promo-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.mcw-free-promo-copy p:not(.mcw-free-eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(238, 248, 255, 0.82);
  font-size: 1.08rem;
}
.mcw-free-urgency {
  display: block;
  margin-top: 18px;
  color: #d8fff0;
  font-size: 0.98rem;
}
.mcw-free-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.mcw-free-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.mcw-free-promo-offer {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  text-align: center;
}
.mcw-free-promo-offer span {
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e9fff7;
  color: #05634b;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mcw-free-promo-offer strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.9;
  text-align: center;
  width: 100%;
}
.mcw-free-promo-offer small {
  display: block;
  margin-top: 6px;
  color: rgba(238, 248, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
}
.mcw-free-promo-offer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.mcw-free-promo-offer li {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 252, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 760;
  text-align: center;
}

.mcw-section, .mcw-route-section, .mcw-plans-section, .mcw-process-section, .mcw-content-section { padding: 88px 0; }
.mcw-solutions, .mcw-process-section {
  position: relative;
  background:
    linear-gradient(180deg, #fbfdff, #f3f9fb);
}
.mcw-experience { background: linear-gradient(180deg, #f4f8fb, #ffffff); }
.mcw-section-head { max-width: 760px; margin-bottom: 40px; }
.mcw-content-section .mcw-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mcw-eyebrow {
  margin: 0 0 14px;
  color: #0b8cab;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mcw-section-head h2, .mcw-page-hero h1, .mcw-final-cta h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.25vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.mcw-section-head p:not(.mcw-eyebrow), .mcw-page-hero p, .mcw-final-cta p { color: var(--mcw-muted); font-size: 1.08rem; }
.mcw-plans-section .mcw-section-head,
.mcw-process-section .mcw-section-head,
.mcw-solutions .mcw-section-head,
.mcw-value-section .mcw-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mcw-solutions .mcw-section-head h2,
.mcw-process-section .mcw-section-head h2,
.mcw-plans-section .mcw-section-head h2,
.mcw-value-section .mcw-section-head h2 {
  font-size: clamp(1.95rem, 2.65vw, 2.85rem);
}

.mcw-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 22px;
}
.mcw-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--mcw-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16,24,39,0.05);
}
.mcw-bento-card:hover { border-color: rgba(47,185,212,0.6); transform: translateY(-2px); transition: 0.18s ease; }
.mcw-bento-large {
  grid-row: span 2;
  background:
    linear-gradient(145deg, #101827, #16243a 58%, #0b8cab);
  color: #fff;
}
.mcw-bento-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, #eef8f7, #ffffff);
}
.mcw-card-kicker, .mcw-plan-kicker {
  margin: 0 0 12px;
  color: #0b8cab;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.mcw-bento-large .mcw-card-kicker { color: #70e5ff; }
.mcw-bento-card h3 { margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.08; }
.mcw-bento-card p { margin: 0; color: var(--mcw-muted); }
.mcw-bento-large p { color: #c8d4e3; }
.mcw-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.mcw-value-grid > div {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(47, 185, 212, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff, #f0f9fb);
  box-shadow: 0 14px 42px rgba(16, 24, 39, 0.07);
}
.mcw-value-grid span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fb9d4, #2fc98f);
  color: #05202a;
  font-weight: 950;
}
.mcw-value-grid h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.18;
}
.mcw-value-grid p {
  margin: 0;
  color: var(--mcw-muted);
}
.mcw-mini-dashboard {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 160px;
  margin-top: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
}
.mcw-mini-dashboard span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mcw-cyan), var(--mcw-green));
}

.mcw-experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.mcw-product-frame {
  overflow: hidden;
  border: 1px solid rgba(16,24,39,0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--mcw-shadow);
}
.mcw-product-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--mcw-line);
  background: #f7fafc;
}
.mcw-product-top span { width: 10px; height: 10px; border-radius: 999px; background: var(--mcw-cyan); }
.mcw-product-top span:nth-child(2) { background: #f1b84b; }
.mcw-product-top span:nth-child(3) { background: var(--mcw-green); }
.mcw-product-top strong { margin-left: 8px; color: #314056; font-size: 0.9rem; }
.mcw-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
}
.mcw-product-stat, .mcw-product-list {
  padding: 22px;
  border: 1px solid var(--mcw-line);
  border-radius: 20px;
  background: #fbfdff;
}
.mcw-product-stat span { color: var(--mcw-muted); font-weight: 760; }
.mcw-product-stat strong { display: block; margin-top: 8px; font-size: 1.5rem; }
.mcw-product-stat-wide { grid-column: span 2; }
.mcw-product-list { grid-column: span 2; }
.mcw-product-list p { margin: 0 0 10px; font-weight: 900; }
.mcw-product-list ul { margin: 0; padding-left: 20px; color: var(--mcw-muted); }

.mcw-plan-grid, .mcw-process-grid, .mcw-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.mcw-hosting-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.mcw-plan, .mcw-process-grid > div, .mcw-route, .mcw-contact-box {
  background: #fff;
  border: 1px solid var(--mcw-line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(16, 24, 39, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.mcw-plan:hover,
.mcw-service-strip a:hover,
.mcw-capsule-grid > div:hover {
  transform: translateY(-8px);
  border-color: rgba(47,185,212,0.58);
  box-shadow: 0 28px 80px rgba(16, 24, 39, 0.12);
}
.mcw-plan { display: flex; flex-direction: column; }
.mcw-hosting-grid .mcw-plan {
  align-items: center;
  text-align: center;
}
.mcw-plan-featured {
  border-color: rgba(47,185,212,0.75);
  box-shadow: var(--mcw-shadow);
  transform: translateY(-10px);
}
.mcw-plan-featured .mcw-sale-chip { margin-top: 34px; }
.mcw-old-price {
  margin: 6px 0 0;
  color: #8ba0ba;
  font-weight: 850;
  text-decoration: line-through;
}
.mcw-sale-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(47, 201, 143, 0.12);
  color: #078158;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 0 rgba(47, 201, 143, 0.32);
  animation: mcw-pulse-chip 2.4s ease-in-out infinite;
}
.mcw-featured-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  right: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fb9d4, #2fc98f);
  color: #05202a;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: mcw-shine-badge-centered 2.8s ease-in-out infinite;
}
.mcw-hosting-grid .mcw-plan {
  position: relative;
}
.mcw-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.mcw-service-strip-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
}
.mcw-service-strip a {
  display: block;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--mcw-line);
  border-radius: 28px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16,24,39,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-align: center;
}
.mcw-proof-section {
  background:
    radial-gradient(circle at 70% 24%, rgba(47,185,212,0.16), transparent 36%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}
.mcw-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.mcw-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16,24,39,0.08);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--mcw-shadow);
  backdrop-filter: blur(18px);
}
.mcw-proof-panel div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(47,185,212,0.20);
  border-radius: 22px;
  background: #fbfdff;
}
.mcw-proof-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
}
.mcw-proof-panel span {
  display: block;
  color: var(--mcw-muted);
}
.mcw-service-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.mcw-service-strip span {
  color: var(--mcw-muted);
}
.mcw-capsule-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: min(650px, 100%);
  gap: 10px;
  margin-top: 18px;
}
.mcw-capsule-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(244,248,255,0.88);
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
  animation: mcw-soft-float 5s ease-in-out infinite;
}
.mcw-capsule-row span:nth-child(2) { animation-delay: -1.4s; }
.mcw-capsule-row span:nth-child(3) { animation-delay: -2.6s; }
.mcw-capsule-row-dark {
  justify-content: flex-start;
}
.mcw-capsule-row-dark span {
  border-color: rgba(47,185,212,0.24);
  background: rgba(47,185,212,0.10);
  color: #dff8ff;
}
.mcw-capsule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.mcw-capsule-grid > div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--mcw-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,251,0.86));
  box-shadow: 0 10px 30px rgba(16,24,39,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.mcw-capsule-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.mcw-capsule-grid span {
  color: var(--mcw-muted);
}
.mcw-faq-section {
  background: linear-gradient(180deg, rgba(244, 251, 252, 0.88), rgba(255, 255, 255, 0.96));
}
.mcw-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.mcw-faq-item {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(42, 197, 198, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 64px rgba(16, 24, 39, 0.08);
}
.mcw-faq-item h3 {
  margin: 0 0 12px;
  color: var(--mcw-ink);
  font-size: 1.05rem;
  line-height: 1.25;
}
.mcw-faq-item p {
  margin: 0;
  color: #51627b;
  line-height: 1.66;
}
.mcw-motion-card {
  animation: mcw-card-breathe 5.5s ease-in-out infinite;
}
.mcw-motion-card:nth-child(2) { animation-delay: -1.6s; }
.mcw-motion-card:nth-child(3) { animation-delay: -3.1s; }
@keyframes mcw-pulse-chip {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 201, 143, 0.32); }
  50% { box-shadow: 0 0 0 9px rgba(47, 201, 143, 0); }
}
@keyframes mcw-shine-badge {
  0%, 100% { filter: brightness(1); transform: translateY(0); }
  50% { filter: brightness(1.1); transform: translateY(-2px); }
}
@keyframes mcw-shine-badge-centered {
  0%, 100% { filter: brightness(1); transform: translateX(-50%) translateY(0); }
  50% { filter: brightness(1.1); transform: translateX(-50%) translateY(-2px); }
}
@keyframes mcw-soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes mcw-card-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mcw-plan h3, .mcw-process-grid h3, .mcw-route h3 { margin: 0 0 10px; font-size: 1.35rem; }
.mcw-price { margin: 8px 0 20px; font-size: 2.45rem; line-height: 1; font-weight: 950; }
.mcw-price span { font-size: 0.95rem; color: var(--mcw-muted); margin-left: 4px; }
.mcw-plan ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.mcw-hosting-grid .mcw-plan ul { width: 100%; }
.mcw-plan li { padding: 10px 0; border-bottom: 1px solid #eef3f7; color: var(--mcw-muted); }
.mcw-hosting-grid .mcw-plan li { text-align: center; }
.mcw-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mcw-process-grid span {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fb9d4, #2fc98f);
  color: #05202a;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(47, 185, 212, 0.22);
}
.mcw-process-grid p, .mcw-route p { color: var(--mcw-muted); }
.mcw-process-grid h3 { font-size: 1.15rem; }
.mcw-process-grid > div {
  padding: 26px 22px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #edf8fb);
  border-color: rgba(47, 185, 212, 0.28);
  box-shadow: 0 18px 44px rgba(16, 24, 39, 0.08);
}
.mcw-soft-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 185, 212, 0.10), transparent 38%),
    linear-gradient(180deg, #f8fbfd, #eef7fa);
}
.mcw-comparison-table {
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto 28px;
  border: 1px solid rgba(47, 185, 212, 0.22);
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 20px 60px rgba(16, 24, 39, 0.08);
}
.mcw-comparison-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #e7eef5;
}
.mcw-comparison-row:last-child { border-bottom: 0; }
.mcw-comparison-row > div {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: var(--mcw-muted);
  text-align: center;
  border-right: 1px solid #e7eef5;
}
.mcw-comparison-row > div:last-child { border-right: 0; }
.mcw-comparison-row > div:first-child {
  justify-content: flex-start;
  color: var(--mcw-ink);
  font-weight: 900;
  text-align: left;
  background: rgba(47, 185, 212, 0.06);
}
.mcw-comparison-head > div {
  color: var(--mcw-ink);
  font-weight: 950;
  background: #eef8fb;
}

.mcw-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(135deg, #101827, #213047);
}
.mcw-page-hero p { max-width: 760px; color: #c8d4e3; }
.mcw-page-hero-has-media {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 170px 0 120px;
  background: #0b1220;
}
.mcw-page-hero-has-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 72%, rgba(47,185,212,0.12), transparent 42%),
    linear-gradient(90deg, rgba(4, 10, 20, 0.78) 0%, rgba(4, 10, 20, 0.56) 45%, rgba(4, 10, 20, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 16, 32, 0.32), rgba(8, 16, 32, 0.56));
}
.mcw-page-hero-has-media .mcw-container {
  position: relative;
  z-index: 2;
}
.mcw-page-hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
  filter: brightness(0.9) contrast(1.06) saturate(1.04);
  transform: scale(1.03);
  animation: mcw-bg-drift 18s ease-in-out infinite alternate;
}
.mcw-page-hero-has-media h1 {
  max-width: 820px;
  color: #f8fbff;
}
.mcw-page-hero-has-media p:not(.mcw-eyebrow) {
  color: rgba(235, 242, 255, 0.86);
}
.mcw-prose { max-width: 860px; }
.mcw-prose h2 { font-size: 2rem; }

.mcw-case-stack {
  display: grid;
  gap: 28px;
}
.mcw-case-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(47, 185, 212, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 185, 212, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 26px 80px rgba(16, 24, 39, 0.08);
}
.mcw-case-main {
  max-width: 920px;
  margin-bottom: 28px;
}
.mcw-case-main h2,
.mcw-dark-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.mcw-case-main p {
  max-width: 780px;
  color: var(--mcw-muted);
  font-size: 1.05rem;
}
.mcw-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.mcw-tag-row span,
.mcw-repo-card span,
.mcw-repo-card a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(47, 185, 212, 0.28);
  border-radius: 999px;
  color: #07586a;
  background: rgba(223, 248, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 850;
}
.mcw-case-links {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.mcw-case-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #08111f;
  background: #ffffff;
  border: 1px solid rgba(47, 185, 212, 0.36);
  box-shadow: 0 12px 30px rgba(16, 24, 39, 0.08);
  text-decoration: none;
  font-weight: 900;
}
.mcw-case-columns,
.mcw-stack-grid,
.mcw-dark-grid,
.mcw-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.mcw-case-columns > div,
.mcw-tech-cases > article,
.mcw-stack-grid > article,
.mcw-repo-card,
.mcw-architecture-notes > div {
  border: 1px solid rgba(173, 199, 219, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.06);
}
.mcw-case-columns > div,
.mcw-tech-cases > article,
.mcw-stack-grid > article,
.mcw-repo-card {
  padding: 24px;
}
.mcw-case-columns h3,
.mcw-stack-grid h3,
.mcw-repo-card h3,
.mcw-tech-cases h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.mcw-case-columns p,
.mcw-stack-grid p,
.mcw-repo-card p,
.mcw-tech-cases p,
.mcw-tech-cases li {
  color: var(--mcw-muted);
}
.mcw-media-placeholder {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  padding: 26px;
  border: 1px dashed rgba(47, 185, 212, 0.55);
  border-radius: 24px;
  color: #07586a;
  background:
    linear-gradient(135deg, rgba(223, 248, 255, 0.72), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(45deg, rgba(47, 185, 212, 0.08) 0 10px, transparent 10px 20px);
  text-align: center;
  font-weight: 850;
}
.mcw-portfolio-media {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(47, 185, 212, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, #edf7fb, #ffffff);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.10);
}
.mcw-portfolio-track {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.mcw-portfolio-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mcw-portfolio-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.mcw-portfolio-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mcw-portfolio-carousel-ui {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 6px;
  border: 1px solid rgba(223, 248, 255, 0.45);
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.76);
  color: #f7fbff;
  box-shadow: 0 18px 40px rgba(7, 17, 32, 0.22);
  backdrop-filter: blur(18px);
}
.mcw-portfolio-carousel-ui button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #061626;
  background: linear-gradient(135deg, #c6f7ff, #31d7c4);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.mcw-portfolio-carousel-ui span {
  min-width: 52px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 850;
}
.mcw-dark-band {
  padding: 96px 0;
  color: #f7fbff;
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 185, 212, 0.24), transparent 36%),
    linear-gradient(135deg, #08111f, #0b3a4d);
}
.mcw-dark-band .mcw-eyebrow { color: #6fe7ff; }
.mcw-dark-band p { color: rgba(235, 242, 255, 0.78); }
.mcw-dark-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}
.mcw-repo-grid {
  display: grid;
  gap: 16px;
}
.mcw-repo-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(188, 229, 243, 0.18);
  box-shadow: none;
}
.mcw-repo-card p { color: rgba(235, 242, 255, 0.72); }
.mcw-repo-card span,
.mcw-repo-card a {
  color: #dff8ff;
  background: rgba(47, 185, 212, 0.12);
  border-color: rgba(188, 229, 243, 0.28);
  text-decoration: none;
}
.mcw-architecture-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.mcw-code-panel {
  overflow: auto;
  border: 1px solid rgba(47, 185, 212, 0.24);
  border-radius: 24px;
  background: #08111f;
  box-shadow: 0 24px 80px rgba(16, 24, 39, 0.14);
}
.mcw-code-panel pre {
  margin: 0;
  padding: 28px;
  color: #dff8ff;
  font-size: 0.95rem;
  line-height: 1.6;
}
.mcw-architecture-notes {
  display: grid;
  gap: 18px;
}
.mcw-architecture-notes .mcw-media-placeholder {
  min-height: 0;
  margin-top: 0;
}
.mcw-soft-band {
  background: linear-gradient(180deg, #f5f9fc, #ffffff);
}
.mcw-tech-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mcw-tech-cases ul {
  margin: 18px 0 0;
  padding-left: 18px;
}
.mcw-process-grid-centered > div {
  text-align: center;
}
.mcw-step-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #063745;
  background: linear-gradient(135deg, #dff8ff, #dff8ee);
  border: 1px solid rgba(47, 185, 212, 0.38);
  font-weight: 950;
}
.mcw-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }

.mcw-contact-layout,
.mcw-account-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: 38px;
  align-items: start;
}
.mcw-contact-copy h2,
.mcw-account-trust h2,
.mcw-account-dashboard h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
}
.mcw-contact-copy p,
.mcw-account-trust p,
.mcw-account-dashboard p {
  color: var(--mcw-muted);
}
.mcw-response-panel {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}
.mcw-response-panel div {
  padding: 18px;
  border: 1px solid rgba(47, 185, 212, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(16, 24, 39, 0.06);
}
.mcw-response-panel strong,
.mcw-response-panel span {
  display: block;
}
.mcw-response-panel strong {
  margin-bottom: 4px;
  color: var(--mcw-ink);
}
.mcw-response-panel span,
.mcw-direct-data p {
  color: var(--mcw-muted);
}
.mcw-direct-data {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f2fbff, #ffffff);
  border: 1px solid rgba(47, 185, 212, 0.24);
}
.mcw-direct-data p {
  margin: 0 0 10px;
}
.mcw-direct-data p:last-child {
  margin-bottom: 0;
}
.mcw-contact-form,
.mcw-account-form-card,
.mcw-account-dashboard {
  padding: 34px;
  border: 1px solid rgba(173, 199, 219, 0.72);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(16, 24, 39, 0.08);
}
.mcw-contact-form h2,
.mcw-account-form-card h2 {
  margin: 0 0 8px;
  font-size: 1.65rem;
}
.mcw-contact-form p,
.mcw-account-form-card p {
  color: var(--mcw-muted);
}
.mcw-contact-form label,
.mcw-account-form-card .form-row {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}
.mcw-contact-form span,
.mcw-account-form-card label {
  font-weight: 850;
  color: var(--mcw-ink);
}
.mcw-contact-form input,
.mcw-contact-form select,
.mcw-contact-form textarea,
.mcw-account-form-card input:not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--mcw-line);
  border-radius: 14px;
  color: var(--mcw-ink);
  background: #fbfdff;
  font: inherit;
}
.mcw-account-form-card .password-input {
  position: relative;
  display: block;
}
.mcw-account-form-card .password-input input {
  padding-right: 54px;
}
.mcw-account-form-card .show-password-input {
  position: absolute;
  top: 50%;
  right: 12px;
  left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #50627a;
  transform: translateY(-50%);
  cursor: pointer;
}
.mcw-account-form-card .show-password-input::after {
  margin: 0;
}
.mcw-account-form-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--mcw-cyan);
}
.mcw-account-form-card .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 4px 0 12px;
  color: var(--mcw-ink);
}
.mcw-account-form-card .woocommerce-form-login__rememberme span {
  line-height: 1;
}
.mcw-contact-form textarea {
  resize: vertical;
}
.mcw-contact-form small {
  display: block;
  margin-top: 14px;
  color: var(--mcw-muted);
}
.mcw-account-hero {
  padding: 0;
  color: #f7fbff;
  background:
    radial-gradient(circle at 70% 16%, rgba(47, 185, 212, 0.26), transparent 34%),
    linear-gradient(135deg, #08111f, #0b3a4d);
}
.mcw-account-hero p:not(.mcw-eyebrow) {
  max-width: 780px;
  color: rgba(235, 242, 255, 0.78);
}
.mcw-account-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 1.02;
}
.mcw-account-hero-clean {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 88px auto 0;
  padding: 0;
  border-radius: 8px;
  background: #08111f;
  box-shadow: 0 34px 110px rgba(16, 24, 39, 0.22);
}
.mcw-account-hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 13, 25, 0.86) 0%, rgba(8, 18, 32, 0.70) 42%, rgba(8, 18, 32, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.22), rgba(5, 10, 18, 0.50));
}
.mcw-account-hero-clean .mcw-page-hero-background {
  opacity: 0.9;
  filter: brightness(0.82) contrast(1.04) saturate(1.02);
  transform: none;
  animation: none;
  object-position: center center;
}
.mcw-account-hero-clean .mcw-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 38px 52px;
  text-align: left;
}
.mcw-account-hero-clean .mcw-eyebrow {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #073244;
  background: rgba(223, 248, 255, 0.9);
  border: 1px solid rgba(188, 229, 243, 0.46);
}
.mcw-account-hero-clean h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(2.2rem, 3.2vw, 3.75rem);
  line-height: 1.08;
}
.mcw-account-hero-clean p:not(.mcw-eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(245, 249, 255, 0.86);
  font-size: 1.02rem;
}
.mcw-account-title-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 76px;
  background: #08111f;
}
.mcw-account-title-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 13, 25, 0.90) 0%, rgba(8, 18, 32, 0.76) 42%, rgba(8, 18, 32, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.30), rgba(5, 10, 18, 0.62));
}
.mcw-account-title-hero .mcw-page-hero-background {
  opacity: 0.9;
  filter: brightness(0.82) contrast(1.04) saturate(1.02);
  transform: none;
  animation: none;
  object-position: center center;
}
.mcw-account-title-hero .mcw-container {
  position: relative;
  z-index: 2;
}
.mcw-account-title-hero .mcw-eyebrow {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #073244;
  background: rgba(223, 248, 255, 0.92);
  border: 1px solid rgba(188, 229, 243, 0.48);
}
.mcw-account-title-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #f8fbff;
  font-size: clamp(2.25rem, 3.4vw, 3.8rem);
  line-height: 1.07;
}
.mcw-account-title-hero p:not(.mcw-eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(245, 249, 255, 0.88);
  font-size: 1.05rem;
}
.mcw-account-section {
  padding: 64px 0 92px;
  margin-top: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(47, 185, 212, 0.18), transparent 32%),
    linear-gradient(180deg, #f0f8fb 0, #fbfdff 44%, #fbfdff 100%);
  border-top: 1px solid rgba(47, 185, 212, 0.22);
}
.mcw-account-section .mcw-account-layout {
  position: relative;
  z-index: 3;
  padding-top: 0;
  width: min(1260px, calc(100% - 40px));
}
.mcw-account-trust h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.85rem);
  line-height: 1.08;
}
.mcw-account-forms {
  display: grid;
  gap: 22px;
}
.mcw-account-form-card .button,
.mcw-account-form-card button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--mcw-ink);
  font-weight: 900;
  cursor: pointer;
}
.woocommerce .mcw-account-form-card button.button,
.woocommerce .mcw-account-form-card .button {
  color: #ffffff !important;
  background: var(--mcw-ink) !important;
  border: 0 !important;
  opacity: 1 !important;
}
.woocommerce .mcw-account-form-card button.button:hover,
.woocommerce .mcw-account-form-card .button:hover {
  background: #0d2638 !important;
}
.mcw-account-form-card .lost_password a {
  color: #08728a;
  font-weight: 850;
}
.mcw-account-dashboard {
  margin: 60px auto;
  max-width: 1120px;
}
.mcw-account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.mcw-account-dashboard-grid article {
  padding: 22px;
  border: 1px solid rgba(47, 185, 212, 0.22);
  border-radius: 20px;
  background: #fbfdff;
}
.mcw-account-dashboard-grid h3 {
  margin: 0 0 8px;
}
.mcw-account-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  background: #eef9fc;
}

body.woocommerce-account .mcw-main {
  padding: 0 0 84px !important;
}
body.woocommerce-account .mcw-site-header .mcw-header-inner {
  min-height: 68px !important;
  max-height: 84px;
  overflow: visible;
}
body.woocommerce-account .mcw-site-header .mcw-brand-image {
  min-width: 232px;
}
body.woocommerce-account .mcw-site-header .mcw-brand-logo {
  width: auto !important;
  height: 56px !important;
  max-width: 250px !important;
  object-fit: contain !important;
}
body.woocommerce-account .mcw-site-header .mcw-menu a {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.84rem;
}
body.woocommerce-account .woocommerce-notices-wrapper {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
}
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-info {
  border: 1px solid rgba(47, 185, 212, 0.24);
  border-radius: 18px;
  background: #f3fbfd;
  color: var(--mcw-ink);
  box-shadow: 0 14px 38px rgba(16, 24, 39, 0.06);
}
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 280px minmax(0, 860px);
  gap: 30px;
  justify-content: center;
  align-items: start;
  margin: 0 auto 92px;
  padding-top: 54px;
}
body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  margin: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
  grid-row: 2;
  justify-self: stretch;
  position: sticky;
  top: 112px;
  width: 100%;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(178, 238, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 0%, rgba(47, 185, 212, 0.24), transparent 42%),
    linear-gradient(145deg, #071120, #10384b 66%, #0b6a80);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.16);
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  color: rgba(247, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 850;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mcw-cyan), var(--mcw-green));
  box-shadow: 0 0 0 5px rgba(47, 185, 212, 0.10);
}
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: #061626;
  background: linear-gradient(135deg, #dff8ff, #dff8ee);
  border-color: rgba(223, 248, 255, 0.86);
}
body.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  width: 100%;
  max-width: 860px;
  min-width: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .mcw-account-dashboard {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}

body.single-product {
  background:
    radial-gradient(circle at 14% 12%, rgba(47, 185, 212, 0.12), transparent 32%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 58%, #f4f8fb 100%);
}
body.single-product .mcw-main,
body.woocommerce-page .mcw-main { padding: 132px 0 84px; }
body.woocommerce-shop,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.mcw-shop-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 185, 212, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(47, 201, 143, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f3f8fb 100%);
}
body.woocommerce-shop .mcw-main,
body.post-type-archive-product .mcw-main,
body.tax-product_cat .mcw-main,
body.tax-product_tag .mcw-main,
body.mcw-shop-page .mcw-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 96px;
}
body.woocommerce-checkout .mcw-main {
  padding: 0 0 84px !important;
}
body.single-product .mcw-site-header .mcw-header-inner,
body.woocommerce-shop .mcw-site-header .mcw-header-inner,
body.post-type-archive-product .mcw-site-header .mcw-header-inner,
body.tax-product_cat .mcw-site-header .mcw-header-inner,
body.tax-product_tag .mcw-site-header .mcw-header-inner,
body.mcw-shop-page .mcw-site-header .mcw-header-inner { min-height: 68px !important; }
body.single-product .mcw-site-header .mcw-brand-logo,
body.woocommerce-checkout .mcw-site-header .mcw-brand-logo,
body.woocommerce-cart .mcw-site-header .mcw-brand-logo,
body.woocommerce-shop .mcw-site-header .mcw-brand-logo,
body.post-type-archive-product .mcw-site-header .mcw-brand-logo,
body.tax-product_cat .mcw-site-header .mcw-brand-logo,
body.tax-product_tag .mcw-site-header .mcw-brand-logo,
body.mcw-shop-page .mcw-site-header .mcw-brand-logo {
  width: auto !important;
  height: 56px !important;
  max-width: 250px !important;
  object-fit: contain !important;
}
body.single-product .woocommerce-breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  color: #64748b;
  font-size: 0.92rem;
}
body.single-product .woocommerce-breadcrumb a {
  color: #0f6b86;
  font-weight: 760;
  text-decoration: none;
}
.mcw-shop-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
body.woocommerce-shop .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_tag .woocommerce-products-header {
  margin: 0 0 26px;
  padding: 34px 36px;
  border: 1px solid rgba(188, 220, 234, 0.84);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235, 249, 252, 0.90));
  box-shadow: 0 28px 80px rgba(16, 24, 39, 0.10);
}
body.woocommerce-shop .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title,
body.tax-product_tag .woocommerce-products-header__title,
body.woocommerce-shop .page-title,
body.post-type-archive-product .page-title,
body.tax-product_cat .page-title,
body.tax-product_tag .page-title {
  margin: 0;
  color: var(--mcw-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}
body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count {
  float: none;
  margin: 0 0 16px;
  color: #51627b;
  font-weight: 760;
}
body.woocommerce-shop .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_tag .woocommerce-ordering {
  float: none;
  margin: 0 0 28px;
}
body.woocommerce-shop .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select,
body.tax-product_tag .woocommerce-ordering select {
  min-height: 44px;
  min-width: min(100%, 290px);
  padding: 0 44px 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mcw-ink);
  font-weight: 760;
}
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
}
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after {
  content: none;
}
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  float: none !important;
  width: auto !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 0;
  align-content: start;
  min-width: 0;
  margin: 0 !important;
  padding: 14px 14px 18px;
  border: 1px solid rgba(188, 220, 234, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.10);
  backdrop-filter: blur(16px);
}
body.woocommerce-shop ul.products li.product a.woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product a.woocommerce-LoopProduct-link {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 0 18px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf7fb, #ffffff);
}
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.25em;
  margin: 0 0 10px;
  padding: 0;
  color: var(--mcw-ink);
  font-size: 1.04rem;
  line-height: 1.28;
  font-weight: 900;
}
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  min-height: 30px;
  margin: auto 0 16px;
  color: #0f6b86;
  font-size: 1rem;
  font-weight: 900;
}
body.woocommerce-shop ul.products li.product .price del,
body.post-type-archive-product ul.products li.product .price del,
body.tax-product_cat ul.products li.product .price del,
body.tax-product_tag ul.products li.product .price del {
  color: #8da0b8;
  opacity: 1;
}
body.woocommerce-shop ul.products li.product .price ins,
body.post-type-archive-product ul.products li.product .price ins,
body.tax-product_cat ul.products li.product .price ins,
body.tax-product_tag ul.products li.product .price ins {
  color: #0d566c;
  text-decoration: none;
}
body.woocommerce-shop ul.products li.product .onsale,
body.post-type-archive-product ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale,
body.tax-product_tag ul.products li.product .onsale {
  top: 20px;
  right: 20px;
  left: auto;
}
body.woocommerce-shop ul.products li.product .button,
body.woocommerce-shop ul.products li.product .mcw-loop-buy-now,
body.post-type-archive-product ul.products li.product .button,
body.post-type-archive-product ul.products li.product .mcw-loop-buy-now,
body.tax-product_cat ul.products li.product .button,
body.tax-product_cat ul.products li.product .mcw-loop-buy-now,
body.tax-product_tag ul.products li.product .button,
body.tax-product_tag ul.products li.product .mcw-loop-buy-now {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 0 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.91rem;
  line-height: 1.05;
  text-align: center;
}
body.woocommerce-shop ul.products li.product .add_to_cart_button,
body.post-type-archive-product ul.products li.product .add_to_cart_button,
body.tax-product_cat ul.products li.product .add_to_cart_button,
body.tax-product_tag ul.products li.product .add_to_cart_button {
  grid-column: 1;
}
body.woocommerce-shop ul.products li.product .mcw-loop-buy-now,
body.post-type-archive-product ul.products li.product .mcw-loop-buy-now,
body.tax-product_cat ul.products li.product .mcw-loop-buy-now,
body.tax-product_tag ul.products li.product .mcw-loop-buy-now {
  grid-column: 2;
  color: #061626;
  background: linear-gradient(135deg, #c6f7ff, #31d7c4);
  box-shadow: 0 16px 34px rgba(47, 208, 189, 0.20);
}
body.woocommerce-shop ul.products li.product .mcw-loop-buy-now:hover,
body.post-type-archive-product ul.products li.product .mcw-loop-buy-now:hover,
body.tax-product_cat ul.products li.product .mcw-loop-buy-now:hover,
body.tax-product_tag ul.products li.product .mcw-loop-buy-now:hover {
  color: #061626;
  background: linear-gradient(135deg, #e0fbff, #36e3cf);
}
body.mcw-shop-page .woocommerce-products-header,
body.mcw-shop-page .entry-header {
  margin: 0 0 26px;
  padding: 34px 36px;
  border: 1px solid rgba(188, 220, 234, 0.84);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(235, 249, 252, 0.90));
  box-shadow: 0 28px 80px rgba(16, 24, 39, 0.10);
}
body.mcw-shop-page .entry-title,
body.mcw-shop-page .page-title {
  margin: 0;
  color: var(--mcw-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}
body.mcw-shop-page .mcw-translated-shop-section {
  width: 100%;
  padding: 0;
}
body.mcw-shop-page .mcw-shop-page-shell {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding-top: 52px;
}
body.mcw-shop-page .mcw-shop-seo-header {
  max-width: 760px;
  margin: 0 0 34px;
}
body.mcw-shop-page .mcw-shop-seo-header h1 {
  margin: 8px 0 14px;
  color: var(--mcw-ink);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
}
body.mcw-shop-page .mcw-shop-seo-header p:last-child {
  max-width: 680px;
  margin: 0;
  color: #51627b;
  font-size: 1.02rem;
  line-height: 1.7;
}
body.mcw-shop-page .mcw-shop-seo-copy,
.mcw-shop-shell .mcw-shop-seo-copy {
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(42, 197, 198, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.08);
}
body.mcw-shop-page .mcw-shop-seo-copy h2,
.mcw-shop-shell .mcw-shop-seo-copy h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--mcw-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.12;
}
body.mcw-shop-page .mcw-shop-seo-copy > div,
.mcw-shop-shell .mcw-shop-seo-copy > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.mcw-shop-page .mcw-shop-seo-copy p,
.mcw-shop-shell .mcw-shop-seo-copy p {
  margin: 0;
  color: #51627b;
  font-size: 0.96rem;
  line-height: 1.62;
}
body.mcw-shop-page .woocommerce {
  width: 100%;
}
body.mcw-shop-page .woocommerce:has(ul.products) {
  display: block;
}
body.mcw-shop-page .woocommerce-result-count {
  float: none;
  margin: 0 0 16px;
  color: #51627b;
  font-weight: 760;
}
body.mcw-shop-page .woocommerce-ordering {
  float: none;
  margin: 0 0 28px;
}
body.mcw-shop-page .woocommerce-ordering select {
  min-height: 44px;
  min-width: min(100%, 290px);
  padding: 0 44px 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mcw-ink);
  font-weight: 760;
}
body.mcw-shop-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
}
body.mcw-shop-page ul.products::before,
body.mcw-shop-page ul.products::after { content: none; }
body.mcw-shop-page ul.products li.product {
  float: none !important;
  width: auto !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  min-width: 0;
  margin: 0 !important;
  padding: 14px 14px 18px;
  border: 1px solid rgba(188, 220, 234, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.10);
}
body.mcw-shop-page ul.products li.product a.woocommerce-LoopProduct-link {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
body.mcw-shop-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 0 18px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf7fb, #ffffff);
}
body.mcw-shop-page ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.25em;
  margin: 0 0 10px;
  padding: 0;
  color: var(--mcw-ink);
  font-size: 1.04rem;
  line-height: 1.28;
  font-weight: 900;
}
body.mcw-shop-page ul.products li.product .price {
  min-height: 30px;
  margin: auto 0 16px;
  color: #0f6b86;
  font-size: 1rem;
  font-weight: 900;
}
body.mcw-shop-page ul.products li.product .price del { color: #8da0b8; opacity: 1; }
body.mcw-shop-page ul.products li.product .price ins { color: #0d566c; text-decoration: none; }
body.mcw-shop-page ul.products li.product .onsale {
  top: 20px;
  right: 20px;
  left: auto;
}
body.mcw-shop-page ul.products li.product .button,
body.mcw-shop-page ul.products li.product .mcw-loop-buy-now {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 0 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.91rem;
  line-height: 1.05;
  text-align: center;
}
body.mcw-shop-page ul.products li.product .add_to_cart_button { grid-column: 1; }
body.mcw-shop-page ul.products li.product .mcw-loop-buy-now {
  grid-column: 2;
  color: #061626;
  background: linear-gradient(135deg, #c6f7ff, #31d7c4);
  box-shadow: 0 16px 34px rgba(47, 208, 189, 0.20);
}
.woocommerce div.product {
  position: relative;
  width: 100%;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(188, 220, 234, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px rgba(16, 24, 39, 0.13);
  backdrop-filter: blur(18px);
}
.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  float: none;
  width: 100%;
  margin: 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__image {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf7fb, #ffffff);
}
.woocommerce div.product div.images img {
  width: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(188, 220, 234, 0.78);
  border-radius: 24px;
  box-shadow: 0 22px 56px rgba(16, 24, 39, 0.10);
}
.woocommerce div.product div.summary { padding: 12px 4px; }
.woocommerce div.product .product_title {
  margin: 0 0 18px;
  color: var(--mcw-ink);
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 640px;
  margin: 0 0 22px;
  color: #51627b;
  font-size: 1.08rem;
  line-height: 1.72;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 18px 0 24px;
  color: var(--mcw-ink);
  font-size: clamp(1.75rem, 2.55vw, 2.75rem);
  line-height: 1;
  font-weight: 950;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  margin-right: 10px;
  color: #8da0b8;
  font-size: 0.55em;
  opacity: 1;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  color: #061626;
  text-decoration: none;
}
.woocommerce div.product form.cart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid rgba(188, 220, 234, 0.86);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(236, 249, 252, 0.94), rgba(255, 255, 255, 0.94));
}
.woocommerce div.product form.cart div.quantity { margin: 0; }
.woocommerce .quantity .qty {
  min-height: 48px;
  width: 76px;
  border: 1px solid rgba(148, 163, 184, 0.48);
  border-radius: 999px;
  background: #fff;
  color: var(--mcw-ink);
  font-weight: 850;
}
.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .mcw-buy-now,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #071120, #0d566c);
  color: #fff;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(7, 17, 32, 0.18);
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .mcw-buy-now:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: linear-gradient(135deg, #0d566c, #071120);
  color: #fff;
  transform: translateY(-1px);
}
.woocommerce div.product form.cart .mcw-buy-now {
  color: #061626;
  background: linear-gradient(135deg, #c6f7ff, #31d7c4);
  box-shadow: 0 18px 38px rgba(47, 208, 189, 0.22);
}
.woocommerce div.product form.cart .mcw-buy-now:hover {
  color: #061626;
  background: linear-gradient(135deg, #e0fbff, #36e3cf);
}
.woocommerce div.product form.cart div.quantity {
  grid-column: 1 / -1;
}
.woocommerce div.product form.cart div.quantity:empty {
  display: none;
}
.woocommerce div.product .product_meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
  color: #64748b;
  font-size: 0.92rem;
}
.woocommerce div.product .product_meta > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(188, 220, 234, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  line-height: 1.35;
}
.woocommerce div.product .product_meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(47, 185, 212, 0.13);
  color: #0f6b86;
  font-weight: 780;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}
.woocommerce span.onsale {
  min-width: 76px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fc98f, #2fb9d4);
  color: #052433;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(47, 185, 212, 0.20);
}
.woocommerce div.product span.onsale {
  top: 18px;
  left: 18px;
  z-index: 3;
}
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(188, 220, 234, 0.8);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { content: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(188, 220, 234, 0.9);
  border-radius: 999px;
  background: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 11px 18px;
  color: var(--mcw-ink);
  font-weight: 860;
}
.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(188, 220, 234, 0.85);
  border-radius: 22px;
  background: #fff;
  color: #51627b;
  font-size: 1.02rem;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-top: 0;
  color: var(--mcw-ink);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.05;
}
.woocommerce div.product .woocommerce-tabs .panel h3 { color: var(--mcw-ink); }
.woocommerce div.product .woocommerce-tabs .panel li { margin-bottom: 8px; }
.woocommerce div.product section.related.products,
.woocommerce div.product section.upsells.products {
  grid-column: 1 / -1;
  margin-top: 34px;
}
.woocommerce div.product section.related.products h2,
.woocommerce div.product section.upsells.products h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 2.35vw, 2.3rem);
  line-height: 1.08;
}
.woocommerce div.product section.related.products ul.products,
.woocommerce div.product section.upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 26px;
  margin: 0;
  padding: 0;
}
.woocommerce div.product section.related.products ul.products li.product,
.woocommerce div.product section.upsells.products ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(188, 220, 234, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(16, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}
.woocommerce div.product section.related.products ul.products li.product a img,
.woocommerce div.product section.upsells.products ul.products li.product a img {
  width: 100%;
  height: 190px;
  margin: 0 0 16px;
  border-radius: 16px;
  object-fit: cover;
}
.woocommerce div.product section.related.products ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product section.upsells.products ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 12px;
  padding: 0;
  color: var(--mcw-ink);
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 900;
}
.woocommerce div.product section.related.products ul.products li.product .price,
.woocommerce div.product section.upsells.products ul.products li.product .price {
  display: block;
  margin: 0 0 14px;
  color: var(--mcw-ink);
  font-size: 1rem;
  font-weight: 850;
}
.woocommerce div.product section.related.products ul.products li.product .button,
.woocommerce div.product section.upsells.products ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
}
body.single-product section.related.products,
body.single-product section.upsells.products {
  width: 100%;
  margin: 34px 0 0;
}
body.single-product section.related.products ul.products,
body.single-product section.upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  gap: 28px;
  margin: 0 !important;
  padding: 0 !important;
}
body.single-product section.related.products ul.products::before,
body.single-product section.related.products ul.products::after,
body.single-product section.upsells.products ul.products::before,
body.single-product section.upsells.products ul.products::after {
  content: none !important;
  display: none !important;
}
body.single-product section.related.products ul.products li.product,
body.single-product section.upsells.products ul.products li.product {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
}
body.single-product section.related.products ul.products li.product .button,
body.single-product section.related.products ul.products li.product .mcw-loop-buy-now,
body.single-product section.upsells.products ul.products li.product .button,
body.single-product section.upsells.products ul.products li.product .mcw-loop-buy-now {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 46px;
  margin: 6px 0 0 !important;
  padding: 0 14px !important;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
}
body.single-product section.related.products ul.products li.product .mcw-loop-buy-now,
body.single-product section.upsells.products ul.products li.product .mcw-loop-buy-now {
  background: linear-gradient(135deg, #c6f7ff, #31d7c4);
  color: #061626;
  box-shadow: 0 18px 38px rgba(47, 208, 189, 0.2);
}
body.single-product section.related.products ul.products li.product .onsale,
body.single-product section.upsells.products ul.products li.product .onsale {
  top: 10px;
  right: 10px;
  left: auto;
}

.mcw-error-section {
  min-height: 68vh;
  padding: 142px 0 94px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 185, 212, 0.18), transparent 32%),
    radial-gradient(circle at 85% 78%, rgba(48, 214, 196, 0.16), transparent 34%),
    linear-gradient(180deg, #ecfbff 0%, #f8fbff 44%, #ffffff 100%);
}
.mcw-error-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(188, 220, 234, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 80px rgba(16, 24, 39, 0.12);
  text-align: center;
}
.mcw-error-code {
  display: block;
  margin: 8px 0 10px;
  color: #0e6f87;
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 950;
  line-height: 0.9;
}
.mcw-error-panel h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}
.mcw-error-panel > p:not(.mcw-eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: #51627b;
  font-size: 1.08rem;
}
.mcw-error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.mcw-error-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 10px;
  border: 1px solid rgba(188, 220, 234, 0.9);
  border-radius: 999px;
  background: #fff;
}
.mcw-error-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--mcw-ink);
  font: inherit;
  background: transparent;
}
.mcw-error-search button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #071120, #0d566c);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

body.woocommerce-page #secondary,
body.woocommerce-page .widget-area,
body.single-product #secondary,
body.single-product .widget-area {
  display: none !important;
}

body.woocommerce-page .mcw-main > ul,
body.single-product .mcw-main > ul,
body.woocommerce-page .mcw-main > li,
body.single-product .mcw-main > li {
  display: none !important;
}

.mcw-checkout-hero {
  position: relative;
  margin-top: 0;
  padding: 142px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 0%, rgba(47, 185, 212, 0.18), transparent 36%),
    linear-gradient(135deg, #101827, #213047 72%, #0b657e);
}
.mcw-checkout-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
}
.mcw-checkout-hero p:not(.mcw-eyebrow) {
  max-width: 690px;
  color: rgba(235, 242, 255, 0.82);
  font-size: 1.08rem;
}
.mcw-checkout-section {
  padding: 48px 0 96px;
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 185, 212, 0.12), transparent 36%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}
.mcw-checkout-shell {
  width: min(1088px, calc(100% - 48px));
  margin: 0 auto;
}
.mcw-checkout-cart-review {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(188, 220, 234, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.08);
}
.mcw-checkout-cart-review h2 {
  margin: 4px 0 0;
  color: var(--mcw-ink);
  font-size: 1.7rem;
  line-height: 1.1;
}
.mcw-checkout-items {
  display: grid;
  gap: 12px;
}
.mcw-checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(188, 220, 234, 0.78);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f4fbfd);
}
.mcw-checkout-item-thumb {
  width: 72px;
  height: 58px;
  overflow: hidden;
  border-radius: 12px;
  background: #edf7fb;
}
.mcw-checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mcw-checkout-item strong {
  display: block;
  color: var(--mcw-ink);
  font-size: 0.95rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.mcw-checkout-item-info {
  min-width: 0;
}
.mcw-checkout-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin-top: 4px;
  color: var(--mcw-muted);
  font-size: 0.92rem;
}
.mcw-checkout-price {
  display: inline-flex !important;
  align-items: baseline;
  gap: 3px;
  color: #21486a;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}
.mcw-checkout-price .woocommerce-Price-amount {
  display: inline-flex !important;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  white-space: nowrap;
}
.mcw-checkout-price .woocommerce-Price-currencySymbol {
  display: inline-block;
  line-height: 1;
}
.mcw-checkout-quantity {
  color: var(--mcw-muted);
  line-height: 1;
  white-space: nowrap;
}
.mcw-checkout-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(239, 68, 68, 0.26);
  border-radius: 999px;
  color: #991b1b;
  background: rgba(254, 242, 242, 0.92);
  font-size: 0.86rem;
  font-weight: 880;
  text-decoration: none;
}
.mcw-checkout-remove:hover {
  color: #fff;
  background: #b91c1c;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: 100%;
  max-width: none;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 692px) minmax(300px, 340px);
  gap: 24px;
  align-items: start;
  justify-content: center;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100%;
  max-width: none;
  padding-right: 0;
  overflow: visible;
}
body.woocommerce-checkout .wc-block-components-sidebar {
  width: 100%;
  max-width: 340px;
  margin: 0;
}
body.woocommerce-checkout .wc-block-components-form,
body.woocommerce-checkout .wc-block-checkout__form,
body.woocommerce-checkout .wc-block-components-address-form {
  max-width: none;
}
body.woocommerce-checkout .wc-block-components-address-form {
  row-gap: 14px !important;
  column-gap: 14px !important;
}
body.woocommerce-checkout .wc-block-components-address-form .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-address-form .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-address-form .wc-block-components-country-input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox {
  margin-bottom: 12px !important;
}
body.woocommerce-checkout .wc-block-components-title,
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-sidebar h2 {
  display: block;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: var(--mcw-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
  overflow: visible;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-form textarea,
body.woocommerce-checkout .wc-block-components-form select {
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.46);
  border-radius: 12px;
  background: #fff;
  color: var(--mcw-ink);
  font-size: 1rem;
  line-height: 1.35;
  box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox label {
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border-color: rgba(188, 220, 234, 0.86);
  border-radius: 24px;
  box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-components-checkout-step {
  margin: 0 0 22px !important;
  padding: 28px 28px 30px !important;
  overflow: visible !important;
}
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wc-block-components-checkout-step {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.08);
}
body.woocommerce-checkout .wc-block-components-checkout-step__heading,
body.woocommerce-checkout .wc-block-components-checkout-step__container,
body.woocommerce-checkout .wc-block-components-checkout-step__content,
body.woocommerce-checkout .wc-block-components-address-form {
  margin-left: 0 !important;
  padding-left: 0 !important;
  overflow: visible !important;
}
body.woocommerce-checkout .wc-block-components-checkout-step__description {
  margin: 0 0 18px !important;
  color: var(--mcw-muted);
  line-height: 1.55;
}
body.woocommerce-checkout .wc-block-components-form .wc-block-components-checkout-step .wc-block-components-checkout-step__container::after {
  display: none;
}
body.woocommerce-checkout .wc-block-components-product-name,
body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  font-size: 0.92rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__description p,
body.woocommerce-checkout .wc-block-components-product-metadata {
  display: none;
}
body.woocommerce-checkout .wc-block-components-button:not(.is-link) {
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #071120, #0d566c);
  color: #fff;
  font-weight: 920;
}
body.woocommerce-checkout .wc-block-components-button:not(.is-link):hover {
  background: linear-gradient(135deg, #0d566c, #071120);
  color: #fff;
}
body.woocommerce-checkout .wc-block-components-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin: 18px 0;
}
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input {
  position: static !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  margin: 0 !important;
  opacity: 1 !important;
  appearance: auto;
}
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  display: none !important;
}
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__label {
  margin: 0 !important;
  color: var(--mcw-ink);
  font-size: 0.95rem;
  line-height: 1.35;
}
.mcw-checkout-terms {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(188, 220, 234, 0.86);
  border-radius: 14px;
  background: #f7fbfd;
  color: var(--mcw-ink);
  font-size: 0.92rem;
  line-height: 1.45;
}
.mcw-checkout-terms label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mcw-checkout-terms input {
  margin-top: 4px;
}
.mcw-checkout-terms a {
  color: #007fa8;
  font-weight: 800;
}
.mcw-legal-hero {
  background:
    radial-gradient(circle at 76% 14%, rgba(0, 184, 217, 0.22), transparent 32%),
    linear-gradient(135deg, #101827, #17455a);
}
.mcw-legal-section {
  background: #f5fbfe;
}
.mcw-legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 28px;
  align-items: start;
}
.mcw-legal-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(188, 220, 234, 0.86);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 39, 0.07);
}
.mcw-legal-aside strong {
  color: var(--mcw-ink);
  font-size: 1.05rem;
}
.mcw-legal-aside span {
  color: var(--mcw-muted);
  font-size: 0.9rem;
}
.mcw-legal-aside a:not(.mcw-btn) {
  color: #007fa8;
  font-weight: 800;
  text-decoration: none;
}
.mcw-legal-copy {
  display: grid;
  gap: 14px;
}
.mcw-legal-copy article {
  padding: 22px;
  border: 1px solid rgba(188, 220, 234, 0.78);
  border-radius: 18px;
  background: #fff;
}
.mcw-legal-copy h2 {
  margin: 0 0 10px;
  color: var(--mcw-ink);
  font-size: 1.1rem;
  line-height: 1.25;
}
.mcw-legal-copy p {
  margin: 0;
  color: #3d526b;
  font-size: 0.98rem;
  line-height: 1.72;
}

.mcw-final-cta {
  position: relative;
  padding: 118px 0;
  color: #fff;
  background:
    linear-gradient(135deg, #101827, #142947 56%, #0b8cab);
  text-align: center;
}
.mcw-final-cta p { max-width: 700px; margin: 18px auto 30px; color: rgba(255,255,255,0.78); }

.mcw-footer { color: #dce7f3; background: #101827; }
.mcw-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(150px, 0.55fr) minmax(210px, 0.75fr) minmax(180px, 0.6fr);
  gap: 34px;
  align-items: start;
}
.mcw-footer-about,
.mcw-footer-column {
  min-width: 0;
}
.mcw-footer-legal {
  grid-column: auto;
}
.mcw-footer p { color: #aab8ca; max-width: 420px; }
.mcw-footer h2 { margin: 0 0 14px; color: #fff; font-size: 1rem; }
.mcw-footer a { display: block; color: #c8d4e3; text-decoration: none; margin: 8px 0; }
.mcw-footer a:hover { color: var(--mcw-cyan); }
.mcw-footer-brand {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px !important;
}
.mcw-footer-logo {
  display: block;
  width: auto;
  height: 108px;
  max-width: min(100%, 390px);
  object-fit: contain;
}
.mcw-footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #aab8ca;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  body {
    padding-bottom: 72px;
  }
  .mcw-menu-toggle { display: inline-block; margin-left: auto; }
  .mcw-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    margin: 0;
    padding: 18px;
    background: linear-gradient(135deg, rgba(7, 17, 32, 0.98), rgba(13, 86, 108, 0.96));
    border: 1px solid rgba(188, 220, 234, 0.28);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(7, 17, 32, 0.28);
  }
  .mcw-nav.is-open { display: block; }
  .mcw-menu { display: grid; gap: 14px; }
  .mcw-nav .mcw-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #f3fbff !important;
    text-shadow: none;
  }
  .mcw-nav .mcw-menu a:hover,
  .mcw-nav .mcw-menu a:focus {
    background: #dffbff;
    color: #061626 !important;
  }
  .mcw-header-actions { display: none; }
  .mcw-floating-social {
    position: fixed;
    left: 50%;
    bottom: 14px;
    top: auto;
    right: auto;
    z-index: 80;
    display: inline-flex;
    width: auto;
    max-width: calc(100% - 28px);
    padding: 8px;
    border: 1px solid rgba(178, 238, 255, 0.26);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(7, 16, 31, 0.88), rgba(14, 72, 92, 0.78));
    box-shadow: 0 18px 48px rgba(5, 13, 24, 0.30);
    backdrop-filter: blur(22px) saturate(145%);
    transform: translateX(-50%);
  }
  .mcw-floating-social .mcw-social-link {
    width: 42px;
    height: 42px;
  }
  .mcw-floating-social .mcw-social-link svg {
    width: 19px;
    height: 19px;
  }
  .mcw-site-header { top: 10px; }
  .mcw-header-inner { border-radius: 28px; background: rgba(9, 18, 34, 0.84); }
  .mcw-hero-v4 { min-height: auto; padding: 126px 0 0; }
  .mcw-hero h1 { font-size: clamp(2.2rem, 9vw, 3.25rem); }
  .mcw-hero-actions,
  .mcw-capsule-row { justify-content: center; }
  .mcw-hero-metrics { grid-template-columns: 1fr; }
  .mcw-floating-card { display: none; }
  .mcw-experience-grid, .mcw-contact-grid, .mcw-proof-grid { grid-template-columns: 1fr; }
  .mcw-bento, .mcw-plan-grid, .mcw-process-grid, .mcw-route-grid, .mcw-metric-grid, .mcw-service-strip, .mcw-capsule-grid, .mcw-faq-grid, .mcw-value-grid, .mcw-proof-panel, .mcw-case-columns, .mcw-stack-grid, .mcw-dark-grid, .mcw-architecture-grid, .mcw-tech-cases, .mcw-contact-layout, .mcw-account-layout, .mcw-account-dashboard-grid { grid-template-columns: 1fr; }
  .mcw-case-card { padding: 24px; }
  .mcw-comparison-table { overflow-x: auto; }
  .mcw-comparison-row { min-width: 760px; }
  .mcw-bento-large, .mcw-bento-wide { grid-column: auto; grid-row: auto; }
  .mcw-plan-featured { transform: none; }
  .mcw-footer-inner { grid-template-columns: 1fr; }
  .mcw-footer-bottom { flex-direction: column; }
  .mcw-checkout-cart-review,
  body.woocommerce-checkout .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }
  .mcw-legal-layout {
    grid-template-columns: 1fr;
  }
  .mcw-legal-aside {
    position: static;
  }
  body.woocommerce-checkout .wc-block-components-sidebar {
    max-width: none;
  }
  body.mcw-shop-page .mcw-shop-seo-copy > div,
  .mcw-shop-shell .mcw-shop-seo-copy > div {
    grid-template-columns: 1fr;
  }
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.mcw-shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 760px);
    gap: 22px;
    padding-top: 34px;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  body.woocommerce-account .woocommerce-MyAccount-content .mcw-account-dashboard {
    padding: 26px;
  }
  .woocommerce div.product {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 28px;
  }
  .mcw-free-promo-card {
    grid-template-columns: 1fr;
  }
  .mcw-free-promo-copy,
  .mcw-free-promo-offer {
    text-align: center;
  }
  .mcw-free-eyebrow,
  .mcw-free-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .woocommerce div.product div.images img { min-height: 280px; }
  .mcw-error-section { padding: 120px 0 74px; }
  .mcw-error-actions { flex-direction: column; }
}

@media (max-width: 560px) {
  .mcw-container, .mcw-footer-inner, .mcw-footer-bottom { width: min(100% - 28px, 1180px); }
  .mcw-header-inner { width: calc(100% - 24px); }
  .mcw-brand-image { min-width: 154px; }
  .mcw-brand-logo { height: 38px; max-width: 164px; }
  body.single-product .mcw-site-header .mcw-brand-logo,
  body.woocommerce-checkout .mcw-site-header .mcw-brand-logo,
  body.woocommerce-cart .mcw-site-header .mcw-brand-logo { height: 38px !important; max-width: 164px !important; }
  .mcw-brand-text { font-size: 1rem; }
  .mcw-hero h1 { font-size: 2.2rem; }
  .mcw-btn { width: 100%; }
  .mcw-hero-actions { width: 100%; }
  .mcw-free-hosting-promo { padding: 28px 0 10px; }
  .mcw-free-promo-card {
    padding: 22px;
    border-radius: 24px;
  }
  .mcw-free-promo-card::before { inset: 10px; border-radius: 20px; }
  .mcw-free-promo-copy h2 { font-size: 2rem; }
  .mcw-free-promo-copy p:not(.mcw-free-eyebrow) { font-size: 0.98rem; }
  .mcw-free-promo-offer { padding: 20px; border-radius: 22px; }
  .mcw-free-promo-offer ul { grid-template-columns: 1fr; }
  .mcw-section, .mcw-route-section, .mcw-plans-section, .mcw-process-section, .mcw-content-section { padding: 72px 0; }
  .mcw-product-grid { grid-template-columns: 1fr; }
  .mcw-product-stat-wide, .mcw-product-list { grid-column: auto; }
  body.woocommerce-shop .mcw-main,
  body.post-type-archive-product .mcw-main,
  body.tax-product_cat .mcw-main,
  body.tax-product_tag .mcw-main,
  body.mcw-shop-page .mcw-main {
    width: calc(100% - 24px);
    padding-top: 108px;
  }
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.mcw-shop-page ul.products {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.mcw-shop-page ul.products li.product {
    padding: 12px;
    border-radius: 20px;
  }
  body.woocommerce-shop ul.products li.product .button,
  body.woocommerce-shop ul.products li.product .mcw-loop-buy-now,
  body.post-type-archive-product ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .mcw-loop-buy-now,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_cat ul.products li.product .mcw-loop-buy-now,
  body.tax-product_tag ul.products li.product .button,
  body.tax-product_tag ul.products li.product .mcw-loop-buy-now,
  body.mcw-shop-page ul.products li.product .button,
  body.mcw-shop-page ul.products li.product .mcw-loop-buy-now {
    font-size: 0.88rem;
    padding: 0 10px;
  }
  body.single-product .mcw-main { padding-top: 108px; }
  .woocommerce div.product { width: calc(100% - 24px); padding: 16px; border-radius: 22px; }
  .woocommerce div.product .product_title { font-size: 2.25rem; }
  .woocommerce div.product form.cart { padding: 14px; }
  .woocommerce div.product form.cart .button { width: 100%; }
  .woocommerce div.product .product_meta > span {
    border-radius: 16px;
  }
  body.single-product section.related.products ul.products,
  body.single-product section.upsells.products ul.products {
    grid-template-columns: 1fr;
  }
  .mcw-error-panel { border-radius: 24px; }
  .mcw-error-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .mcw-error-search input {
    min-height: 44px;
    text-align: center;
  }
  .woocommerce div.product .woocommerce-tabs .panel { padding: 18px; }
  .mcw-checkout-shell { width: calc(100% - 24px); }
  .mcw-checkout-hero { padding: 126px 0 54px; }
  .mcw-checkout-cart-review { padding: 18px; }
  .mcw-checkout-item {
    grid-template-columns: 56px 1fr;
  }
  .mcw-checkout-item-thumb {
    width: 56px;
    height: 48px;
  }
  .mcw-checkout-remove {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Promo hosting: final alignment guard for cached or inherited Woo/theme rules. */
.mcw-free-hosting-promo .mcw-free-actions,
.mcw-free-hosting-promo .mcw-free-promo-offer,
.mcw-free-hosting-promo .mcw-free-promo-offer span,
.mcw-free-hosting-promo .mcw-free-promo-offer strong,
.mcw-free-hosting-promo .mcw-free-promo-offer small,
.mcw-free-hosting-promo .mcw-free-promo-offer li {
  text-align: center !important;
}
.mcw-free-hosting-promo .mcw-free-actions {
  justify-content: flex-start !important;
}
.mcw-free-hosting-promo .mcw-free-actions .mcw-btn {
  justify-content: center !important;
  text-align: center !important;
}
.mcw-free-hosting-promo .mcw-free-promo-offer {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
.mcw-free-hosting-promo .mcw-free-promo-offer span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.mcw-free-hosting-promo .mcw-free-promo-offer strong,
.mcw-free-hosting-promo .mcw-free-promo-offer small {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.mcw-free-hosting-promo .mcw-free-promo-offer ul {
  width: 100% !important;
  justify-items: center !important;
}
.mcw-free-hosting-promo .mcw-free-promo-offer li {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}
