:root {
    --primary-color: #0984e3;
    --bg-gray: #f1f2f6;
    --text-dark: #2d3436;
    --transition: all 0.2s ease-in-out;

    --beauty-primary: #339c37;
    /* Indigo lembut */
    --beauty-primary-light: #e0e7ff;
    --beauty-accent: #f43f5e;
    /* Rose accent */
    --beauty-text-main: #1f2937;
    --beauty-text-muted: #6b7280;
    --beauty-bg: #f9fafb;
    --beauty-card-bg: #ffffff;
    --transition-elegant: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: "Plus Jakarta Sans", sans-serif;
    /* Pastikan font ini dimuat */
}

.beauty-card {
    border: none;
    border-radius: 20px;
    /* Sudut lebih melengkung agar terlihat modern & 'soft' */
    overflow: hidden;
    /* Shadow yang sangat halus agar terlihat mengambang elegan */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.beauty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.beauty-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Gambar memenuhi area tanpa distorsi */
    transition: transform 0.5s ease;
}

.beauty-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-title {
    font-family: "Poppins", sans-serif;
    /* Pastikan load font Poppins/Montserrat biar cantik */
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.4;
    /* Menjaga tinggi title max 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 0.85rem;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 0;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    /* Warna utama cantik (misal: Teal/Pink/Custom Primary) */
    color: #0984e3;
    letter-spacing: -0.5px;
}

/* 4. Custom Quantity Styling */
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
    /* Sedikit lebih lebar agar tidak sesak */
    padding: 4px;
    background-color: var(--bg-gray);
    border-radius: 12px;
    /* Border radius moderat lebih modern dari pill-shape */
    transition: var(--transition);
    border: 1px solid transparent;
}

.qty-selector:focus-within {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qty-selector .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.qty-selector .qty-input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

/* 5. WhatsApp Button Styling */
.btn-whatsapp-order {
    background: linear-gradient(45deg, #25d366, #128c7e);
    /* Gradient hijau WA */
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-order:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
    background: linear-gradient(45deg, #128c7e, #25d366);
}

.btn-whatsapp-order:active {
    transform: translateY(1px);
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-item.active .page-link {
    background-color: #198754;
    /* Warna hijau sesuai WhatsApp/Concrete theme */
    border-color: #198754;
}

.page-link {
    color: #198754;
    border-radius: 5px;
}

/* Career */
.beauty-career-section {
    padding: 100px 0;
    /* Padding atas-bawah yang lega */
    position: relative;
    background-color: var(--beauty-bg);
    overflow: hidden;
    min-height: 100vh;
    /* Memastikan section minimal seukuran layar */
    display: flex;
    flex-direction: column;
}

/* Elemen Dekoratif Latar Belakang */
.bg-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.bg-deco-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--beauty-primary-light);
}

.bg-deco-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: #ffe4e6;
    /* Rose light */
}

.container {
    position: relative;
    z-index: 1;
    flex: 1;
    /* Membiarkan container tumbuh mengisi space */
}

/* -----------------------------------------------------------
       3. HEADER SECTION (Elegant Minimalism)
    ----------------------------------------------------------- */
.title-area {
    margin-bottom: 70px;
}

.title-area .sec-subtitle {
    color: var(--beauty-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: block;
}

.title-area .sec-title {
    color: var(--beauty-text-main);
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.2;
    letter-spacing: -1.8px;
    background: linear-gradient(to right, var(--beauty-text-main), #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .title-area .sec-title {
        font-size: 2.4rem;
    }
}

/* -----------------------------------------------------------
       4. JOB CARD (Bento-Box Glassmorphism)
    ----------------------------------------------------------- */
.job-list-wrapper {
    display: grid;
    gap: 25px;
}

.beauty-job-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 35px;
    transition: var(--transition-elegant);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Hover State */
.beauty-job-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
    border-color: var(--beauty-primary-light);
    background: rgba(255, 255, 255, 1);
}

/* 5. LOGO & INFO */
.card-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.logo-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #f3f4f6;
    transition: var(--transition-elegant);
}

.beauty-job-card:hover .logo-box {
    transform: rotate(-5deg);
    border-color: var(--beauty-primary-light);
}

.job-details .job-type-tag {
    display: inline-block;
    background-color: var(--beauty-primary-light);
    color: var(--beauty-primary);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.job-details .job-title {
    color: var(--beauty-text-main);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: var(--transition-elegant);
}

.beauty-job-card:hover .job-title {
    color: var(--beauty-primary);
}

.job-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--beauty-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.job-meta-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.job-meta-info i {
    color: #d1d5db;
    /* Abu-abu ultra lembut */
    transition: var(--transition-elegant);
}

.beauty-job-card:hover .job-meta-info i {
    color: var(--beauty-primary);
}

/* 6. ACTION & SALARY (Right Side) */
.card-right {
    text-align: right;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.salary-tag {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--beauty-text-main);
    letter-spacing: -0.5px;
}

.salary-tag span {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--beauty-text-muted);
    display: block;
}

/* 7. PREMIUM BUTTON (Minimalist & Sleek) */
.btn-apply-beauty {
    background: var(--beauty-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-elegant);
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.2);
}

.btn-apply-beauty:hover {
    background: #339c37;
    /* Warna indigo lebih gelap sedikit */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.3);
}

.btn-apply-beauty i {
    transition: var(--transition-elegant);
}

.btn-apply-beauty:hover i {
    transform: translateX(4px);
}

/* 8. DEADLINE (Rose Soft Tag) */
.deadline-beauty {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(244, 63, 94, 0.06);
    /* Rose ultra-transparan */
    color: var(--beauty-accent);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(244, 63, 94, 0.1);
}

/* -----------------------------------------------------------
       9. BOTTOM CTA (Mengisi Space Bawah)
    ----------------------------------------------------------- */
.bottom-cta-wrapper {
    margin-top: 90px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta-wrapper p {
    color: var(--beauty-text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bottom-cta-wrapper .btn-general {
    color: var(--beauty-primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--transition-elegant);
}

.bottom-cta-wrapper .btn-general:hover {
    background-color: var(--beauty-primary-light);
}

/* -----------------------------------------------------------
       10. RESPONSIVENESS (Mobile First)
    ----------------------------------------------------------- */
@media (max-width: 991px) {
    .beauty-job-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .card-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .logo-box {
        width: 70px;
        height: 70px;
    }

    .card-right {
        margin-left: 0;
        margin-top: 25px;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
    }

    .bottom-cta-wrapper {
        margin-top: 60px;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .job-title {
        font-size: 1.3rem;
    }

    .job-meta-info {
        gap: 8px 15px;
        font-size: 0.85rem;
    }

    .card-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .salary-tag span {
        display: inline;
        margin-left: 5px;
    }

    .bottom-cta-wrapper .btn-general {
        font-size: 0.9rem;
    }
}

/* End Career */