/*
Theme Name: MIROMAX Bezpieczny Dom
Theme URI: https://miromax.pl
Author: MIROMAX
Author URI: https://miromax.pl
Description: Lekki motyw firmowy dla projektu MIROMAX Bezpieczny Dom.
Version: 1.0.3
Text Domain: miromax-bezpieczny-dom
*/

:root {
  --bg: #f7f4ee;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --green: #065f46;
  --green-dark: #022c22;
  --green-soft: #dff5ea;
  --amber: #facc15;
  --border: #e2e8f0;
  --dark: #020617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-logo-icon {
  width: 62px;
  height: 62px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(6, 95, 70, 0.14));
}

.brand-logo-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-logo-name {
  color: #052e2b;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-logo-sub {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #334155;
  font-size: 15px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(6, 95, 70, 0.18);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 62px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.25);
  filter: blur(65px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  border: 1px solid #bbf7d0;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 680px;
  color: #475569;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  color: var(--green);
  font-weight: 900;
}

.diagnostic-card {
  background: var(--white);
  padding: 16px;
  border-radius: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.diagnostic-inner {
  background: linear-gradient(145deg, #022c22, #065f46 52%, #020617);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 54px;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 25px;
}

.card-label {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 13px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 900;
}

.diagnostic-inner h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.diagnostic-inner p {
  color: rgba(236, 253, 245, 0.88);
}

.question-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.question {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #86efac;
  flex: 0 0 auto;
}

.card-button {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  color: var(--green-dark);
  padding: 16px 20px;
  font-weight: 900;
  font-size: 16px;
}

.section {
  padding: 74px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.section-head h2,
.split-text h2,
.checklist-copy h2,
.contact-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p,
.split-text p,
.checklist-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.package-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: 0 24px 60px rgba(2, 44, 34, 0.18);
}

.ribbon {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--amber);
  color: var(--dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 950;
}

.package-kicker {
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 950;
}

.featured .package-kicker {
  color: #bbf7d0;
}

.package-card h3 {
  margin: 12px 0 0;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.price {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 950;
}

.package-card p {
  color: var(--muted);
}

.featured p {
  color: rgba(236, 253, 245, 0.86);
}

.package-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.package-card li {
  display: flex;
  gap: 10px;
  font-size: 15px;
}

.package-card li:before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.featured li:before {
  color: #bbf7d0;
}

.package-card .btn {
  width: 100%;
  margin-top: 28px;
}

.how {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 15px;
}

.step {
  display: flex;
  gap: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 20px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 950;
  flex: 0 0 auto;
}

.step h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.checklist-box {
  overflow: hidden;
  border-radius: 42px;
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.checklist-copy {
  padding: clamp(32px, 5vw, 68px);
}

.checklist-copy p {
  color: rgba(226, 232, 240, 0.86);
}

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

.mini-benefit {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  font-size: 14px;
  font-weight: 800;
}

.form-panel {
  background: var(--white);
  color: var(--text);
  padding: clamp(24px, 4vw, 44px);
}

.form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 26px;
}

.form-box h3 {
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.field label {
  font-size: 14px;
  color: #334155;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.09);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact {
  background: var(--green);
  color: var(--white);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact-copy p {
  color: rgba(236, 253, 245, 0.9);
}

.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
  font-weight: 950;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.miromax-lead-alert {
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.5;
}

.miromax-lead-alert.success {
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
}

.miromax-lead-alert.error {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

.miromax-lead-form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.55;
  color: #475569;
}

.miromax-lead-form .checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.miromax-lead-form .btn {
  width: 100%;
}

.miromax-hidden,
.miromax-honeypot,
.miromax-hidden label,
.miromax-hidden input,
.miromax-honeypot label,
.miromax-honeypot input {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 38px;
}

.page-hero:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.2);
  filter: blur(65px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 22px 0 0;
  max-width: 900px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.page-content-section {
  padding: 24px 0 76px;
}

.page-content-card {
  max-width: 920px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.page-content-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.page-content-card h2:first-child {
  margin-top: 0;
}

.page-content-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.page-content-card p,
.page-content-card li {
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
}

.page-content-card ul,
.page-content-card ol {
  padding-left: 22px;
}

.page-content-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content-card strong {
  color: var(--text);
}



/* MIROMAX - smart home i monitoring bezpieczeństwa */
.smart-home-section {
  padding-top: 40px;
}

.smart-home-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
  border-radius: 42px;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 48%, #eff6ff 100%);
  border: 1px solid rgba(6, 95, 70, 0.16);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.smart-home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.smart-home-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.smart-home-copy p {
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.smart-home-note {
  margin: 22px 0 26px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 18px 18px 0;
  padding: 16px 18px;
  color: #334155;
  font-weight: 700;
  line-height: 1.65;
}

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

.smart-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.smart-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 16px;
}

.smart-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.smart-card p {
  margin-bottom: 0;
  color: #64748b;
}


/* MIROMAX - system doradczo-ofertowy */
.offer-flow-section {
  padding-top: 40px;
}

.offer-flow-head {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.offer-flow-head h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.offer-flow-head p {
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.offer-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.offer-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.offer-number {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 16px;
}

.offer-step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.offer-step p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.offer-flow-summary {
  margin: 28px auto 0;
  max-width: 920px;
  border-radius: 24px;
  background: #ecfdf5;
  border: 1px solid rgba(6, 95, 70, 0.18);
  color: #334155;
  padding: 20px 24px;
  line-height: 1.7;
  text-align: center;
}

.offer-flow-summary strong {
  color: var(--green-dark);
}

@media (max-width: 1100px) {
  .offer-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .offer-flow-grid {
    grid-template-columns: 1fr;
  }

  .offer-step:last-child {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .smart-home-box,
  .smart-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .checklist-box {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .mini-benefits {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 74px;
  }

  .header-inner > .btn {
    display: none;
  }

  .brand-logo-icon {
    width: 52px;
    height: 52px;
  }

  .brand-logo-name {
    font-size: 20px;
  }

  .brand-logo-sub {
    font-size: 9px;
  }

  .hero {
    padding-top: 48px;
  }

  .diagnostic-inner {
    padding: 24px;
  }

  .card-top {
    margin-bottom: 34px;
  }

  .section {
    padding: 54px 0;
  }

  .page-hero {
    padding: 48px 0 26px;
  }

  .page-content-section {
    padding-bottom: 54px;
  }
}



/* MIROMAX - szablon sklepu doradczo-ofertowego */
.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
}

.shop-hero:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 48%;
  width: 460px;
  height: 460px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.2);
  filter: blur(65px);
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 34px;
  align-items: center;
}

.shop-hero h1 {
  margin: 22px 0 0;
  max-width: 860px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.shop-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.shop-advisor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.shop-advisor-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.shop-advisor-card ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #475569;
}

.shop-advisor-card li {
  margin: 8px 0;
}

.shop-content-section {
  padding: 20px 0 78px;
}

.shop-content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.woocommerce .woocommerce-breadcrumb {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 22px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  background: var(--white);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product.miromax-product-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.miromax-product-image {
  display: block;
  background: #ffffff;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
}

.miromax-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.miromax-product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.miromax-product-desc {
  color: #64748b;
  margin: 12px 0 0;
  line-height: 1.65;
}

.miromax-product-price {
  margin: 16px 0 0;
  font-weight: 950;
  color: var(--green-dark);
  font-size: 20px;
}

.miromax-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.miromax-product-actions .btn {
  width: 100%;
  padding: 12px 16px;
}

.miromax-product-note {
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
}

.woocommerce div.product div.images img {
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.woocommerce div.product .product_title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 950;
}

.woocommerce div.product form.cart {
  border-radius: 26px;
  background: #ecfdf5;
  border: 1px solid rgba(6, 95, 70, 0.16);
  padding: 22px;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px !important;
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 850 !important;
  padding: 14px 22px !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

@media (max-width: 980px) {
  .shop-hero-inner,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    padding: 48px 0 28px;
  }
}
