/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.varviroStableFemLayerBody {
    background-color: #120014;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.varviroStableFemLayerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.varviroStableFemLayerH1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FF4FD8;
    text-shadow: 0 0 20px rgba(255, 79, 216, 0.4);
}

.varviroStableFemLayerH2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #FF4FD8;
    position: relative;
    padding-bottom: 10px;
}

.varviroStableFemLayerH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF4FD8, transparent);
}

.varviroStableFemLayerH3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff8ae6;
}

.varviroStableFemLayerText {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.varviroStableFemLayerSub {
    font-size: 1.4rem;
    color: #ff8ae6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Header */
.varviroStableFemLayerHeader {
    background: rgba(18, 0, 20, 0.9);
    border-bottom: 1px solid rgba(255, 79, 216, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(255, 79, 216, 0.1);
}

.varviroStableFemLayerHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.varviroStableFemLayerLogo {
    font-size: 2rem;
    font-weight: bold;
    color: #FF4FD8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.varviroStableFemLayerNavList {
    display: flex;
    list-style: none;
}

.varviroStableFemLayerNavLink {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.varviroStableFemLayerNavLink:hover {
    color: #FF4FD8;
}

.varviroStableFemLayerMenuCheckbox {
    display: none;
}

.varviroStableFemLayerBurger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.varviroStableFemLayerBurger span {
    width: 25px;
    height: 3px;
    background-color: #FF4FD8;
    margin: 2px 0;
    transition: 0.3s;
}

/* Buttons */
.varviroStableFemLayerBtnPrimary {
    display: inline-block;
    background-color: #FF4FD8;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.5);
    animation: varviroPulse 2s infinite;
}

@keyframes varviroPulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 79, 216, 0.5); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(255, 79, 216, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 79, 216, 0.5); }
}

.varviroStableFemLayerBtnPrimary:hover {
    background-color: #ff7be2;
}

.varviroStableFemLayerBtnSecondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #FF4FD8;
    color: #FF4FD8;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.varviroStableFemLayerBtnSecondary:hover {
    background: #FF4FD8;
    color: #fff;
}

/* Hero Section */
.varviroStableFemLayerHero {
    padding: 150px 0 100px;
    position: relative;
}

.varviroStableFemLayerHeroContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.varviroStableFemLayerHeroLeft, .varviroStableFemLayerHeroRight {
    flex: 1;
}

.varviroStableFemLayerHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 79, 216, 0.2);
    object-fit: cover;
}

.varviroStableFemLayerHeroMiniGallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.varviroStableFemLayerMiniImg {
    width: 30%;
    border-radius: 10px;
    border: 1px solid #FF4FD8;
}

/* Target Section */
.varviroStableFemLayerTarget {
    padding: 100px 0;
    background: rgba(255, 79, 216, 0.02);
}

.varviroStableFemLayerSectionDesc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.varviroStableFemLayerTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.varviroStableFemLayerTargetItem {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    width: calc(33% - 20px);
    border: 1px solid rgba(255, 79, 216, 0.1);
    transition: transform 0.3s;
}

.varviroStableFemLayerTargetItem:hover {
    transform: translateY(-5px);
    border-color: #FF4FD8;
}

.varviroStableFemLayerIcon {
    font-size: 2rem;
    font-weight: bold;
    color: #FF4FD8;
    display: block;
    margin-bottom: 15px;
}

/* Pricing Section */
.varviroStableFemLayerPricing {
    padding: 100px 0;
}

.varviroStableFemLayerPriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.varviroStableFemLayerPriceCard {
    background: #1a001d;
    padding: 40px;
    border-radius: 20px;
    width: calc(33% - 20px);
    border: 2px solid rgba(255, 79, 216, 0.2);
    display: flex;
    flex-direction: column;
}

.varviroStableFemLayerPriceCardFeatured {
    border-color: #FF4FD8;
    transform: scale(1.05);
    background: #250029;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.2);
}

.varviroStableFemLayerPriceValue {
    margin: 20px 0;
}

.varviroStableFemLayerOldPrice {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    margin-right: 10px;
}

.varviroStableFemLayerNewPrice {
    font-size: 2rem;
    font-weight: bold;
    color: #FF4FD8;
}

.varviroStableFemLayerPriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.varviroStableFemLayerPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.varviroStableFemLayerPriceLinks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.varviroStableFemLayerSimpleLink {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Benefits Section */
.varviroStableFemLayerBenefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #120014 0%, #1e0021 100%);
}

.varviroStableFemLayerBenefitsFlex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.varviroStableFemLayerBenefitsText, .varviroStableFemLayerBenefitsImage {
    flex: 1;
}

.varviroStableFemLayerCheckList {
    list-style: none;
}

.varviroStableFemLayerCheckList li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.varviroStableFemLayerCheckList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF4FD8;
    font-weight: bold;
}

