body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f3eb;
  color: #24352d;
}

h1 {
  font-size: 52px;
  margin-bottom: 12px;
}

h2 {
  font-size: 30px;
  margin-top: 45px;
}

p {
  font-size: 18px;
  line-height: 1.6;
}

button {
  background: #24352d;
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hero {
  background: #eef3ed;
  padding: 56px 48px;
  border-radius: 24px;
  margin-bottom: 48px;
}

.hero-text {
  max-width: 620px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-image {
  flex: 1;
  min-height: 320px;  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  width: 420px;
  height: auto;
  display: block;
}@media (max-width: 768px) {
  .hero {
    flex-direction: column;gap: 20px;
    padding: 20px 20px;
  }
.hero-image img {
  width: 280px;
}
.hero-image {
  min-height: auto;
}
}@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  h2 {
  margin-top: 20px;
}

  p {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero {
    margin-bottom: 8px;
  }

  .hero-image img {
    width: 240px;
  }
}#order-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

#order-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#order-form button {
  width: 100%;
}

/* ===== NEW HERO — CLAUDE STYLE ===== */

body {
    background: #f6f0e3;
    color: #183d31;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 22px 60px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 30px;

    background:
        radial-gradient(circle at 85% 20%, rgba(210, 174, 92, 0.18), transparent 32%),
        linear-gradient(135deg, #f7f0df 0%, #ede2c8 100%);

    border: 1px solid rgba(25, 61, 49, 0.14);
    border-radius: 30px;
    padding: 58px 54px;
    margin-bottom: 42px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(33, 48, 38, 0.10);
}

.hero-text {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;

    color: #a56f45;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.hero-label::before {
    content: "";
    width: 48px;
    height: 2px;
    background: #c59a4b;
}

.hero h1 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: #173d31;
}

.hero h1 span {
    color: #c29a52;
    font-style: italic;
}

.hero-description {
    max-width: 570px;
    margin: 0 0 26px;
    font-size: 20px;
    line-height: 1.55;
    color: #4f554f;
}

.hero-offer {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.hero-offer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1;
    color: #173d31;
}

.hero-offer span {
    font-size: 16px;
    color: #6d6d65;
}

.hero-button {
    display: inline-block;
    text-decoration: none;
    background: #173d31;
    color: #fff;
    padding: 17px 28px;
    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;

    box-shadow: 0 10px 24px rgba(23, 61, 49, 0.18);
}

.hero-image {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    filter: blur(1px);
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 360px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 22px rgba(0,0,0,0.20));
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .container {
        padding: 16px 14px 40px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 30px 24px 26px;
        border-radius: 22px;
        text-align: left;
    }

    .hero-text {
        max-width: none;
    }

    .hero-label {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hero-label::before {
        width: 34px;
    }

    .hero h1 {
        font-size: 44px;
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-offer {
        margin-bottom: 18px;
    }

    .hero-offer strong {
        font-size: 42px;
    }

    .hero-offer span {
        font-size: 14px;
    }

    .hero-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 17px 18px;
    }

    .hero-image {
        min-height: 300px;
        margin-top: 4px;
    }

    .hero-image::before {
        width: 250px;
        height: 250px;
    }

    .hero-image img {
        width: 245px;
    }
}
/* ===== CLAUDE-STYLE CONTENT BLOCKS ===== */

.why-section,
.order-steps,
.order-section {
    margin-top: 42px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading span,
.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #b77b52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.section-heading h2,
.order-steps h2,
.order-section h2,
.lifestyle-section h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.05;
    color: #173d31;
}

.section-heading p,
.order-steps p,
.order-section p,
.lifestyle-section p {
    color: #5c625c;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(23, 61, 49, 0.16);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.38);
}

.ingredient-card {
    padding: 28px;
    min-height: 190px;
    border-right: 1px solid rgba(23, 61, 49, 0.12);
    border-bottom: 1px solid rgba(23, 61, 49, 0.12);
}

.ingredient-card:nth-child(2n) {
    border-right: none;
}

.ingredient-card:nth-child(3),
.ingredient-card:nth-child(4) {
    border-bottom: none;
}

.ingredient-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #173d31;
    color: #d7b36a;
    font-size: 24px;
}

