@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --- CSS Reset and Variables --- */
:root {
    /* Color Palette derived from the PDF */
    --color-bg: #faf2e2;
    /* Soft peach/beige background */
    --color-bg-light: #fdfaf6;
    --color-text-main: #2b2725;
    --color-text-muted: #5e514a;
    --color-primary: #c2185b;
    /* Magenta/Pink */
    --color-primary-light: #c2185b;
    --color-border: rgba(194, 24, 91, 0.3);
    /* Soft pink border */
    --color-piramal-orange: #F47920;
    --color-piramal-blue: #0E2954;

    /* Typography */
    /* --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --italic: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --script: 'Caveat', 'Bradley Hand', cursive; */
}

body,
html {
    margin: 0;
    padding: 0;
    /* font-family: var(--sans); */
    background-color: #e7d5b9;
    color: var(--color-text-main);
    background-image: radial-gradient(circle at 80% 20%, #fdf5ef 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, #fdeff0 0%, transparent 40%);
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
}

.p-l-r {
    padding-left: 100px;
    padding-right: 100px;
}

.p-l-r-small {
    padding-left: 50px;
    padding-right: 50px;
}

.top {
    padding-top: 120px;
}

.bottom {
    padding-bottom: 120px;
}

/* --- Header Styling --- */
.site-header {
    padding-top: 30px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: -webkit-fill-available;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.handbook-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

.handbook-edition {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-dl-btn {
    display: none;
}

@keyframes pulseHighlight {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(194, 24, 91, 0.7);
    }

    50% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(194, 24, 91, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(194, 24, 91, 0);
    }
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 100;
}

.action-buttons a {
    line-height: 0.9;
}

.action-buttons a span {
    font-size: 16px;
}

.action-buttons a span span {
    font-size: 14px;
}

.action-buttons.fixed-actions {
    position: fixed;
    right: 6px;
    top: 5%;
    flex-direction: column;
    background: rgba(253, 246, 242, 0.9);
    padding: 20px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(194, 24, 91, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
}

/* Transform download pill into an icon when fixed */
.action-buttons.fixed-actions .btn-share {
    padding: 0;
    width: 48px;
    height: 48px;
    justify-content: center;
}

.action-buttons.fixed-actions .btn-share span {
    display: none;
}

.btn-share {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e91e63;
    color: #ffffff;
    border: 2px solid #e91e63;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 2px 4px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 2px 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fdf6f0;
    color: #e91e63;
    border: 2px solid #e91e63;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon_insta {
    display: none;
}

.action-buttons.fixed-actions .btn-icon_insta {
    display: flex;
}

/* Custom Tooltips for Action Buttons */
.btn-share,
.btn-icon {
    position: relative;
}

.btn-share::after,
.btn-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2b2522;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: var(--sans, sans-serif);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-share:hover::after,
.btn-icon:hover::after {
    /* Tooltips are disabled when at the top of the page */
}

/* Tooltips ONLY appear when buttons are sticky/fixed on the right side */
.action-buttons.fixed-actions .btn-share::after,
.action-buttons.fixed-actions .btn-icon::after {
    bottom: 50%;
    left: -10px;
    transform: translate(-100%, 50%);
}

.action-buttons.fixed-actions .btn-share:hover::after,
.action-buttons.fixed-actions .btn-icon:hover::after {
    opacity: 1;
    visibility: visible;
    left: -15px;
    bottom: 50%;
}

.btn-icon:hover {
    transform: translateY(-2px);
    background-color: rgba(233, 30, 99, 0.05);
}

.age-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.age-highlight {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
}

.age-instruction {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.brand-logo {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
}

.brand-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* --- Main Content --- */
.main-content {
    position: relative;
    /* To contain the blob */
}

.banner-section {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

.shap-img {
    position: absolute;
    bottom: 10%;
    left: 0;
    z-index: 1;
    width: 80px;
    animation: 3s ease-in-out 0s infinite zoomInOut;
}

.shap-img img {
    width: 100%;
}

@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20px);
    }
}

/* Animated Gradient Blob (Top Right) */
.bg-gradient-animation {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, #deac7a 0%, #f3bd9b 40%, #00000000 70%);
    border-radius: 50%;
    filter: blur(89px);
    /* z-index: -1; */
    animation: blobFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
    border-radius: 50%;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.1);
    }

    100% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

@keyframes smoothGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    display: flex;
    justify-content: space-between;
    position: relative;
}


