/* Cvreoz — editorial / warm stone theme (redesign) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&display=swap');

:root {
    --bg-page: #f6f3ef;
    --bg-card: #fffcf8;
    --bg-elevated: #ffffff;
    --ink: #1a1614;
    --ink-muted: #57534e;
    --ink-soft: #78716c;
    --line: #e0dbd4;
    --accent: #b45309;
    --accent-dark: #92400e;
    --accent-soft: rgba(180, 83, 9, 0.12);
    --forest: #3f6212;
    --hero-wash: #fff5eb;
    --radius: 12px;
    --radius-sm: 8px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 22, 20, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg-page);
    font-optical-sizing: auto;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

/* —— Header —— */
.header {
    background: var(--bg-elevated);
    color: var(--ink);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    color: var(--accent);
}

.header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
}

.header-nav a {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.header-nav a:hover {
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-color: rgba(180, 83, 9, 0.25);
}

/* —— Hero —— */
.hero {
    background: linear-gradient(165deg, var(--hero-wash) 0%, var(--bg-page) 55%, var(--bg-page) 100%);
    color: var(--ink);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40% 40% auto -30%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(180, 83, 9, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 36rem;
}

.hero-badge {
    display: inline-block;
    color: var(--accent-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
    border: 2px solid var(--accent);
    background: var(--bg-elevated);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--ink);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.55;
    max-width: 32rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-image {
    margin-top: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 10% -8% -6% 8%;
    border: 2px solid var(--accent);
    border-radius: calc(var(--radius) + 6px);
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Section headers */
.section-header {
    text-align: left;
    margin-bottom: 2.75rem;
    max-width: 720px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.section-intro-text {
    font-size: 1.02rem;
    color: var(--ink-muted);
    margin-top: 1.25rem;
    line-height: 1.85;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
}

/* Product */
.product-section {
    padding: 4.5rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.product-section .section-intro-text {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-page);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    border-radius: var(--radius);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-elevated);
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 12px 16px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 999px;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: var(--accent-soft);
    border-color: rgba(180, 83, 9, 0.35);
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-dots {
    text-align: center;
    padding: 16px 0 0;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 28px;
    margin: 0 4px;
    background-color: var(--line);
    border-radius: 999px;
    display: inline-block;
    transition: background 0.2s;
    border: none;
}

.dot.active,
.dot:hover {
    background-color: var(--accent);
}

.product-badge {
    display: inline-block;
    background: var(--forest);
    color: #f7fee7;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-info h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
    color: var(--ink);
    font-weight: 700;
}

.product-description {
    margin-bottom: 1.5rem;
    color: var(--ink-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.product-comfort-info {
    background: var(--bg-page);
    padding: 1.5rem 1.65rem;
    border-radius: var(--radius);
    margin-bottom: 1.75rem;
    border: 1px solid var(--line);
}

.product-comfort-info h3 {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-comfort-info p {
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
}

.product-comfort-info p:last-child {
    margin-bottom: 0;
}

.product-features {
    margin-bottom: 1.75rem;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: box-shadow 0.2s;
}

.feature:hover {
    box-shadow: var(--shadow-sm);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(180, 83, 9, 0.22);
}

.feature-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.feature-text strong {
    display: block;
    color: var(--ink);
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}

.feature-text p {
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
    font-size: 0.92rem;
}

.btn-primary {
    background: var(--accent-dark);
    color: #fffef9;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 2px 0 #713f12;
}

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

.cta-section {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}

.btn-cta {
    max-width: 380px;
    margin: 0 auto;
    font-size: 1.08rem;
    padding: 1.1rem 2rem;
    display: inline-block;
    width: auto;
    min-width: 280px;
}

/* Benefits */
.benefits-section {
    padding: 4.5rem 0;
    background: var(--bg-page);
}

.benefits-section .section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
}

.benefit-item {
    background: var(--bg-elevated);
    padding: 1.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
    border-top: 3px solid var(--accent);
}

.benefit-item:hover {
    border-color: rgba(180, 83, 9, 0.35);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.benefit-item h3 {
    font-family: var(--font-display);
    margin-bottom: 0.65rem;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    padding: 4.5rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--line);
}

.how-it-works .section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.step-item {
    background: var(--bg-elevated);
    padding: 1.85rem 1.5rem;
    border-radius: var(--radius);
    border: 1px dashed var(--line);
    text-align: left;
    position: relative;
}

.step-item:hover {
    border-style: solid;
    border-color: rgba(180, 83, 9, 0.35);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--ink);
    color: #fafaf9;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-body);
    margin: 0 0 1rem 0;
}

.step-item h3 {
    font-family: var(--font-display);
    margin-bottom: 0.6rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 600;
}

.step-item p {
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.usage-note {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    max-width: 100%;
}

.usage-note p {
    color: #78350f;
    margin: 0;
    line-height: 1.75;
    font-size: 0.98rem;
}

/* Ingredients */
.ingredients-section {
    padding: 4.5rem 0;
    background: var(--bg-page);
}

.ingredients-section .section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.ingredient-item {
    background: var(--bg-elevated);
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.ingredient-item:hover {
    box-shadow: var(--shadow-md);
}

.ingredient-image {
    height: 200px;
    margin: 0;
    border-radius: 0;
}

.ingredient-item h3,
.ingredient-item p {
    padding: 0 1.25rem;
}

.ingredient-item h3 {
    font-family: var(--font-display);
    padding-top: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 600;
}

.ingredient-item p {
    padding-bottom: 1.25rem;
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* Why choose */
.why-choose-section {
    padding: 4rem 0;
    background: var(--ink);
    color: #e7e5e4;
}

.why-choose-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-section .section-title {
    color: #fafaf9;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.85rem;
    max-width: 1040px;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 252, 248, 0.06);
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 252, 248, 0.12);
}

.why-choose-item:hover {
    background: rgba(255, 252, 248, 0.1);
}

.check-icon {
    color: #fbbf24;
    font-size: 1.15rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.why-choose-item span:last-child {
    color: #d6d3d1;
    line-height: 1.55;
    font-size: 0.93rem;
}

/* Guarantee */
.guarantee {
    padding: 4.5rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--line);
}

.guarantee .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.guarantee-item {
    background: var(--bg-elevated);
    padding: 1.65rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-align: left;
}

.guarantee-icon {
    font-size: 2.25rem;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.guarantee-item h3 {
    font-family: var(--font-display);
    margin-bottom: 0.55rem;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 600;
}

.guarantee-item p {
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* FAQ */
.faq {
    padding: 4.5rem 0;
    background: var(--bg-page);
}

.faq .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.35rem 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-item:hover {
    border-color: rgba(180, 83, 9, 0.3);
}

.faq-item h3 {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--ink-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
    background: var(--hero-wash);
    border-top: 1px solid var(--line);
    color: var(--ink);
}

.contact-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--ink);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
    background: var(--bg-elevated);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact-icon {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
}

.contact-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.contact-item strong a {
    color: var(--accent-dark);
    text-decoration: none;
}

.contact-item strong a:hover {
    text-decoration: underline;
}

.contact-item span {
    color: var(--ink-muted);
    font-size: 0.9rem;
}

/* —— Footer (redesigned: light band, asymmetric grid) —— */
.footer {
    background: #fffcf7;
    color: var(--ink);
    padding: 0;
    border-top: 4px solid var(--accent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem 2.5rem;
    padding-top: 2.75rem;
    padding-bottom: 1.5rem;
}

.footer-panel--identity {
    grid-column: 1;
}

.footer-panel--health {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.footer-panel--direct {
    grid-column: 1;
    grid-row: 2;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-info {
    margin: 0;
}

.legal-info p {
    color: var(--ink-muted);
    margin-bottom: 0.4rem;
    line-height: 1.65;
    font-size: 0.92rem;
}

.legal-info strong {
    color: var(--ink);
    font-weight: 600;
}

.health-notice {
    background: var(--bg-page);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    height: fit-content;
}

.health-notice h4 {
    font-family: var(--font-display);
    color: var(--ink);
    margin-bottom: 0.65rem;
    font-size: 1rem;
    font-weight: 600;
}

.health-notice p {
    color: var(--ink-muted);
    line-height: 1.75;
    font-size: 0.88rem;
}

.contact-info-footer {
    background: var(--bg-elevated);
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

.contact-info-footer p {
    color: var(--ink-muted);
    margin-bottom: 0.4rem;
    line-height: 1.65;
    font-size: 0.9rem;
}

.contact-info-footer strong {
    color: var(--ink);
}

.contact-info-footer a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding: 1.25rem 0 2rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-links a {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent);
}

.footer-bottom p {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

/* Testimonials (unused on current pages — keep tidy) */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-page);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.testimonial-item {
    background: var(--bg-elevated);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex;
    gap: 1.25rem;
}

/* Legal pages */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 55vh;
    background: var(--bg-page);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--ink);
    font-weight: 700;
}

.legal-page section {
    margin-bottom: 1.25rem;
    background: var(--bg-elevated);
    padding: 1.75rem 1.85rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    color: var(--ink);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    margin-top: 1.15rem;
    color: var(--ink);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.legal-page ul {
    margin-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.legal-page ul li {
    margin-bottom: 0.4rem;
    color: var(--ink-muted);
}

.legal-page a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page a:hover {
    color: var(--accent);
}

.withdrawal-form {
    background: var(--bg-page);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    border: 1px dashed var(--line);
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        max-width: none;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .application-steps {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-panel--health {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-panel--direct {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
    }

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

    .benefits-grid,
    .ingredients-grid,
    .guarantee-content,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-slides {
        height: 300px;
    }

    .testimonial-item {
        flex-direction: column;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.product-image img,
.carousel-slide img {
    background-color: var(--bg-page);
    min-height: 160px;
    display: block;
}