.ingredient-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    color: #173d31;
}

.ingredient-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #62675f;
}

.lifestyle-section {
    margin-top: 42px;
    border-radius: 24px;
    padding: 42px;
    background:
        linear-gradient(rgba(20,55,45,0.82), rgba(20,55,45,0.82)),
        linear-gradient(135deg, #335c4e, #173d31);
    color: white;
}

.lifestyle-section .section-kicker {
    color: #e2bf78;
}

.lifestyle-section h2 {
    color: white;
}

.lifestyle-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.lifestyle-points > div {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}

.lifestyle-points strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    color: #f3d28a;
}

.lifestyle-points p {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.step-card {
    padding: 28px 24px;
    border: 1px solid rgba(23,61,49,0.13);
    border-radius: 18px;
    background: #fbf7ed;
}

.step-card > span {
    display: block;
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1;
    color: #c59a4b;
    font-style: italic;
}

.step-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: #173d31;
}

.step-card p {
    margin: 0;
}

.order-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: center;
    padding: 38px;
    border-radius: 24px;
    background: #ede3cc;
    border: 1px solid rgba(23,61,49,0.12);
}

.order-price {
    margin: 6px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 1;
    color: #173d31;
}

.order-section form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
}

.order-section input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 15px;
    border: 1px solid rgba(23,61,49,0.18);
    border-radius: 9px;
    background: #fffdf8;
    font-size: 16px;
}

.order-section button {
    width: 100%;
    padding: 17px;
    border-radius: 9px;
    background: #173d31;
    color: white;
    font-size: 17px;
}


/* ===== MOBILE CONTENT ===== */

@media (max-width: 768px) {

    .why-section,
    .order-steps,
    .order-section,
    .lifestyle-section {
        margin-top: 30px;
    }

    .section-heading h2,
    .order-steps h2,
    .order-section h2,
    .lifestyle-section h2 {
        font-size: 30px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ingredient-card {
        padding: 20px 16px;
        min-height: 180px;
    }

    .ingredient-card h3 {
        font-size: 22px;
    }

    .ingredient-card p {
        font-size: 15px;
    }

    .lifestyle-section {
        padding: 28px 20px;
    }

    .lifestyle-points {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .lifestyle-points > div {
        padding: 16px;
    }

    .lifestyle-points strong {
        font-size: 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step-card {
        padding: 22px 20px;
    }

    .step-card > span {
        font-size: 46px;
    }

    .order-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 18px;
    }

    .order-price {
        font-size: 54px;
    }

    .order-section form {
        padding: 18px;
    }
}
/* ===== REVIEWS ===== */

.reviews-section {
    margin-top: 42px;
}

.reviews-section > h2 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.05;
    color: #173d31;
}

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

.review-card {
    padding: 26px;
    border-radius: 18px;
    background: #fbf7ed;
    border: 1px solid rgba(23,61,49,0.12);
    box-shadow: 0 10px 28px rgba(30, 45, 35, 0.06);
}

.review-stars {
    margin-bottom: 18px;
    color: #c59a4b;
    font-size: 22px;
    letter-spacing: 2px;
}

.review-card p {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.5;
    font-style: italic;
    color: #34483f;
}

.review-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 17px;
    color: #173d31;
}

.review-card > span {
    color: #85867f;
    font-size: 15px;
}

@media (max-width: 768px) {
    .reviews-section {
        margin-top: 30px;
    }

    .reviews-section > h2 {
        font-size: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .review-card {
        padding: 22px 20px;
    }

    .review-card p {
        font-size: 18px;
    }
}
/* ===== FAQ ===== */

.faq-section {
    margin-top: 42px;
}

.faq-section > h2 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.05;
    color: #173d31;
}

.faq-list {
    border-top: 1px solid rgba(23,61,49,0.14);
}

.faq-list details {
    border-bottom: 1px solid rgba(23,61,49,0.14);
    padding: 0;
}