.varviroStableFemLayerImgMain {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* Reviews Slider (No JS) */
.varviroStableFemLayerReviews {
    padding: 100px 0;
    background: #120014;
}

.varviroStableFemLayerSliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.varviroStableFemLayerSlideRadio {
    display: none;
}

.varviroStableFemLayerSlides {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.varviroStableFemLayerSlide {
    width: 33.333%;
    padding: 40px;
    text-align: center;
}

.varviroStableFemLayerQuote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.varviroStableFemLayerAuthor {
    font-weight: bold;
    color: #FF4FD8;
    text-transform: uppercase;
}

#varviroSlide1:checked ~ .varviroStableFemLayerSlides { transform: translateX(0%); }
#varviroSlide2:checked ~ .varviroStableFemLayerSlides { transform: translateX(-33.333%); }
#varviroSlide3:checked ~ .varviroStableFemLayerSlides { transform: translateX(-66.666%); }

.varviroStableFemLayerSliderControls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.varviroStableFemLayerControl {
    width: 15px;
    height: 15px;
    border: 2px solid #FF4FD8;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

#varviroSlide1:checked ~ .varviroStableFemLayerSliderControls .varviroStableFemLayerControl:nth-child(1),
#varviroSlide2:checked ~ .varviroStableFemLayerSliderControls .varviroStableFemLayerControl:nth-child(2),
#varviroSlide3:checked ~ .varviroStableFemLayerSliderControls .varviroStableFemLayerControl:nth-child(3) {
    background-color: #FF4FD8;
}

/* FAQ */
.varviroStableFemLayerFaq {
    padding: 100px 0;
}

.varviroStableFemLayerFaqList {
    max-width: 900px;
    margin: 0 auto;
}

.varviroStableFemLayerFaqItem {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 79, 216, 0.2);
}

.varviroStableFemLayerFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
}

.varviroStableFemLayerFaqSummary::-webkit-details-marker {
    display: none;
}

.varviroStableFemLayerFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #FF4FD8;
}

.varviroStableFemLayerFaqItem[open] .varviroStableFemLayerFaqSummary::after {
    content: '-';
}

.varviroStableFemLayerFaqAnswer {
    padding: 0 20px 20px;
    color: #ccc;
}

/* Form */
.varviroStableFemLayerContact {
    padding: 100px 0;
}

.varviroStableFemLayerContactBox {
    max-width: 700px;
    margin: 0 auto;
    background: #1a001d;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #FF4FD8;
}

.varviroStableFemLayerForm {
    margin-top: 40px;
}

.varviroStableFemLayerFormGroup {
    margin-bottom: 25px;
}

.varviroStableFemLayerLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ff8ae6;
}

.varviroStableFemLayerInput, .varviroStableFemLayerTextarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 79, 216, 0.3);
    padding: 15px;
    color: #fff;
    border-radius: 10px;
    font-family: inherit;
}

.varviroStableFemLayerTextarea {
    height: 120px;
    resize: vertical;
}

.varviroStableFemLayerCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.varviroStableFemLayerCheckboxGroup a {
    color: #FF4FD8;
}

.varviroStableFemLayerBtnSubmit {
    width: 100%;
}

/* Extra Sections */
.varviroStableFemLayerExtraSection {
    padding: 80px 0;
}

.varviroStableFemLayerBgAlt {
    background: rgba(255, 79, 216, 0.03);
}

.varviroStableFemLayerTextContent {
    max-width: 1000px;
    margin: 0 auto;
}

.varviroStableFemLayerCommonList {
    margin: 20px 0 30px 20px;
}

.varviroStableFemLayerCommonList li {
    margin-bottom: 10px;
}

/* Footer */
.varviroStableFemLayerFooter {
    background: #0a000b;
    padding: 80px 0 40px;
    border-top: 2px solid #FF4FD8;
}

.varviroStableFemLayerFooterTop {
    text-align: center;
    margin-bottom: 50px;
}

.varviroStableFemLayerFooterBrand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF4FD8;
    margin-bottom: 20px;
}

.varviroStableFemLayerFooterTop a {
    color: #fff;
    text-decoration: none;
}

.varviroStableFemLayerFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #888;
}

.varviroStableFemLayerFooterNav a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
}

.varviroStableFemLayerFooterNav a:hover {
    color: #FF4FD8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .varviroStableFemLayerH1 { font-size: 2.8rem; }
    .varviroStableFemLayerHeroContent, .varviroStableFemLayerBenefitsFlex {
        flex-direction: column;
        text-align: center;
    }
    .varviroStableFemLayerTargetItem, .varviroStableFemLayerPriceCard {
        width: calc(50% - 20px);
    }
    .varviroStableFemLayerPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .varviroStableFemLayerBurger { display: flex; }
    .varviroStableFemLayerNav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #120014;
        transition: 0.4s;
        border-bottom: 1px solid #FF4FD8;
    }
    .varviroStableFemLayerNavList {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }
    .varviroStableFemLayerNavLink {
        margin: 15px 0;
        font-size: 1.2rem;
    }
    #varviroStableFemLayerMenuToggle:checked ~ .varviroStableFemLayerNav {
        left: 0;
    }
    .varviroStableFemLayerTargetItem, .varviroStableFemLayerPriceCard {
        width: 100%;
    }
    .varviroStableFemLayerFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .varviroStableFemLayerFooterNav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .varviroStableFemLayerFooterNav a {
        margin: 0;
    }
}