/* Hey Nature — editorial redesign */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0c0f14;
    --ink-soft: #1a2230;
    --muted: #5c6578;
    --fog: #e8ecf4;
    --cream: #f4f1ec;
    --paper: #fdfcfa;
    --accent: #c45c3e;
    --accent-deep: #9a3d26;
    --accent-glow: rgba(196, 92, 62, 0.22);
    --sage: #3d5a4c;
    --line: rgba(12, 15, 20, 0.08);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-body: "Lora", Georgia, "Times New Roman", serif;
    --font-heading: "Libre Baskerville", Georgia, "Times New Roman", serif;
    --shadow-soft: 0 24px 60px rgba(12, 15, 20, 0.12);
    --shadow-card: 0 8px 32px rgba(12, 15, 20, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

body.site-main {
    background:
        radial-gradient(ellipse 120% 80% at 100% -20%, rgba(196, 92, 62, 0.09), transparent 50%),
        radial-gradient(ellipse 80% 50% at -10% 30%, rgba(61, 90, 76, 0.07), transparent 45%),
        var(--paper);
}

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

/* —— Header —— */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.logo-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--sage));
    flex-shrink: 0;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
    color: var(--ink);
    background: var(--fog);
}

/* —— Hero —— */
.hero {
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--cream) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
        align-items: center;
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-deep);
    margin-bottom: 1.25rem;
}

.hero-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.35rem, 5vw, 3.65rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero-title em {
    font-style: normal;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 36ch;
    margin-bottom: 1.75rem;
    font-weight: 450;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-tag {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    box-shadow: var(--shadow-card);
}

.hero-aside {
    background: var(--ink);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.hero-aside::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 70%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.hero-aside p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.92;
}

.hero-aside strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

/* —— Section framing —— */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* —— Product —— */
.product-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    position: relative;
}

.product-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.product-images {
    position: sticky;
    top: 88px;
}

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

.carousel-slides {
    position: relative;
    width: 100%;
    height: min(520px, 58vw);
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--fog), var(--cream));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

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

.carousel-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: var(--paper);
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(12, 15, 20, 0.25);
}

.carousel-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-dots {
    text-align: center;
    padding: 1.25rem 0 0;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background: var(--line);
    border: none;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
    vertical-align: middle;
}

.dot.active,
.dot:hover {
    background: var(--accent);
    transform: scale(1.25);
}

.product-info {
    padding-top: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.65rem, 2.5vw, 2.15rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.product-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-deep);
    letter-spacing: -0.02em;
}

.price-note {
    font-size: 0.88rem;
    color: var(--muted);
}

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

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

.product-specs h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--ink);
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 0.55rem 0 0.55rem 1.35rem;
    position: relative;
    color: var(--muted);
    font-size: 0.96rem;
    border-bottom: 1px dashed var(--line);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 1.1rem 1.75rem;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 1.25rem;
}

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

.product-guarantee {
    padding: 1.35rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
}

.product-guarantee p {
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

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

/* —— Benefits —— */
.benefits-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
}

.benefits-section .section-title {
    color: #fff;
}

.benefits-section .section-intro {
    color: rgba(255, 255, 255, 0.72);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.65rem 1.35rem;
    border-radius: var(--radius-md);
    transition: background 0.25s, border-color 0.25s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 92, 62, 0.45);
}

.benefit-icon {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* —— How it works —— */
.how-it-works {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--paper);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.comparison-item {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
    text-align: center;
}

.comparison-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.comparison-image {
    margin-bottom: 1.25rem;
}

.comparison-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.comparison-item p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* —— Why choose —— */
.why-choose {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, var(--fog) 0%, var(--paper) 100%);
}

.features-list {
    max-width: 820px;
    margin: 2.5rem auto 0;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-number {
    width: 48px;
    height: 48px;
    background: var(--paper);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.feature-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* —— Guarantee —— */
.guarantee-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--accent);
    color: var(--paper);
}

.guarantee-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.guarantee-content > p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.75;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.15);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    text-align: left;
}

.guarantee-icon {
    font-weight: 700;
    font-size: 1rem;
}

.guarantee-item span:last-child {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
}

/* —— FAQ —— */
.faq-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.faq-list {
    max-width: 820px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: var(--paper);
    padding: 1.5rem 1.65rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(196, 92, 62, 0.35);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

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

/* —— Contact —— */
.contact-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--cream);
}

.contact-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

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

.contact-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.contact-item span {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* —— Footer —— */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-section p {
    line-height: 1.75;
    font-size: 0.94rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.health-notice {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.health-notice h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.health-notice p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-size: 0.86rem;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal > h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.legal-info p {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.contact-info-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-footer p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}


.footer-bottom .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.footer-bottom .footer-links a:hover {
    color: #fff;
}

/* —— Legal pages —— */
body.page-legal {
    background: var(--paper);
}

.legal-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
    min-height: 55vh;
}

.legal-page-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.legal-lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.legal-page section {
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.legal-page h3 {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    margin-top: 1.35rem;
    color: var(--ink-soft);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.98rem;
}

.legal-page ul {
    margin-left: 1.35rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.45rem;
    color: var(--muted);
    line-height: 1.65;
}

.legal-page a {
    color: var(--accent-deep);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(196, 92, 62, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

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

.withdrawal-form {
    background: var(--cream);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border: 1px solid var(--line);
}

.withdrawal-form p {
    margin-bottom: 0.85rem;
}

/* Reviews (unused but kept) */
.reviews-section {
    padding: 5rem 0;
    background: var(--fog);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--paper);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--ink);
}

.review-stars {
    color: #d4a012;
    font-size: 1rem;
}

.review-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-images {
        position: static;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .feature-number {
        margin-bottom: 0.25rem;
    }

    .guarantee-item {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .carousel-slides {
        min-height: 300px;
        height: 52vw;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