.faq-list summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 24px 46px 24px 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    color: #173d31;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    color: #c59a4b;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "×";
}

.faq-list details p {
    max-width: 820px;
    margin: 0;
    padding: 0 46px 24px 0;

    font-size: 17px;
    line-height: 1.6;
    color: #62675f;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 30px;
    }

    .faq-section > h2 {
        font-size: 30px;
    }

    .faq-list summary {
        padding: 20px 38px 20px 0;
        font-size: 21px;
    }

    .faq-list details p {
        padding: 0 38px 20px 0;
        font-size: 16px;
    }
}
/* ===== FINAL CTA + FOOTER ===== */

.final-cta {
    margin-top: 42px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(rgba(20,55,45,0.72), rgba(20,55,45,0.86)),
        linear-gradient(135deg, #2f5a4a, #173d31);
}

.final-cta-overlay {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
    align-items: center;
    padding: 44px;
}

.final-cta-copy .section-kicker {
    color: #e0bd72;
}

.final-cta-copy h2 {
    margin: 0 0 16px;
    max-width: 620px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.05;
    color: #ffffff;
}

.final-cta-copy p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.6;
}

.final-order-card {
    padding: 26px;
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.final-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
}

.old-price {
    color: #8e8e86;
    font-size: 20px;
    text-decoration: line-through;
}

.final-price strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    color: #173d31;
}

.final-order-card > p {
    margin: 0 0 18px;
    color: #6c6d66;
}

.final-order-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-order-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 15px;
    border: 1px solid rgba(23,61,49,0.18);
    border-radius: 9px;
    background: #fffdf8;
    font-size: 16px;
}

.final-order-card button {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 9px;
    background: #173d31;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.final-order-card small {
    display: block;
    margin-top: 12px;
    text-align: center;
    color: #777870;
    font-size: 14px;
}

.site-footer {
    margin-top: 28px;
    padding: 28px 0 10px;
}

.footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(23,61,49,0.14);
}

.footer-trust span {
    text-align: center;
    color: #173d31;
    font-weight: 600;
    font-size: 15px;
}

.site-footer > p {
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    color: #85867f;
    font-size: 13px;
    line-height: 1.55;
}


/* ===== MOBILE FINAL ===== */

@media (max-width: 768px) {

    .final-cta {
        margin-top: 30px;
    }

    .final-cta-overlay {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 20px;
    }

    .final-cta-copy h2 {
        font-size: 36px;
    }

    .final-cta-copy p {
        font-size: 16px;
    }

    .final-order-card {
        padding: 20px 18px;
    }

    .final-price strong {
        font-size: 46px;
    }

    .footer-trust {
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
    }

    .site-footer > p {
        font-size: 12px;
        padding: 0 6px;
    }
}
/* Hero pain points */
.hero-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.hero-points li {
    position: relative;
    padding-left: 27px;
    font-size: 17px;
    line-height: 1.45;
    color: #4b4b43;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 14px;
    height: 1px;
    background: #c9a45c;
}
/* Hero visual: lifestyle + real product */
.hero-visual {
    position: relative;
    width: 100%;
    align-self: center;
}

.hero-life {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.hero-bottle {
    position: absolute;
    width: 52%;
    max-width: 230px;
    height: auto;

    left: -18%;
    bottom: -8%;

    z-index: 3;

    

    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.22));
}

@media (max-width: 700px) {
    .hero-visual {
        margin-top: 22px;
    }

    .hero-life {
        width: 100%;
        height: auto;
    }

    .hero-bottle {
        width: 29%;
        left: 2%;
        bottom: 2%;
    }
}
@media (max-width: 700px) {
    .hero-points {
        display: none;
    }

    .hero-visual {
        margin-top: 16px;
        margin-bottom: 18px;
    }

    .hero-life {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}
    .hero-bottle {
        width: 38%;
        left: -2%;
        bottom: -5%;
    }
}
.hero {
    display: flex;
    flex-direction: column;
}

.hero-text {
    display: contents;
}

.hero-label {
    order: 1;
}

.hero h1 {
    order: 2;
}

