/* ===================== SAMPLE KIT PAGE STYLES ===================== */

/* ===================== SAMPLE KIT HERO ===================== */
.sk-hero {
    background: linear-gradient(135deg, #000000 0%, #051508 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.sk-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sk-hero-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 420px;
}

.sk-hero-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* ===================== WHAT'S INSIDE (Light Section) ===================== */
.whats-inside {
    background-color: #f4f1eb;
    padding: 70px 0;
}

.section-title-light {
    text-align: center;
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leaf-decor-light {
    color: var(--primary-green-dark);
    margin: 0 15px;
    font-size: 18px;
}

.inside-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.inside-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inside-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.inside-title {
    color: var(--primary-green-dark);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.inside-text {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ===================== WHY START WITH SAMPLE KIT ===================== */
.why-sample-kit {
    background: linear-gradient(135deg, #051508 0%, #0a1f0a 100%);
    padding: 70px 0;
}

.why-image {
    max-width: 100%;
}

.why-sk-eyebrow {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.why-sk-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.why-sk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-sk-list li {
    color: #ffffff;
    font-size: 14px;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.why-sk-list li i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(20, 40, 20, 0.5);
    border: 1px solid rgba(184, 215, 74, 0.25);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-title {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.benefit-text {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
}

/* ===================== ORDER SECTION ===================== */
.order-section {
    background-color: #f4f1eb;
    padding: 50px 0;
}

.limited-offer-badge {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-color: var(--primary-green);
    color: #000;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.4);
}

.order-img {
    max-width: 100%;
}

.order-title {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.order-subtitle {
    color: #555;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price-box {
    background-color: var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.3);
}

.price-amount {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.price-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-order-now {
    background-color: var(--primary-green);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-order-now:hover {
    background-color: var(--primary-green-dark);
    color: #000;
    transform: translateY(-2px);
}

.order-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.order-feature-icon {
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--primary-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.order-feature-title {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.order-feature-text {
    color: #555;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* ===================== HOW IT WORKS LIGHT ===================== */
.how-it-works-light {
    background-color: #f4f1eb;
    padding: 30px 0 60px;
}

.hiw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.hiw-step {
    flex: 1;
}

.hiw-step-content {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 215, 74, 0.2);
    transition: all 0.3s ease;
}

.hiw-step-content:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.hiw-number {
    background-color: var(--primary-green);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.hiw-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.hiw-text h5 {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.hiw-text p {
    color: #555;
    font-size: 11px;
    margin: 0;
    line-height: 1.3;
}

.hiw-arrow {
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-green);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-green-dark);
    color: #000000;
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .sk-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .sk-hero-title {
        font-size: 42px;
    }

    .sk-hero-desc {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    .sk-hero-img {
        margin-top: 40px;
    }

    .why-sample-kit {
        text-align: center;
    }

    .why-sk-list li {
        text-align: left;
    }

    .why-image {
        margin-bottom: 30px;
    }

    .benefit-card {
        text-align: left;
        margin-top: 15px;
    }

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

    .order-feature {
        text-align: left;
        margin-top: 25px;
    }

    .hiw-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hiw-step {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .limited-offer-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto 15px;
    }
}

@media (max-width: 767px) {
    .sk-hero-title {
        font-size: 34px;
    }

    .section-title-light {
        font-size: 22px;
    }

    .why-sk-title {
        font-size: 28px;
    }

    .order-title {
        font-size: 20px;
    }

    .price-amount {
        font-size: 30px;
    }

    .inside-img {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .sk-hero-title {
        font-size: 28px;
    }

    .why-sk-title {
        font-size: 24px;
    }

    .section-title-light {
        font-size: 18px;
    }
}