.gentle-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title {
    font-family: var(--serif);
    font-size: 6.5rem;
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 24px 0;
    color: #312824;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #4a3e39;
    margin-bottom: 50px;
    max-width: 680px;
}

.hero-section .banner-right-section {
    display: flex;
    width: 30%;
    align-items: center;
    justify-content: center;
}

.right-box-card {
    position: absolute;
    right: 10%;
    bottom: 24%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.right-box-card p {
    font-size: 14px;
    margin-bottom: 30px;
    margin-block-start: 0;
    margin-block-end: 16px;
    font-style: italic;
    color: #6e4f3a;
    text-align: center;
}

.right-box-card ul {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    list-style: none;
}

.right-box-card ul li img {
    width: 90px;
}

.right-box-card ul li img {
    width: 108px;
}

.right-box-card ul li:first-child img {
    width: 140px;
}

.quote-card {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.quote-line {
    width: 4px;
    background-color: var(--color-primary);
    border-radius: 4px;
    flex-shrink: 0;
}

.quote-card p {
    font-family: var(--sans);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5a4f4a;
    margin: 0;
    max-width: 600px;
}

/* --- Image Styling --- */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding: 16px;
    background-color: var(--color-bg-light);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.image-border {
    border: 3px solid var(--color-primary-light);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

/* --- Footer Styling --- */
.site-footer {
    padding: 40px 60px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
}

.initiative-label {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

.logo {
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.iactiv {
    color: var(--color-primary);
    font-family: var(--sans);
    position: relative;
}

.iactiv::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #ddd;
}

.maitri {
    color: #4c5a61;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.1em;
    line-height: 1;
}

.maitri-sub {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    font-family: var(--sans);
    color: #777;
    margin-top: 4px;
}





/* --- Section One --- */
.section-one {
    /* width: 100%; */
    margin-top: 35px;
    padding-top: 80px;
    /* border-top: 1px solid #c2185b; */
    position: relative;
}

.section-one::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #c2185b;
    transform: translateX(-50%);
    top: 0;
}

.s1-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.s1-title {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: #2b2522;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 500;
}

.s1-intro {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.5rem;
    color: #4a3e39;
    line-height: 1.4;
    margin: 0;
}

.s1-full-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid #f6bdaa;
}

.s1-full-image img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.s1-three-boxes {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
}

.s1-mobile-slider {
    display: contents;
}

.s1-mobile-slider-track {
    display: contents;
}

.s1-mobile-pagination {
    display: none;
}

.s1-box {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
}

.s1-why-box {
    padding-left: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.s1-entry-points {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.s1-box-title {
    font-family: var(--serif);
    font-size: 2rem;
    color: #2b2522;
    margin: 0 0 25px 0;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 10px;
    align-self: flex-start;
}

.s1-why-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a3e39;
    margin: 0 0 16px 0;
}

.s1-entry-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s1-entry-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.s1-entry-points li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bullet-dot {
    width: 24px;
    height: 24px;
    background-color: #a4b39b;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 4px;
}

.bullet-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.s1-entry-points div {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a3e39;
}

.s1-expert-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    border-top: 4px solid var(--color-primary-light);
    margin-left: 30px;
}

.s1-quote-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3e39;
    margin: 0;
}

.qoutes-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 40px;
    text-align: center;
    margin: 80px auto 40px auto;
    max-width: 1000px;
}

.qoutes-box h3 {
    font-family: var(--italic);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--color-primary);
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.q-mark {
    font-family: var(--serif);
    font-size: 8rem;
    color: #c2185b;
    position: absolute;
    line-height: 1;
    opacity: 0.8;
    z-index: 1;
}

.qoutes-box .left-mark {
    top: -10px;
    left: -20px;
}

.qoutes-box .right-mark {
    bottom: -10px;
    right: -20px;
}