.hero-description {
    order: 3;
}

.hero-visual {
    order: 4;
}

.hero-offer {
    order: 5;
}

.hero-button {
    order: 6;
}
/* ==================================================
   FINAL SALES HERO
   Desktop + Mobile
   ================================================== */

.sales-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 58px 54px;

    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    align-items: center;
    gap: 52px;

    background: #f7f2e6;
    border-radius: 28px;
    overflow: hidden;
}

.sales-hero__copy {
    min-width: 0;
}

.sales-hero__label {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a76b4f;
}

.sales-hero__label::before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    margin-right: 12px;
    vertical-align: middle;
    background: #c9a45c;
}

.sales-hero__title {
    margin: 0 0 20px;

    max-width: 650px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4.3vw, 70px);
    line-height: 0.98;
    font-weight: 600;

    color: #214737;
}

.sales-hero__title span {
    display: block;
    color: #c9a45c;
    font-style: italic;
}

.sales-hero__description {
    margin: 0 0 24px;
    max-width: 650px;

    font-size: 18px;
    line-height: 1.55;

    color: #51534d;
}

.sales-hero__points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sales-hero__points li {
    position: relative;
    padding-left: 28px;

    font-size: 16px;
    line-height: 1.42;

    color: #54574f;
}

.sales-hero__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;

    width: 15px;
    height: 1px;

    background: #c9a45c;
}

.sales-hero__offer {
    margin: 0 0 16px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.sales-hero__offer strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;

    color: #214737;
}

.sales-hero__offer span {
    font-size: 15px;
    color: #6e7069;
}

.sales-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 30px;

    border-radius: 7px;

    background: #16583f;
    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;

    box-shadow: 0 10px 24px rgba(22, 88, 63, 0.16);
}

.sales-hero__visual {
    position: relative;
    width: 100%;
    min-width: 0;
}

.sales-hero__life {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 22px;
}

.sales-hero__bottle {
    position: absolute;

    width: 43%;
    max-width: 230px;
    height: auto;

    left: -13%;
    bottom: -7%;

    z-index: 2;

    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
}

.sales-hero__visual--mobile {
    display: none;
}


/* ==========================
   MOBILE
   ========================== */

@media (max-width: 700px) {

    .sales-hero {
        width: 100%;
        max-width: none;

        margin: 0;
        padding: 26px 20px 22px;

        display: block;

        border-radius: 20px;
    }

    .sales-hero__label {
        margin-bottom: 13px;

        font-size: 10px;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }

    .sales-hero__label::before {
        width: 22px;
        margin-right: 8px;
    }

    .sales-hero__title {
        margin-bottom: 14px;

        max-width: none;

        font-size: clamp(37px, 10vw, 47px);
        line-height: 0.97;
    }

    .sales-hero__description {
        margin-bottom: 16px;

        max-width: none;

        font-size: 15px;
        line-height: 1.42;
    }

    .sales-hero__points {
        display: none;
    }

    .sales-hero__visual--desktop {
        display: none;
    }

    .sales-hero__visual--mobile {
        display: block;

        height: auto;
        margin: 0 0 14px;

        border-radius: 16px;
        overflow: visible;
    }

    
.hero-life {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

    .sales-hero__bottle {
        width: 33%;
        max-width: 135px;

        left: -1%;
        bottom: -5%;
    }

    .sales-hero__offer {
        margin: 0 0 11px;

        gap: 12px;
    }

    .sales-hero__offer strong {
        font-size: 39px;
    }

    .sales-hero__offer span {
        font-size: 13px;
    }

    .sales-hero__button {
        width: 100%;
        min-height: 54px;
        padding: 0 15px;

        font-size: 15px;
    }
}


/* Smaller phones */
@media (max-width: 380px) {

    .sales-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sales-hero__title {
        font-size: 35px;
    }

    .sales-hero__visual--mobile,
    .sales-hero__life {
        height: 165px;
    }

    .sales-hero__description {
        font-size: 14px;
    }

    .sales-hero__offer strong {
        font-size: 36px;
    }
}