/* Table of Contents Container */
.beauty-toc {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 4px;
    margin: 35px 0;
}

.beauty-toc .toc-header {
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #d4af37;
    display: inline-block;
    font-size: 0.85rem;
}

.beauty-toc p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.beauty-toc a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s ease;
}

.beauty-toc a:hover {
    color: #d4af37;
}

/* Indentation for sub-links (2.1, 2.2, etc) */
.toc-indent {
    margin-left: 20px;
    border-left: 1px solid #eee;
    padding-left: 15px;
}

.toc-indent p {
    font-size: 0.9rem;
}

/* --- THE NARRATIVE INTRO --- */
/* Use this for the "Think of your pores..." paragraph */
.beauty-intro-text {
    margin-bottom: 25px; /* Creates space before the indented details start */
    line-height: 1.7;
    color: #333;
}

/* --- THE INDENTED DATA BLOCK --- */
/* Creates the left margin for "The Surface Polisher," etc. */
.beauty-summary-block {
    margin-left: 35px;      /* The requested left margin */
    margin-bottom: 15px;    /* Vertical gap between each specific point */
    line-height: 1.8;
    color: #4b5563;         /* Soft slate grey for better readability */
    font-size: 0.98rem;
}

/* --- THE BOLD DATA LABELS --- */
/* Targets "The Surface Polisher (AHA):" */
.beauty-summary-block strong {
    color: #111827;         /* High-contrast black for the labels */
    font-weight: 700;
    margin-right: 4px;
}

/* --- UNIVERSAL INDENTED BLOCK --- */
.beauty-summary-block, .beauty-cta-block {
    margin-left: 35px;
    margin-bottom: 25px;
    padding-left: 15px;
    line-height: 1.8;
}

/* --- THE CTA MODIFIER --- */
/* Adds a subtle "Gold Glow" and border to signal a link */
.beauty-cta-block {
    border-left: 3px solid #d4af37; /* Thicker gold line for CTAs */
    background-color: #fffdf9;      /* Very light cream background */
    padding: 20px;                  /* More space inside the box */
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;      /* Smooth transition for hover */
}

/* Hover Effect: The block shifts slightly to invite the click */
.beauty-cta-block:hover {
    background-color: #fff9ed;
    transform: translateX(5px);      /* Moves right slightly on hover */
    cursor: pointer;
}

/* Styling the Link inside the CTA */
.beauty-cta-block a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
}

.beauty-cta-block a:hover {
    border-bottom: 1px solid #d4af37;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 600px) {
    .beauty-summary-block {
        margin-left: 15px;  /* Reduces the margin so text doesn't look squished on phones */
        font-size: 0.95rem;
    }
}