/* =============================================
   PROCEDURE OVERVIEW — Premium editorial section
   ============================================= */

.procedure-overview {
    background: #ffffff;
    color: #1a1a1a;
    padding: 100px 60px 110px;
    overflow: hidden;
    position: relative;
    font-family: 'Georgia', serif;
}

/* Subtle texture dot top-right */
.procedure-overview::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(1,33,5,0.06);
    pointer-events: none;
}


/* ── Oversized heading ── */
.po-heading-wrap {
    text-align: center;
    margin-bottom: 72px;
}

.po-heading {
    font-family: 'Georgia', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0;
}

.po-heading em {
    font-style: italic;
    color: #C8894A;
}

/* ── Body: two column ── */
.po-body {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── Left text column ── */
.po-text {
    flex: 1;
    padding-top: 20px;
}

.po-description {
    font-size: 24px;
    line-height: 1.75;
    color: rgba(0,0,0,0.62);
    margin: 0 0 48px;
    max-width: 480px;
}

/* Stat chips */
/* ── Stat entrance keyframes ── */
@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes statNumCount {
    from { opacity: 0; transform: translateY(10px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* ── Hover pulse on the number ── */
@keyframes statPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.po-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 52px;
    padding-left: 0;
    border-left: 1px solid rgba(200,137,74,0.5);
    padding-left: 28px;
}

.po-stat {
    display: flex;
    align-items: baseline;
    gap: 14px;
    /* Staggered slide-in on page load */
    opacity: 0;
    animation: statSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.po-stat:nth-child(1) { animation-delay: 0.8s; }
.po-stat:nth-child(2) { animation-delay: 1.05s; }
.po-stat:nth-child(3) { animation-delay: 1.3s; }

.po-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1;
    display: inline-block;
    animation: statNumCount 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: color 0.25s ease;
}

/* Number pulses gently on hover of the whole stat row */
.po-stat:hover .po-stat-num {
    animation: statPulse 0.45s ease forwards;
    color: #C8894A;
}

.po-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.po-stat:hover .po-stat-label {
    color: rgba(0,0,0,0.65);
    letter-spacing: 2.5px;
}

/* CTA button */
.po-cta {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(0,0,0,0.3);
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
	border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.po-cta:hover {
    background: #C8894A;
    border-color: #C8894A;
    color: #fff;
}

/* ── Right image column ── */
.po-images {
    flex: 1.1;
    position: relative;
    overflow: visible;
}

.po-img-stack {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: visible;
}

/* Both cards share base styles */
.po-img-card {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

.po-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before — behind, pulled further left for visibility */
.po-img-before {
    width: 65%;
    height: 78%;
    top: 0;
    left: -10%;
    z-index: 1;
    filter: grayscale(15%);
}

/* After — in front, offset bottom-right */
.po-img-after {
    width: 68%;
    height: 82%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 3px solid #ffffff;
}

/* Labels on images */
.po-img-label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.9);
    padding: 5px 12px;
    backdrop-filter: blur(4px);
}

.po-img-label-after {
    background: #C8894A;
    color: #fff;
}

/* Caption */
.po-img-caption {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    text-align: right;
    margin-top: 16px;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .procedure-overview {
        padding: 80px 40px 90px;
    }
    .po-heading {
        font-size: clamp(40px, 6vw, 72px);
    }
    .po-body {
        flex-direction: column;
        gap: 56px;
        align-items: center;
    }
    .po-text {
        width: 100%;
        max-width: 680px;
        text-align: center;
    }
    .po-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .po-stats {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(200,137,74,0.5);
        padding-top: 24px;
        gap: 40px;
        justify-content: center;
    }
    .po-stat {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    .po-cta {
        display: block;
        text-align: center;
        max-width: 340px;
        margin: 0 auto;
    }
    /* Images: full width, big, centered */
    .po-images {
        width: 100%;
        max-width: 780px;
    }
    .po-img-stack {
        height: 500px;
        width: 100%;
    }
    .po-img-before {
        width: 58%;
        height: 72%;
        left: 0;
    }
    .po-img-after {
        width: 66%;
        height: 82%;
        right: 0;
    }
    .po-img-caption {
        text-align: center;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .procedure-overview {
        padding: 52px 20px 64px;
    }
    .po-heading-wrap {
        margin-bottom: 40px;
    }
    .po-body {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }
    .po-text {
        width: 100%;
        text-align: center;
    }
    .po-description {
        max-width: 100%;
    }
    .po-stats {
        flex-direction: row;
        flex-wrap: nowrap;          /* force single line always */
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(200,137,74,0.5);
        padding-top: 20px;
        gap: 0;
        justify-content: space-around;
        align-items: flex-start;
    }
    .po-stat {
        flex: 1;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        min-width: 0;               /* allow shrinking */
    }
    .po-stat-num {
        font-size: clamp(18px, 6vw, 28px);
        white-space: nowrap;
    }
    .po-stat-label {
        font-size: clamp(8px, 2.2vw, 12px);
        letter-spacing: 1px;
        text-align: center;
        white-space: nowrap;
    }
    .po-cta {
        display: block;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    /* Images: full width, large, centered */
    .po-images {
        width: 100%;
    }
    .po-img-stack {
        height: 420px;
        width: 100%;
    }
    .po-img-before {
        width: 58%;
        height: 72%;
        left: 0;
    }
    .po-img-after {
        width: 66%;
        height: 80%;
        right: 0;
    }
    .po-img-caption {
        text-align: center;
    }
}

		.comparison-container {
		    max-width: 800px;
		    margin: 40px auto;
		    padding: 20px;
			flex: 1.2;
			 background-color: transparent;
		}

		.image-wrapper {
			position: relative;
			display: flex;
			border-radius: 24px;
			overflow: hidden;
			box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		}

		.image-box {
		    flex: 1;
		}

		.image-box img {
		    width: 100%;
		    height: auto;
		    display: block;
		    object-fit: cover;
		    aspect-ratio: 1 / 1; /* Adjust to match your photo's height */
		}

		/* The Floating Pill Bar */
		.comparison-pill {
		    position: absolute;
		    bottom: 20px;
		    left: 50%;
		    transform: translateX(-50%);
		    background: #1a1a1a; /* Solid dark background like image */
		    display: flex;
		    padding: 0; /* Remove padding to let active side fill completely */
		    border-radius: 50px;
		    width: 90%;
		    overflow: hidden;
		}
		
		
		.pill-half {
		    flex: 1;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    gap: 12px;
		    color: #fff;
		    font-family: 'Georgia', serif;
		    font-size: 14px;
		    padding: 12px 0;
		}

		/* The White "Active" side */
		.pill-half.active {
		    background: #fdfaf3;
		    color: #000;
			 border-radius: 50px;
		}

		.pill-arrow {
		    background: #fff; /* White circle for the "Before" side */
		    color: #000;
		    width: 28px;
		    height: 28px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    border-radius: 50%;
		    font-size: 16px;
		    font-weight: bold;
		}
		
		
		.main-layout-wrapper {
		    display: flex;
		    align-items: center;
		    justify-content: space-between;
		    gap: 60px;
		    max-width: 1400px;
		    margin: 0 auto;
		    padding: 60px 20px 30px;
		}
		.overview-text {
		    flex: 1;
		    text-align: left;
		}

		.pretreatment-title {
		    font-size: 3rem;
		    line-height: 1.1;
		    margin-bottom: 20px;
		}

		.pretreatment-underline {
		    width: 60px;
		    height: 3px;
		    background: #000;
		    margin-bottom: 30px;
		}
		.section-description {
		  font-size: 1.2rem;
		  line-height: 1.2;
		  color: #444;
		}
		
		.pill-half.active .pill-arrow {
		    background: #222; 
		    color: #fff;
		}
		
		.pill-text {
		    font-size: 1.1rem;  
		    text-transform: none;  
		    letter-spacing: 0.5px; 
		}
		
		@media (max-width: 992px) {
		    .main-layout-wrapper {
		        flex-direction: column;
		        text-align: center;
		        gap: 40px;
		    }
		    .pretreatment-underline { margin: 0 auto 30px auto; }
		}

		/* Mobile Fix: Images shrink with page, stay side-by-side */
		@media (max-width: 600px) {
		    .image-wrapper {
		        flex-direction: row;
		    }
		    .image-box img {
		        height: 45vw;
		        aspect-ratio: unset;
		        object-fit: cover;
		    }
		    .comparison-pill {
		        bottom: 10px;
		        width: 88%;
		    }
		    .pill-half {
		        padding: 7px 0;
		        gap: 6px;
		    }
		    .pill-text { font-size: 0.75rem; }
		    .pill-arrow { width: 20px; height: 20px; font-size: 11px; }
		}
		
		
		
		
		
		/* Pretreatment */
		.pretreatment-hero {
		    background-color: white;
		    padding: 30px 40px 80px;
		    display: flex;
		    justify-content: center;
		}

		.pretreatment-container {
		    max-width: 1200px;
		    display: flex;
		    align-items: center;
		    gap: 60px;
		}

		/* Image Arch Effect */
		.pretreatment-image-wrapper {
		    flex: 1;
		    position: relative;
		    align-self: stretch;      /* grows to match text column height */
		    display: flex;
		}

		.arch-image {
		    width: 100%;
		    height: 100%;             /* fills the wrapper height — moves with text */
		    min-height: 400px;        /* floor so it never collapses on very short text */
		    object-fit: cover;
		    border-radius: 250px 250px 0 0;
		    border: 1px solid black;
		}

		/* Typography & Content */
		.pretreatment-content {
		    flex: 1;
		}

		.brand-subtitle {
		    color: black;
		    font-weight: bold;
		    display: block;
		    margin-bottom: 20px;
			font-size: 1.6rem;
		}
		.pretreatment-btn {
		    display: inline-block;
			margin-top: 25px;
			padding: 12px 25px;
		    border-radius: 50px;
		    text-decoration: none;
		    font-weight: bold;
		    font-size: 1.0rem;
		    text-transform: uppercase;
		    transition: 0.3s;
		    background-color: black; 
		    color: white;              
		    border: 1px solid #2d4a3e;
		}
		
		
		
		/* Beginning of Day of Treatment  */

		.appointment-section {
		    padding: 80px 40px;
		    background-color: #fff;
		    font-family: 'Georgia', serif;
		    scroll-margin-top: 80px;
		}

		.appointment-container {
		    display: flex;
		    max-width: 1200px;
		    margin: 0 auto;
		    gap: 60px;
		    align-items: stretch;     /* both columns same height */
		}

		.appointment-image {
		    flex: 0 0 35%;             /* smaller than text — not equal width */
		    max-width: 35%;
		    display: flex;
		}

		.appointment-image img {
		    width: 100%;
		    height: 100%;              /* fills column height — always same as text */
		    display: block;
		    object-fit: cover;
		}

		.appointment-content { flex: 1; }

		.appointment-main-title {
		    font-size: 2rem;
		    font-weight: 300;
		    margin-bottom: 40px;
		    color: #333;
		}

		/* Numbered List Styling */
		.step-item { display: flex; margin-bottom: 35px; align-items: flex-start; }

		.step-number {
		    font-size: 1.5rem;
		    color: #ccc;
		    font-weight: 300;
		    margin-right: 25px;
		    min-width: 40px;
		}

		.step-text h3 {
		    font-size: 0.9rem;
		    text-transform: uppercase;
		    letter-spacing: 1px;
		    margin: 0 0 8px 0;
		    text-decoration: underline;
		    font-weight: 600;
		}

		.step-text p { font-size: 0.95rem; line-height: 1.6; color: #555; margin: 0; }

		/* Mobile: image above steps, compact height so everything fits one screen */
		@media (max-width: 900px) {
		    .appointment-container {
		        flex-direction: column;
		        gap: 30px;
		    }
		    .appointment-image {
		        flex: unset;
		        max-width: 100%;
		        width: 100%;
		    }
		    .appointment-image img {
		        height: 220px;          /* short fixed height — fits above steps */
		        max-height: 220px;
		        object-fit: cover;
		    }
		    .step-number { font-size: 1.2rem; }
		    .appointment-main-title { font-size: 1.6rem; margin-bottom: 25px; }
		    .step-item { margin-bottom: 22px; }
		}
	
	
		/* End of Day of Treatment  */

		

		
	   
		/* Beginning of Aftercare */

		.post-treatment-section {
		    padding: 55px 40px;
		    background-color: #fcfcfc;
		    font-family: 'Georgia', serif;
		    scroll-margin-top: 80px;
		}

		.post-treatment-container {
		    display: flex;
		    flex-direction: row;
		    max-width: 960px;
		    margin: 0 auto;
		    align-items: stretch;
		    gap: 28px;
		    padding: 0 20px;
		}

		/* Text column — left, same height as images */
		.post-treatment-content {
		    flex: 1;
		    display: flex;
		    flex-direction: column;
		    justify-content: space-between;
		    min-width: 0;
		}

		.post-title {
		    font-family: 'Georgia', serif;
		    font-size: 1.8rem;
		    font-weight: 700;
		    margin-bottom: 20px;
		    color: #1a1a1a;
		    text-transform: uppercase;
		    letter-spacing: 1px;
		}

		.instruction-block {
		    font-family: 'Georgia', serif;
		    line-height: 1.6;
		    margin-bottom: 0;
		    flex: 1;
		}

		.instruction-block p { margin-bottom: 16px; color: #444; font-size: 1rem; }

		.valmont-header {
		    display: inline-block;
		    text-transform: uppercase;
		    text-decoration: underline;
		    font-weight: 600;
		    font-size: 0.85rem;
		    letter-spacing: 1px;
		    color: #000;
		    margin-bottom: 8px;
		}

		/* Filmstrip — always on the right, same height as text */
		.filmstrip-container {
		    flex: 1;
		    display: flex;
		    flex-direction: column;
		    background: #fff;
		    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		    order: 2;
		}

		.film-frame {
		    flex: 1;
		    display: flex;
		    flex-direction: column;
		    padding: 12px 12px 0;
		    background: #fff;
		    position: relative;
		}

		.film-frame:not(:last-child)::after {
		    content: '';
		    display: block;
		    height: 8px;
		    background: #f0f0f0;
		    margin-top: 12px;
		    border-top: 1px solid #ddd;
		    border-bottom: 1px solid #ddd;
		}

		.film-frame:last-child { padding-bottom: 12px; }
		.film-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }

		/* Buttons — pushed to bottom */
		.button-group { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

		.care-btn {
		    display: inline-block;
		    width: fit-content;
		    padding: 12px 25px;
		    border-radius: 50px;
		    text-decoration: none;
		    font-weight: bold;
		    font-size: 0.9rem;
		    text-transform: uppercase;
		    transition: 0.3s;
		    border: 1px solid #000;
		    color: #000;
		    text-align: center;
		}

		.care-btn:hover { background-color: #000; color: #fff; }
		.care-btn.primary { background: white; color: #2d4a3e; }
		.care-btn.secondary { background-color: black; color: white; border-color: #2d4a3e; }

		/* Tablet — keep side by side */
		@media (max-width: 992px) {
		    .vida-style-wrapper { overflow: hidden; width: 100%; }
		    .post-treatment-container { gap: 20px; padding: 0 20px; }
		    .post-title { font-size: 1.6rem; }
		    .instruction-block p { font-size: 1rem; }
		}

		/* Mobile — images above text */
		@media (max-width: 768px) {
		    .post-treatment-container { flex-direction: column; padding: 0 20px; gap: 30px; }
		    .filmstrip-container {
		        flex-direction: row;
		        order: -1;
		        flex: unset;
		        width: 100%;
		        box-shadow: none;
		        gap: 8px;
		    }
		    .film-frame { flex: 1; padding: 0; }
		    .film-frame:not(:last-child)::after { display: none; }
		    .film-frame img { height: 120px; object-fit: cover; }
		    .post-treatment-content { flex: unset; width: 100%; }
		    .post-title { font-size: 1.8rem; }
		    .instruction-block p { font-size: 1rem; }
		    .button-group { flex-direction: column; gap: 10px; }
		    .care-btn { width: 100%; text-align: center; }
		}

		@media (max-width: 480px) { .post-title { font-size: 1.4rem; } }

		




		/* Videos */
		.beauty-reel-section {
		    box-sizing: border-box;
		    margin: 0;
		    padding: 0;
			background-color: white;
		    padding: 80px 0;
		    display: flex;
		    justify-content: center;
		    font-family: 'Georgia', serif;
		}

		/* WIDER container */
		.beauty-main-container {
		    width: 95%;
		    max-width: 1400px;
		    text-align: center;
		    position: relative;
		}

		/* --- FRAME wraps everything including title --- */
		.beauty-border-frame {
		    border: 4px solid black;
		    position: relative;
		}

		/* --- HEADER inside top of border --- */
		.beauty-top-wrapper {
		    position: relative;
		    padding: 40px 60px 35px;
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		}

		/* thin lines flanking title */
		.beauty-top-wrapper::before,
		.beauty-top-wrapper::after {
		    content: "";
		    position: absolute;
		    top: 55px;
		    width: 12%;
		    height: 2px;
		    background: black;
		}

		.beauty-top-wrapper::before { left: 40px; }
		.beauty-top-wrapper::after  { right: 40px; }

		.beauty-main-title {
		    font-size: 3.0rem;
		    letter-spacing: 4px;
		    color: black;
		    margin: 0;
		    font-weight: 600;
		}

		.beauty-subtitle {
		    font-family: 'Georgia', serif;
		    font-style: italic;
		    font-size: 1.7rem;
		    color: #000000;
		    margin-top: 8px;
		}

		/* --- GRID with gaps, padded inside frame --- */
		.video-grid-container {
		    display: grid;
		    grid-template-columns: repeat(3, 1fr);
		    gap: 20px;
		    padding: 0 40px;
		}

		.video-frame {
		    aspect-ratio: 1 / 1;
		    overflow: hidden;
		    background: #ddd;
		}

		.video-frame video {
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
		}

		/* --- HANDLE bottom inside border --- */
		.beauty-bottom-wrapper {
		    padding: 35px 40px 32px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		}

		.instagram-link {
		    text-decoration: none;
		    display: inline-block;
		    color: inherit;
		}

		.instagram-link:hover { opacity: 0.7; }

		.handle-text {
		    font-family: 'Georgia', serif;
		    font-style: italic;
		    font-size: 1.5rem;
		    color: black;
		    letter-spacing: 1px;
		    margin: 0;
		}

		/* --- RESPONSIVE --- */
		@media (max-width: 768px) {
		    .video-grid-container {
		        grid-template-columns: 1fr;
		        max-width: 70%;
		        margin: 0 auto;
		        padding: 0 20px;
		        gap: 14px;
		    }

		    .beauty-top-wrapper::before,
		    .beauty-top-wrapper::after {
		        display: none;
		    }

		    .beauty-top-wrapper {
		        padding: 28px 20px 24px;
		    }

		    .beauty-bottom-wrapper {
		        padding: 24px 20px 22px;
		    }
		}

		
/* Add this below your .popup-overlay code */
.popup-overlay.active {
    display: flex !important;
}
/* =============================================
   TREATMENT ROADMAP — Mobile Fixes
   ============================================= */

@media (max-width: 768px) {
  /* Overview Section */
  .main-layout-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    text-align: center;
  }
  .pretreatment-title {
    font-size: 1.8rem !important;
  }
  .pretreatment-underline {
    margin: 0 auto 20px;
  }
  .section-description {
    font-size: 1rem !important;
  }
  .comparison-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Pretreatment Hero */
  .pretreatment-hero {
    padding: 30px 20px 60px;
  }
  .pretreatment-container {
    flex-direction: column;
    gap: 30px;
  }
  .pretreatment-image-wrapper {
    width: 70%;
    max-width: 320px;
    margin: 0 auto;
    align-self: auto;
  }
  .arch-image {
    height: 280px;
    min-height: unset;
    border-radius: 140px 140px 0 0;
  }
  .pretreatment-content {
    text-align: center;
  }
  .brand-subtitle {
    font-size: 1.2rem;
  }
  .pretreatment-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  /* Aftercare */
  .post-treatment-section {
    padding: 50px 15px !important;
  }
  .post-treatment-container {
    flex-direction: column !important;
    padding: 0 20px !important;
    gap: 30px !important;
  }
  .post-title {
    font-size: 1.8rem !important;
  }
  .instruction-block p {
    font-size: 1rem !important;
  }
  .filmstrip-container {
    flex-direction: row !important;
    max-width: 100% !important;
    gap: 8px;
  }
  .film-frame {
    flex: 1;
  }
  .film-frame img {
    height: 120px;
    object-fit: cover;
  }
  .button-group {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .care-btn {
    text-align: center;
    width: 100%;
  }

  /* Video Reel Section */
  .beauty-reel-section {
    padding: 50px 0;
  }
  .beauty-main-container {
    padding: 40px 20px 0 20px;
    width: 100%;
  }
  .beauty-main-title {
    font-size: 2.5rem !important;
    letter-spacing: 3px;
  }
  .beauty-subtitle {
    font-size: 1.6rem !important;
  }
  .beauty-border-frame {
    border-left: 3px solid #000000;
    border-right: 3px solid #000000;
    border-bottom: 3px solid #000000;
    padding: 0 15px;
  }
  .video-grid-container {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 70% !important;
    margin: 0 auto !important;
    padding: 30px 0 !important;
  }
  .handle-text {
    font-size: 1.5rem !important;
    padding: 6px 0 !important;
    letter-spacing: 1px;
  }
  .beauty-top-wrapper::before,
  .beauty-top-wrapper::after {
    display: none;
  }
}

/* ── iPhone 12 Pro (390px) — title fits inside frame ── */
@media (max-width: 390px) {
  .beauty-main-title {
    font-size: 1.7rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
  }
  .beauty-subtitle {
    font-size: 1.1rem !important;
    margin-top: 4px;
  }
  .beauty-top-wrapper {
    padding: 20px 12px 16px;
  }
  .beauty-border-frame {
    padding: 0 8px;
  }
}



/*Three Banners*/
/* Shared Styles */
.bsb-heading { font-size: 2rem; margin-bottom: 15px; }

/* Section 1 Styles */
/* ── Section 1: Intro — cream background, centered italic heading ── */
.bsb-intro {
    background-color: #F0EBE0;
    padding: 60px 30px;
    text-align: center;
}

.bsb-intro-heading {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.bsb-intro-text {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Section 2: Guarantee — white, large bold centered heading ── */
.bsb-guarantee {
    background-color: #ffffff;
    padding: 70px 30px 50px;
    text-align: center;
}

.bsb-guarantee-heading {
    font-family: 'Georgia', serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 18px 0;
}

.bsb-cheers {
    font-family: 'Georgia', serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin: 0;
}

/* ── Section 3: Features — dark card carousel style ── */
.bsb-features {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0;
    display: block;
    text-align: center;
    overflow: hidden;
}

/* Carousel track — all cards side by side, one shows at a time */
.bsb-features-track {
    display: flex;
    transition: transform 0.4s ease;
}

.bsb-feature-item {
    flex: 0 0 100%;
    padding: 36px 36px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    justify-content: center;
}

.bsb-feature-item h3 {
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 22px 0;
}

.bsb-feature-item p {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 440px;
    margin: 0 auto;
}

/* Pagination row */
.bsb-features-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 0 32px;
    background-color: #1a1a1a;
}

.bsb-features-prev,
.bsb-features-next {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s;
    font-family: 'Georgia', serif;
}

.bsb-features-prev:hover,
.bsb-features-next:hover { color: #fff; }

.bsb-features-count {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* Desktop: show all cards in a grid */
@media (min-width: 769px) {
    .bsb-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 0;
    }
    .bsb-features-track { display: contents; }
    .bsb-feature-item { flex: unset; min-height: 320px; border-right: 1px solid rgba(255,255,255,0.08); }
    .bsb-feature-item:last-child { border-right: none; }
    .bsb-features-nav { display: none; }

    .bsb-intro-heading { font-size: 2.4rem; }
    .bsb-guarantee-heading { font-size: 3.2rem; }
}



/* =============================================
   SPLIT SECTION — Squarespace-style
   ============================================= */

/* Outer black wrapper — the dark frame around everything */
.bsb-split-section {
    background-color: #1a1210;
    padding: 30px;                   /* reduced from 40px — less outer frame on desktop */
    display: flex;
    gap: 0;
    min-height: 480px;               /* reduced from 680px — less vertical bulk */
    width: 100%;
    box-sizing: border-box;
}

/* Left dark brown content panel */
.bsb-split-content {
    flex: 0 0 48%;
    background-color: #2b1f1a;
    color: #fff;
    padding: 55px 55px;              /* reduced from 80px 65px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bsb-eyebrow {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

.bsb-title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;               /* reduced from 2.6rem */
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.bsb-text {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0 0 14px 0;
    max-width: 460px;
}

.bsb-btn {
    margin-top: 22px;
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 13px 32px;
    font-family: 'Georgia', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
	border-radius: 50px; 
    width: fit-content;
    transition: background 0.25s ease, color 0.25s ease;
}

.bsb-btn:hover {
    background: #ffffff;
    color: #2b1f1a;
}

/* Right image side */
.bsb-split-image {
    flex: 1;
    position: relative;
    background-color: #1a1210;
    display: flex;
    align-items: stretch;
    overflow: visible;
}

/* White vertical divider */
.bsb-split-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: #ffffff;
    z-index: 2;
}

/* Inner wrapper handles the offset cream border */
.bsb-split-image-inner {
    position: relative;
    flex: 1;
    margin: 0 28px 0 36px;
}

/* Cream offset — peeks top-right and bottom-right */
.bsb-split-image-inner::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background: #e0d0b8;
    z-index: 0;
}

.bsb-split-image-inner img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;               /* reduced from 500px */
}

/* ── Mobile: image on top, content panel below ── */
@media (max-width: 900px) {
    .bsb-split-section {
        flex-direction: column;
        padding: 16px 16px 0;        /* outer dark frame only on sides/top — none at bottom */
        min-height: unset;
        background-color: #1a1210;
    }

    /* Image on TOP — full width with tan offset peeking right */
    .bsb-split-image {
        order: -1;                   /* moves image above content */
        min-height: unset;
        overflow: visible;
        background-color: transparent;
        padding-bottom: 20px;        /* space for cream offset to peek below */
    }

    .bsb-split-image::after { display: none; } /* no white divider on mobile */

    .bsb-split-image-inner {
        margin: 0 24px 0 0;          /* right margin lets cream offset peek */
        width: 100%;
    }

    /* Cream offset visible on right and bottom */
    .bsb-split-image-inner::before {
        display: block;
        top: 14px;
        right: -16px;
        bottom: -16px;
        left: 0;
        background: #e0d0b8;
    }

    .bsb-split-image-inner img {
        min-height: unset;
        height: 320px;
        width: 100%;
        object-fit: cover;
        display: block;
    }

    /* Content panel below — dark brown, no top padding (image is right above) */
    .bsb-split-content {
        flex: unset;
        order: 1;
        padding: 40px 24px 48px;
        background-color: #2b1f1a;
        margin: 0 -16px;             /* bleeds to edge, matching full-width dark look */
    }

    .bsb-title { font-size: 2rem; line-height: 1.15; }
}

@media (max-width: 600px) {
    .bsb-split-section { padding: 12px 12px 0; }
    .bsb-split-content { padding: 36px 20px 44px; margin: 0 -12px; }
    .bsb-title { font-size: 1.8rem; }
    .bsb-text { font-size: 0.95rem; }
    .bsb-split-image-inner img { height: 280px; }
}
