body {
  font-family: "Montserrat", sans-serif;
}

.custom-bar {
  border-bottom: 1px solid #e5e7eb;
  background: #fbbf24;
  padding: 8px 16px;
}
.custom-bar p {
  max-width: 1284px;
  text-align: center;
  margin: 0 auto;
  color: #1f2937;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.summary-container {
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .summary-container {
    padding: 48px 16px;
  }
}

.summary {
  max-width: 822px;
  margin: 0 auto;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.summary-header {
  display: flex;
  background: #355c0f;
  flex-direction: column;
}
@media (min-width: 768px) {
  .summary-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.summary-header > * {
  width: 100%;
}
.summary-header > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.summary-header-content {
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .summary-header-content {
    padding: 32px 48px;
  }
}
.summary-header-content > img {
  width: 176px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.summary-header-content h1 {
  font-size: clamp(28px, 3.90625vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.summary-header-content p {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}

.summary-content {
  color: #111827;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .summary-content {
    padding: 40px 48px;
    gap: 32px;
  }
}
.summary-content h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.summary-info {
  border-radius: 4px;
  border-bottom: 4px solid #22c55e;
  background: #f0fdf4;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
}
.summary-info p {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.summary-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.old-price {
  color: #4b5563;
  text-align: center;
  font-size: clamp(18px, 2.734375vw, 24px);
  line-height: 1.5;
}

.new-price {
  color: #16a34a;
  text-align: center;
  font-size: clamp(28px, 4.1666666667vw, 36px);
  font-weight: 700;
  line-height: 1.1;
}

.summary-text {
  color: #4b5563;
  text-align: center;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  line-height: 1.5;
}

.summary-call {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.summary-badge {
  padding: 12px;
  border-radius: 100vmax;
  background: #dbeafe;
  text-align: center;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .summary-badge {
    padding: 12px 24px;
  }
}

.summary-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone__button,
.phone__button--open {
  display: block;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #f59e0b;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  will-change: transform, background-color;
}
.phone__button:hover,
.phone__button--open:hover {
  transform: scale(1.02);
  background-color: #fbbf24;
}
.phone__button:active,
.phone__button--open:active {
  transform: scale(0.98);
}
@media (min-width: 768px) {
  .phone__button,
  .phone__button--open {
    padding: 20px 48px;
  }
}
.phone__button.btn-hidden,
.phone__button--open.btn-hidden {
  display: none;
}/*# sourceMappingURL=summary.css.map */