/* --- Table of Contents --- */
.toc-section {
    width: 100%;
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.toc-header {
    margin-bottom: 50px;
}

.toc-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.toc-title {
    font-family: var(--italic);
    font-size: 3.5rem;
    font-weight: 500;
    color: #2b2522;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.toc-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-primary-light);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.toc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(194, 24, 91, 0.1);
}

.toc-card:hover::before {
    transform: scaleY(1);
}

.toc-num {
    font-family: var(--italic);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 600;
    min-width: 45px;
}

.toc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.toc-name {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
}

.toc-page {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


/* --- Note to Mothers Section --- */
.note-section {
    width: 100%;

    padding: 80px 60px;
    background-color: #fdfaf6;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-sizing: border-box;
}

.note-header {
    flex: 0 0 400px;
}

.note-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.note-label::before {
    content: '•';
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 2rem;
    line-height: 0;
}

.note-title {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 500;
    color: #2b2522;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.note-title span {
    font-size: 34px;
}

.note-content-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

.note-text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-top: 0;
    margin-bottom: 24px;
}

.drop-cap {
    float: left;
    font-family: var(--serif);
    font-size: 4.8rem;
    line-height: 0.8;
    color: var(--color-primary);
    margin-right: 12px;
    margin-top: 6px;
    font-weight: 600;
}

.highlight-pink {
    color: var(--color-primary);
}

.italic {
    font-style: italic;
    font-family: var(--italic);
}

.source-reference {
    font-family: var(--sans);
    font-style: italic;
    font-size: 0.85rem;
    color: #888;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.note-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expert-card,
.mama-note-card {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mama-note-card {
    padding: 20px;
    border-radius: 10px;
}

.expert-avatar {
    width: 60px;
    height: 60px;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.expert-info {
    width: 80%;
}

.expert-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-family: var(--serif);
    color: #2b2522;
}

.expert-info p {
    margin: 0 0 2px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.expert-sub {
    font-size: 0.75rem !important;
    opacity: 0.8;
}

.expert-quote p {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2b2522;
    margin: 0;
}

.mama-note-card {
    background-color: #fdf6f2;
}

.handwritten-title {
    font-family: var(--script);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin: 0 0 16px 0;
    font-weight: 500;
}

.handwritten-text {
    font-family: var(--script);
    font-size: 1.4rem;
    line-height: 1.4;
    color: #4a3e39;
    margin: 0;
}


/* --- Chapter Four Modern Design --- */
.chapter-four-modern {
    width: 100%;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.c4-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.c4-hero-image-box {
    width: 100%;
    max-width: 1200px;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    position: sticky;
    top: 60px;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 10px solid #a1b7b6;
}

.c4-nest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 94%;
    filter: brightness(0.95);
}

.c4-hero-content {
    background: #ffffff70;
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 2;
    margin-top: 180px;
    margin-bottom: 150px;
}

.label-badge {
    display: inline-block;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.c4-title {
    font-family: var(--serif);
    font-size: 3rem;
    color: #2b2522;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.c4-title-italic {
    font-style: italic;
    color: var(--color-primary);
}

.c4-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.c4-explanation-container {
    max-width: 800px;
    margin: 0 auto 100px auto;
    text-align: center;
    position: relative;
    padding: 20px 40px 0;
}

.c4-quote-mark {
    font-family: var(--serif);
    font-size: 10rem;
    color: rgba(194, 24, 91, 0.08);
    position: absolute;
    line-height: 1;
    z-index: -1;
}

.left-mark {
    top: -40px;
    left: -20px;
}

.right-mark {
    bottom: -80px;
    right: 0px;
    transform: rotate(180deg);
}

.c4-main-text {
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.8;
    color: #3d3430;
    margin-bottom: 30px;
}

.c4-highlight {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 500;
}

.c4-sub-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.c4-seasons-wrapper-main,
.c4-qa-wrapper-main {
    position: sticky;
    top: 30px;
}


.c4-seasons-wrapper,
.c4-qa-wrapper {
    background: #fff;
    border-radius: 40px;
    margin-bottom: 100px;
    /* width: 95%; */
    margin: auto;
    padding: 50px 20px;
    overflow: hidden;
}

.c4-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.c4-section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 12px;
}

.c4-section-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: #2b2522;
    font-weight: 500;
    margin: 0;
}

.c4-seasons-track {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.c4-season-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefcfb 100%);
    width: calc(22% - 5px);
    /* min-width: 240px; */
    padding: 30px 10px;
    border-radius: 50px 50px 24px 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* .c4-season-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(194, 24, 91, 0.08);
} */

.c4-season-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 10px;
    font-style: italic;
}

.c4-season-card h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #2b2522;
    margin: 0 0 12px 0;
}

