/* breadcrumbs */

.shop-breadcrumbs{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  padding-left: 26px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.06);
  margin: 0 0 14px;
  position: relative;
}

.shop-breadcrumbs::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62BD54;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.shop-breadcrumbs .asp-breadcrumbs__list{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-breadcrumbs .asp-breadcrumbs__link{
  color: #0b0b0b;
  text-decoration: none;
}
.shop-breadcrumbs .asp-breadcrumbs__link:hover{
  color: #62BD54;
}

.shop-breadcrumbs .asp-breadcrumbs__current{
  color: #0b0b0b;
}

.shop-breadcrumbs .asp-breadcrumbs__sep{
  margin-left: 4px;
}

@media (max-width: 768px){
  .shop-breadcrumbs{
    display: none !important;
  }
}



/* =========================================================
   SHOP HERO
========================================================= */
.shop-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
  overflow: hidden;
  background:
    radial-gradient(900px 560px at 10% 15%, rgba(98,189,84,0.20), transparent 62%),
    radial-gradient(980px 640px at 85% 10%, rgba(98,189,84,0.10), transparent 68%),
    radial-gradient(900px 600px at 80% 85%, rgba(11,11,11,0.02), transparent 72%),
    linear-gradient(135deg, #FFFFFF 0%, #F7FFF6 40%, #FFFFFF 100%);
}

.shop-hero__content {
  max-width: 1220px;
  margin: 0 auto;
}

.shop-hero__title {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #0b0b0b;
  letter-spacing: -0.02em;
}

.shop-hero__subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

@media (max-width:768px){
  .shop-hero {
    padding: 40px 0 40px;
  }
  
}


/* =========================================================
   GLOBAL PREVIEW BG
========================================================= */
.shop-page{
  --prod-preview-bg: #E6F6E7;
  --text: #121217;
  --muted: #6C6C89;
  --black: #62BD54;
  --accent: #62BD54;
}

/* =========================================================
   PRODUCT GRID (Woo) — 3 / 2 / 1
========================================================= */
.shop-products ul.products{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 70px;
  list-style: none;
  padding: 0;
  margin: 70px 0;
}

@media (max-width: 1200px){
  .shop-products ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 56px;
  }
}

@media (max-width: 992px){
  .shop-products ul.products{
    grid-template-columns: 1fr;
    row-gap: 44px;
    margin: 56px 0;
  }
}

/* =========================================================
   PRODUCT CARD
========================================================= */

/* Woo reset */
.shop-products ul.products li.product.asp-prod{
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: transform .18s ease;
}

.shop-products ul.products li.product.asp-prod:hover{
  transform: translateY(-2px);
}

.shop-products ul.products li.product.asp-prod .asp-prod__link{
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* =========================================================
   MEDIA (4:3) — background + “white window”
========================================================= */
.shop-products ul.products li.product.asp-prod .asp-prod__media{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 14px;
  aspect-ratio: 3 / 3;
  background:
    radial-gradient(280px 220px at 18% 18%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(320px 240px at 86% 22%, rgba(0,0,0,0.06), transparent 62%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--prod-preview-bg) 85%, white 15%) 0%,
      var(--prod-preview-bg) 55%,
      color-mix(in srgb, var(--prod-preview-bg) 85%, black 15%) 100%
    );
}