.c4-season-days {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.c4-season-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.c4-qa-wrapper {
    max-width: 100%;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 11;
    background: #fff;
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.c4-section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-style: italic;
    font-family: var(--serif);
}

.chat-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    max-height: 55vh;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.chat-scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 60px;
    /* Space at bottom for scrolling past the last item */
}

.chat-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    max-width: 85%;
}

.chat-daughter {
    align-self: flex-start;
}

.chat-mother {
    align-self: flex-end;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    border: 2px solid #fff;
}

.chat-daughter .chat-avatar {
    background: #fdf0f4;
}

.chat-mother .chat-avatar {
    background: #fdf6f2;
}

.chat-daughter .chat-msg {
    background: #fff;
    color: #2b2522;
    padding: 16px 24px;
    border-radius: 24px 24px 24px 4px;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-family: var(--sans);
}

.chat-mother .chat-msg {
    background: linear-gradient(135deg, #fff2f6 0%, #fff 100%);
    color: #3d3430;
    padding: 18px 26px;
    border-radius: 24px 24px 4px 24px;
    font-size: 1.05rem;
    line-height: 1.6;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.05);
    border: 1px solid rgba(194, 24, 91, 0.1);
}



/* --- Chapter Five --- */
.chapter-five {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.c5-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.c5-chapter-col {
    display: flex;
    flex-direction: column;
}

.c5-chapter-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #4a3e39;
    margin-bottom: 10px;
}

.c5-chapter-num {
    font-family: var(--serif);
    font-size: 6rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1;
}

.c5-main-title {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: #2b2522;
    line-height: 1.1;
    margin: 0;
    font-weight: 500;
}

.c5-intro-text {
    font-family: var(--italic);
    font-size: 1.4rem;
    font-style: italic;
    color: #3d3430;
    line-height: 1.6;
    margin: 0;
}

.c5-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.c5-product-card {
    background-color: #f3ebd8;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.c5-product-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.c5-product-image .product-img {
    width: 200px;
    height: 200px;
}

.c5-product-image .product-img_first {
    width: 160px;
    height: 160px;
}

.c5-product-image .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(80, 40, 20, .18));
}

.pad-bg,
.panty-bg {
    background: linear-gradient(135deg, #fbc6d0 0%, #f7a3bc 100%);
}

.c5-icon {
    width: 180px;
    opacity: 0.9;
}

.c5-product-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #931b46;
    margin-bottom: 15px;
}

.c5-product-title {
    font-family: var(--serif);
    font-size: 2rem;
    color: #2b2522;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.c5-product-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a3e39;
    margin-bottom: 30px;
}

.c5-how-to-label {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.c5-steps-list {
    margin: 0 0 30px 0;
    padding-left: 20px;
    color: #4a3e39;
    font-size: 1.05rem;
    line-height: 1.6;
}

.c5-steps-list li {
    margin-bottom: 10px;
}

.c5-extra-info-box {
    background-color: #eaddcb;
    padding: 25px;
    border-radius: 12px;
    margin-top: auto;
}

.c5-extra-info-box p {
    margin: 0;
    font-style: italic;
    color: #5c4d47;
    line-height: 1.5;
}

.c5-hygiene-box {
    border: 1px dashed rgba(200, 150, 120, 0.4);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.c5-hygiene-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.c5-hygiene-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.c5-hygiene-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.c5-hygiene-list li:first-child {
    padding-top: 0;
}

.c5-hygiene-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.c5-hygiene-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4a3e39;
    padding-top: 2px;
}

.c5-highlight-box {
    background: linear-gradient(to right, #f6d1d4, #f5b7cb);
    padding: 50px 60px;
    border-radius: 15px;
    margin-bottom: 60px;
    margin-top: 50px;
    position: relative;
}

.c5-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 100px;
    height: 5px;
    background-color: var(--color-primary);
}

.c5-highlight-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #931b46;
    margin-bottom: 30px;
}

.c5-highlight-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #2b2522;
    line-height: 1.5;
    margin: 0;
}

.c5-highlight-italic {
    font-style: italic;
    color: var(--color-primary);
}

.c5-showcase-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid #fbc6d0;
    background: url('../images/section-two.jfif');
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    min-height: 600px;
    background-attachment: fixed;
}

.c5-showcase-image img {
    width: 100%;
    display: block;
}

/* --- Chapter Seven Modern Design --- */
.chapter-seven-modern {
    /* width: 100%; */
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.c7-header {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.c7-meta {
    flex: 0 0 200px;
}

.c7-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 15px;
}

.c7-numeral {
    font-family: var(--italic);
    font-size: 6rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1;
    font-weight: 500;
}

.c7-title-wrapper {
    width: 50%;
}

.c7-title {
    font-family: var(--serif);
    font-size: 3rem;
    color: #2b2522;
    margin: 0 0 24px 0;
    line-height: 1.15;
    font-weight: 500;
}

.c7-intro-text {
    font-family: var(--italic);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.c7-needs-section {
    background: #ffffff47;
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.c7-section-heading {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0 0 40px 0;
    font-weight: 500;
}

.dark-pink {
    color: #880e4f;
}

.c7-needs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.c7-need-card {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.c7-need-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(194, 24, 91, 0.1);
}

.c7-need-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1;
    margin-bottom: 15px;
}

.c7-need-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #2b2522;
    margin: 0 0 15px 0;
}

.c7-need-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.c7-leave-behind-section {
    background: #fdfaf6;
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.c7-leave-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.c7-sub-heading {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: #3d3430;
    margin: 0 0 30px 0;
    font-weight: 500;
}

.c7-leave-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c7-leave-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.c7-leave-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.c7-cross-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #8d6e63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.c7-leave-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text-main);
}

.c7-leave-text strong {
    font-weight: 700;
    color: #2b2522;
}

.c7-quote-section {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    margin-bottom: 100px;
}

.c7-big-quote-mark {
    font-family: var(--serif);
    font-size: 8rem;
    color: var(--color-primary-light);
    line-height: 1;
    position: absolute;
    opacity: 0.5;
}

.c7-big-quote-mark:not(.right-mark) {
    top: -20px;
    left: 10%;
}

.c7-big-quote-mark.right-mark {
    bottom: 60px;
    right: 10%;
    transform: rotate(180deg);
}

.c7-quote-text {
    font-family: var(--italic);
    font-size: 2.2rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.c7-image-wrapper {
    width: 50%;
    margin: 0 auto;
    /* overflow: hidden; */
}

.c7-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    height: auto;
    display: flex;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 8px solid #f9ecec;
}




/* --- Footer Section --- */
.site-footer {
    width: 100%;
    background-color: #fdf6f2;
    /* Cream background matching the rest of the page */
    padding: 100px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-expert-box {
    background-color: #f3ebd8;
    /* Soft tan background */
    border-radius: 12px;
    padding: 50px 60px;
    max-width: 900px;
    width: 90%;
    margin-bottom: 120px;
}

.f-expert-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.f-expert-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid rgba(0, 0, 0, 0.05);
}

.f-expert-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.f-expert-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: #2b2522;
    margin: 0;
}

.f-expert-title {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5c4d47;
    margin: 0;
}

.f-expert-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #3d3430;
    margin: 0;
}

.footer-closing {
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin-bottom: 100px;
}

.f-closing-title {
    font-family: var(--serif);
    font-size: 3rem;
    color: #2b2522;
    font-weight: 500;
    margin: 0 0 40px 0;
}

.f-closing-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #3d3430;
    margin: 0 0 40px 0;
}

.f-closing-signature {
    font-family: var(--script);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin: 0;
}

.footer-circle-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ede2c9;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 50px;
    text-align: left;
}