/* white frame */
.shop-products ul.products li.product.asp-prod .asp-prod__frame{
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

/* image */
.shop-products ul.products li.product.asp-prod .asp-prod__img,
.shop-products ul.products li.product.asp-prod .asp-prod__img-fallback{
  width: 100%;
  height: 100%;
  display: block;
}

/* like donor: contain */
.shop-products ul.products li.product.asp-prod .asp-prod__img{
  object-fit: contain;
  object-position: center;
  transition: transform .22s ease;
}

.shop-products ul.products li.product.asp-prod:hover .asp-prod__img{
  transform: scale(1.03);
}

.shop-products ul.products li.product.asp-prod .asp-prod__img-fallback{
  background: #fff;
}

/* badge */
.shop-products ul.products li.product.asp-prod .asp-prod__badge{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;

  border-radius: 999px;
  background: rgba(11,11,11,0.55);
  color: #fff;

  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shop-products ul.products li.product.asp-prod .asp-prod__badge::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   BODY / TYPOGRAPHY
========================================================= */
.shop-products ul.products li.product.asp-prod .asp-prod__body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0;
}

.shop-products ul.products li.product.asp-prod .asp-prod__top{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* 1) Title */
.shop-products ul.products li.product.asp-prod .asp-prod__title{
  margin: 0;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  white-space: normal;
}

/* 2) Price — column, del above, ins below, visible */
.shop-products ul.products li.product.asp-prod .asp-prod__price{
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}

/* old price */
.shop-products ul.products li.product.asp-prod .asp-prod__price del,
.shop-products ul.products li.product.asp-prod .asp-prod__price del .amount{
  color: rgba(11,11,11,0.55);
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
}

/* new price */
.shop-products ul.products li.product.asp-prod .asp-prod__price ins{
  text-decoration: none;
}
.shop-products ul.products li.product.asp-prod .asp-prod__price ins,
.shop-products ul.products li.product.asp-prod .asp-prod__price ins .amount{
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.shop-products ul.products li.product.asp-prod .asp-prod__price > .amount{
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

/* 3) Desc — no clipping */
.shop-products ul.products li.product.asp-prod .asp-prod__desc{
  margin: 10px 0 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-height: none;
  overflow: visible;
}

/* 4) CTA */
.shop-products ul.products li.product.asp-prod .asp-prod__cta{
  margin-top: auto;
  align-self: flex-end;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 768px){
  .shop-products ul.products{
    row-gap: 60px;
  }

  .shop-products ul.products li.product.asp-prod .asp-prod__frame{
    inset: 14px;
  }

  .shop-products ul.products li.product.asp-prod .asp-prod__title{
    font-size: 17px;
  }

  .shop-products ul.products li.product.asp-prod .asp-prod__desc{
    font-size: 15px;
  }

  .shop-products ul.products li.product.asp-prod .asp-prod__price del,
  .shop-products ul.products li.product.asp-prod .asp-prod__price del .amount{
    font-size: 14px;
  }

  .shop-products ul.products li.product.asp-prod .asp-prod__price ins,
  .shop-products ul.products li.product.asp-prod .asp-prod__price ins .amount,
  .shop-products ul.products li.product.asp-prod .asp-prod__price > .amount{
    font-size: 17px;
  }
}


/* =========================
   HOME FORM (новий стиль)
========================= */

.home-form {
  background: var(--c-green);
  padding: 70px 0;
}

.home-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fff3 40%, #f3fdf6 100%);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  border: 1px solid rgba(98, 189, 84, 0.1);
}


/* LEFT */
.home-form__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-form__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11,11,11,0.05);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  width: auto;
  align-self: flex-start;
}


.home-form__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62BD54;
}

.home-form__title {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
}

.home-form__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555b5f;
  max-width: 420px;
}

.home-form__bullets {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
}
.home-form__bullets li {
  font-size: 14px;
  line-height: 1.5;
  color: #3a3f42;
  position: relative;
  padding-left: 18px;
}
.home-form__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
}

/* RIGHT */
.home-form__box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgb(11 11 11 / 15%);
}

.home-form__box-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}
.home-form__box-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: #6b6f71;
}

/* FORM */
.home-form__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf7-row {
  display: flex;
  gap: 10px;
}
.cf7-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf7-field label {
  font-size: 13px;
  font-weight: 600;
}

.cf7-field input,
.cf7-field textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #dde1e6;
  background: #fff;
  transition: 0.2s;
}
.cf7-field input:focus,
.cf7-field textarea:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 1px rgba(98,189,84,0.25);
}
.cf7-field textarea {
  min-height: 80px;
  resize: vertical;
}

/* MESSENGERS */

.cf7-messenger-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1; /* чітке вирівнювання */
}

.cf7-messenger-option img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0; /* іконка не стискається */
}

.cf7-messenger-option span {
  font-size: 14px;
  color: #111;
  line-height: 1; /* щоб текст не “стрибає” */
  display: inline-block;
  transform: translateY(1px); /* дрібне вирівнювання по оптичному центру */
}

.cf7-messenger-option input[type="radio"] {
  display: none;
}

/* hover */
.cf7-messenger-option:hover {
  border-color: var(--c-green);
  background: rgba(98,189,84,0.06);
}


.cf7-messenger-option input[type="radio"]:checked ~ span {
  color: var(--c-green);
  font-weight: 600;
}

.cf7-messenger-option input[type="radio"]:checked ~ * {
  border-color: var(--c-green);
}

.cf7-messenger-option:has(input[type="radio"]:checked) {
  border-color: var(--c-green);
}


/* BUTTON */
.btn--black {
  border: none;
  border-radius: 999px;
  background: var(--c-black);
  color: #fff;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.btn--black:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .home-form__split {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

@media (max-width: 768px) {

  /* поля одне під одним */
  .cf7-row {
    flex-direction: column;
    gap: 14px;
  }

  .cf7-field input,
  .cf7-field textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  /* --- МЕСЕНДЖЕРИ --- */
  .cf7-messenger-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .cf7-messenger-option {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 10px 16px;
  }

  .cf7-messenger-option img {
    width: 22px;
    height: 22px;
  }

  .cf7-messenger-option span {
    font-size: 15px;
  }

  /* кнопка */
  .btn--black {
    font-size: 15px;
    padding: 14px 20px;
    width: 100%;
  }

  /* сам бокс */
  .home-form__box {
    padding: 22px 20px 26px;
  }
}