.circle-qr-code {
    width: 140px;
    height: 140px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.circle-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.circle-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.circle-text {
    font-family: var(--italic);
    font-style: italic;
    font-size: 1.25rem;
    color: #4a3e39;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.circle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1.5px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.circle-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.footer-credits {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #8c7b74;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

/* ========================================= */
/*       RESPONSIVE DESIGN SYSTEM            */
/* ========================================= */
/* ── Legal disclaimer ── */
.closing-disclaimer {
    margin-top: 0;
    padding: 14px 20px;
    background: rgba(60, 30, 15, .04);
    border: 1px solid var(--paper-edge);
    border-radius: 4px;
    max-width: 680px;
    width: 100%;
    text-align: left;
    margin: auto;
}

.closing-disclaimer br {
    display: none;
}

.closing-disclaimer-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: #545454;
    display: block;
    margin-bottom: 7px;
    opacity: .7;
}

.closing-disclaimer p {
    font-size: 12px;
    line-height: 1.65;
    color: #46413e;
    margin: 0 0 3px;
    opacity: .75;
}

.closing-disclaimer p:last-child {
    margin-bottom: 0;
}

.closing-disclaimer .disc-sep {
    display: inline-block;
    margin: 0 8px;
    opacity: .4;
}

.closing-disclaimer a {
    color: inherit;
    text-decoration: none;
}

/* --- 1440px Breakpoint --- */
@media (max-width: 1440px) {
    .p-l-r {
        padding-left: 80px;
        padding-right: 80px;
    }

    .note-section {
        flex-direction: column;
    }

    .note-header {
        flex: 1;
    }

    .c4-season-card {
        width: calc(20% - 5px);
        padding: 20px;
    }

    .c4-seasons-track {
        gap: 10px;
    }
}

/* --- 1200px Breakpoint --- */
@media (max-width: 1200px) {
    .p-l-r {
        padding-left: 50px;
        padding-right: 50px;
    }

    .title {
        font-size: 5.5rem;
    }

    .subtitle {
        font-size: 1.6rem;
    }

    .c4-hero-image-box {
        max-width: 1000px;
        height: 500px;
    }

    .c4-season-num {
        font-size: 3rem;
    }

}

/* --- 1024px Breakpoint (Tablet Landscape / Small Laptops) --- */
@media (max-width: 1024px) {
    .p-l-r {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-section {
        padding: 60px 5%;
        min-height: 50vh;
    }

    .hero-text {
        max-width: 100%;
        text-align: left;
    }

    .quote-card {
        text-align: left;
        margin: 40px 0 0 0;
    }

    .title {
        font-size: 4.5rem;
    }

    .note-section {
        flex-direction: column;
        padding: 60px 40px;
    }

    .note-header {
        flex: none;
        margin-bottom: 40px;
    }

    .note-title br {
        display: none;
    }

    .note-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .c7-needs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .c7-need-card:not(:last-child)::after {
        display: none;
    }

    .c4-season-card {
        width: calc(33.333% - 20px);
    }

    .c4-seasons-wrapper-main,
    .c4-qa-wrapper-main {
        position: relative;
        top: 0;
    }

    .chat-container {
        max-width: 100%;
        margin: 40px auto 0 auto;
        max-height: 100%;
        overflow: hidden;
    }

    .footer-expert-box,
    .footer-closing {
        max-width: 100%;
    }

    .s1-header {
        max-width: 100%;
    }
}

/* --- 991px Breakpoint (Tablets Portrait) --- */
@media (max-width: 991px) {
    .title {
        font-size: 4rem;
    }

    .s1-three-boxes {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .s1-expert-box {
        grid-column: span 2;
        margin-left: 0;
        margin-top: 30px;
    }

    .c5-header {
        grid-template-columns: 1fr;
    }

    .c6-content {
        flex-direction: column;
    }

    .c6-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .c4-season-card {
        width: calc(50% - 15px);
    }

    .right-box-card {
        right: 5%;
        bottom: 10%;
        padding: 10px 30px;
    }

    .c7-header {
        flex-wrap: wrap;
    }

    .c7-title-wrapper {
        width: 100%;
    }

    .c7-image-wrapper {
        width: 100%;
    }

    .action-buttons {
        position: fixed;
        right: 6px;
        top: 25%;
        flex-direction: column;
        background: rgba(253, 246, 242, 0.9);
        padding: 20px 15px;
        border-radius: 50px;
        box-shadow: 0 10px 40px rgba(194, 24, 91, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 999;
    }

    .action-buttons .btn-share {
        padding: 0;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .action-buttons .btn-share span {
        display: none;
    }

    .action-buttons .btn-share::after,
    .action-buttons .btn-icon::after {
        bottom: 50%;
        left: -10px;
        transform: translate(-100%, 50%);
    }

    .action-buttons .btn-share:hover::after,
    .action-buttons .btn-icon:hover::after {
        opacity: 1;
        visibility: visible;
        left: -15px;
        bottom: 50%;
    }

    .right-box-card {
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin-top: 50px;
        width: fit-content;
    }

    .shap-img {
        left: unset;
        right: 10%;
    }

    .s1-why-box {
        grid-column: span 2;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 40px;
    }

    .s1-entry-points {
        grid-column: span 2;
        border-right: none;
        padding-bottom: 0;
    }

    .qoutes-box {
        padding: 30px 20px 0;
        margin: 40px auto 0px auto;
        max-width: fit-content;
    }

    .c4-qa-wrapper {
        z-index: 1;
    }

    .note-title span {
        font-size: unset;
    }

    .section-one {
        margin-top: 60px;
        padding-top: 42px !important;
    }

    .chapter-four-modern {
        width: 100%;
        margin-top: 10px;
        padding-top: 54px;
    }

    .footer-expert-box,
    .footer-closing {
        max-width: 100%;
    }

    .footer-expert-box {
        width: fit-content;
        margin-bottom: 40px;
    }

    .footer-closing {
        margin-bottom: 50px;
    }

    .c7-quote-section {
        margin-bottom: 0;
    }

    .c7-leave-behind-section {
        margin-bottom: 70px;
    }

    .action-buttons .btn-icon_insta {
        display: flex;
    }
}

/* --- 768px Breakpoint (Mobile Landscape / Smaller Tablets) --- */
@media (max-width: 768px) {
    .site-header {
        padding: 20px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .header-right {
        flex-direction: column-reverse;
        align-items: center;
        gap: 15px;
    }

    .action-buttons.fixed-actions {
        right: -10px;
        transform: translateY(-50%) scale(0.85);
    }

    .title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .main-content {
        padding: 0;
    }

    .toc-title {
        font-size: 2.5rem;
    }

    .toc-section {
        margin-top: 60px;
        padding-top: 40px;
    }

    .toc-card {
        padding: 20px;
    }

    .c7-header {
        flex-direction: column;
        gap: 20px;
    }

    .c7-leave-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .c7-needs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .c7-quote-text {
        font-size: 1.8rem;
    }

    .qoutes-box {
        padding: 40px 20px;
    }

    .q-mark {
        font-size: 5rem;
    }

    .qoutes-box h3 {
        font-size: 1.8rem;
    }

    .c5-product-card {
        grid-column: span 2;
    }

    .site-footer {
        padding-top: 0;
    }

    .banner-section {
        padding-top: 90px;
    }
}

/* --- 576px Breakpoint (Large Phones) --- */
@media (max-width: 576px) {

    .mobile-dl-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        background-color: var(--color-primary);
        color: white;
        padding: 16px 20px;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
        margin-top: 40px;
        font-family: var(--sans);
        animation: pulseHighlight 2s infinite;
    }

    .closing-disclaimer {
        max-width: fit-content;
    }

    .closing-disclaimer .disc-sep {
        display: none;
    }

    .closing-disclaimer br {
        display: block;
    }

    .right-box-card ul li img {
        width: 80px;
    }

    .right-box-card ul li:first-child img {
        width: 100px;
    }

    .gentle-label {
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .p-l-r,
    .p-l-r-small {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top {
        padding-top: 60px;
    }

    .bottom {
        padding-bottom: 60px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .s1-three-boxes {
        grid-template-columns: 1fr;
        gap: 0;
        row-gap: 40px;
    }

    .s1-why-box,
    .s1-entry-points {
        border-right: none;
    }

    .s1-mobile-slider {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .s1-mobile-slider-track {
        display: flex;
        width: 200%;
        transition: transform 0.4s ease-in-out;
    }

    .s1-mobile-slider-track .slide {
        width: 50%;
        flex: 0 0 50%;
    }

    .s1-mobile-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .s1-mobile-pagination .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #d1d1d1;
        transition: background-color 0.3s;
        cursor: pointer;
    }

    .s1-mobile-pagination .dot.active {
        background-color: var(--color-primary);
    }

    .s1-expert-box {
        grid-column: span 1;
    }

    .c4-season-card {
        width: 100%;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        box-shadow: none;
    }

    .c4-hero-content {
        padding: 30px 20px;
        margin-top: -40px;
    }

    .c4-title {
        font-size: 2.2rem;
    }

    .c4-main-text {
        font-size: 1.25rem;
    }

    .left-mark,
    .right-mark {
        display: none;
    }

    .c7-needs-grid {
        grid-template-columns: 1fr;
    }

    .footer-expert-box {
        padding: 50px 20px;
        width: 95%;
        margin-bottom: 40px;
    }

    .f-expert-header {
        flex-direction: column;
        text-align: center;
    }

    .footer-circle-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .circle-content {
        align-items: center;
    }

    .circle-qr-code {
        width: 120px;
        height: 120px;
    }

    .f-closing-title {
        font-size: 2.2rem;
    }

    .f-closing-text {
        font-size: 1.2rem;
    }

    .f-closing-signature {
        font-size: 1.3rem;
    }

    .action-buttons {
        background: transparent;
        box-shadow: none;
        backdrop-filter: unset;
        right: 0;
    }

    .banner-section {
        padding-top: 130px;
    }

    .note-section {
        flex-direction: column;
        padding: 0 0 50px;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .note-title,
    .s1-title,
    .c5-main-title,
    .c7-title {
        font-size: 2.2rem;
    }

    .expert-card,
    .mama-note-card {
        border-radius: 10px;
    }

    .handwritten-text,
    .s1-intro,
    .c7-intro-text {
        font-size: 1.2rem;
    }

    .handwritten-title {
        font-size: 2rem;
    }

    .section-one {
        margin-top: 0 !important;
        padding-top: 40px !important;
    }

    .s1-box-title {
        font-size: 1.6rem;
    }

    .s1-box.s1-entry-points {
        padding: 0;
    }

    .s1-expert-box {
        margin-top: 0;
    }

    .chapter-four-modern {
        padding-top: 50px;
        margin-top: 0;
    }

    .c4-section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .c4-seasons-wrapper,
    .c4-qa-wrapper {
        border-radius: 10px;
    }

    .chapter-five {
        margin-top: 0;
        padding-top: 40px;
    }

    .c5-product-title {
        font-size: 1.6rem;
    }

    .c5-showcase-image {
        background-attachment: unset;
        min-height: 300px;
    }

    .c5-highlight-box {
        padding: 30px;
    }

    .c5-highlight-text {
        font-size: 1.1rem;
    }

    .c5-hygiene-text {
        font-size: 1rem;
    }

    .chapter-seven-modern {
        /* width: 100%; */
        margin-top: 40px;
        padding-top: 50px;
    }

    .c7-needs-section {
        padding: 30px;
        border-radius: 10px;
    }

    .c7-section-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .c7-leave-behind-section {
        background: #fdfaf6;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .f-expert-quote {
        font-size: 1.2rem;
    }

    .footer-closing {
        margin-bottom: 50px;
    }

    .quote-card p {
        font-size: 1.1rem;
        line-height: 1.3;
        max-width: 100%;
    }

    .c7-sub-heading {
        font-size: 1.2rem;
    }

    .c7-quote-section {
        margin-bottom: 0;
    }

    .c7-quote-text {
        margin-bottom: 0;
        font-size: 1.3rem;
        font-weight: 500;
    }

    .chat-bubble {
        max-width: 100%;
    }

    .c4-qa-wrapper {
        max-width: 100%;
        margin: 0 auto 50px auto;
    }

    .chat-container {
        mask-image: none;
    }

    .chat-scroll-inner {
        padding-bottom: 0;
    }

    .c5-header {
        margin-bottom: 50px;
    }

    .shap-img {
        left: unset;
        right: 0;
        display: none;
    }

    .s1-why-box {
        padding-right: 0;
    }
}