:root {
    --primary-green: #416436;
    /* --bg-green-light: #b8ccae; */
    --bg-green-light: #d0ff7a;
    --btn-txt-green: #dadbb1;
}

body {
    background-color: #fff;
    background-image: none;
}

.career-hero {
    padding: 100px 0 0;
    color: white;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: end;
}

.career-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 235, 59, 0.4),
            rgba(208, 255, 122, 0.35));
    z-index: 1;
}

.career-hero::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    border-radius: 50px 50px 0 0;
    z-index: 2;
}

.career-hero .container {
    position: relative;
    z-index: 3;
}

.career-search-box {
    background: #d6e17d;
    padding: 25px;
    border-radius: 20px;
}


.career-search-box select,
.career-search-box input {
    flex: 1;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
}

.career-search-box button {
    background: var(--primary-green);
    color: var(--btn-txt-green);
    border: none;
    padding: 12px;
    border-radius: 50px;
}

.btn-career {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.job-list-wrapper {
    position: relative;
}

.job-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.job-card:hover {
    background: #e9f7ec;
}

.job-card.active {
    background: #e2f4e8;
    border: 1px solid var(--bg-green-light);
}

.job-category {
    background: var(--primary-green);
    color: var(--btn-txt-green);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
}

.job-title {
    font-weight: 600;
    padding-bottom: 5px;
}

.job-meta {
    display: inline-block;
    font-size: 13px;
    color: #666;
}

.job-meta i,
span {
    margin-right: 5px;
}

.job-date {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: #999;
}

/* === DETAIL === */
.job-detail-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;

    /* membatasi tinggi card */
    height: 850px;
    overflow-y: auto;
    transition: opacity 0.2s ease;
}

.job-detail-title {
    font-weight: 600;
}

.job-detail-subtitle {
    font-size: 15px;
    margin-top: -5px;
    margin-bottom: 15px;
    color: #000;
}

.job-detail-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.job-detail-meta i {
    font-size: 15px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-green);
    color: var(--btn-txt-green);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.2s;
}

.job-detail-desc {
    font-size: 15px;
    color: #000;
    text-align: justify;
    line-height: 1.8;
}

.contact-section {
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    #jobDetail {
        display: none;
    }

    .job-card {
        cursor: pointer;
        margin-bottom: 15px;
    }
}

/* PRODUCT PAGE */
.product-section {
    padding: 60px 50px;
    background: #fff;
}

.product-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 0.8fr 1fr 300px;
    gap: 40px;
    align-items: start;
}

@media (max-width:1024px) {

    .product-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .product-right {
        grid-column: 1 / -1;
    }

    .product-left {
        max-width: 100%;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

}

@media (max-width:768px) {

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-left {
        order: 2;
        max-height: none;
        overflow: visible;
    }

    .product-center {
        order: 1;
    }

    .product-right {
        order: 3;
    }

}

.product-left {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* group */
.config-group {
    margin-bottom: 25px;
}

.group-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.gender-tabs {
    display: flex;
    gap: 10px;
}

.gender-tabs .tab {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: .2s;
}

.gender-tabs .tab:hover {
    border-color: #7BC043;
    color: #7BC043;
}

.gender-tabs .tab.active {
    border-color: #7BC043;
    color: #7BC043;
    background: #f6ffe9;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.radio-item {
    font-size: 14px;
    cursor: pointer;
}

.product-select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 5px;
}

.model-icons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.model-item {
    text-align: center;
    cursor: pointer;
}

.model-item img {
    width: 55px;
    opacity: .7;
    transition: .2s;
}

.model-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.model-item p {
    font-size: 13px;
    margin-top: 6px;
}

.accordion {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.option-group {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.drop-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 6px;
    padding-bottom: 10px;
}

.option-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
}

.option-trigger img {
    width: 70px;
    height: auto;
    transform-origin: center;
}

.model-item,
.option-trigger {
    position: relative;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.model-item.active::after,
.option-trigger.active::after {
    content: "✔";
    position: absolute;
    top: 4px;
    right: 4px;

    width: 18px;
    height: 18px;

    background: #7BC043;
    color: white;

    font-size: 12px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.product-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.product-preview {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
}

.layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.layer[src=""] {
    display: none;
}

/* RIGHT */
#productRight {
    display: none;
}

.product-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.product-right h3 {
    margin-bottom: 20px;
}

.summary {
    font-size: 14px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.quantity-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.quantity-box input {
    width: 80px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.min-order {
    margin-top: 8px;
    font-size: 13px;
    color: #777;
}

.order-btn {
    margin-top: 25px;
    padding: 12px 25px;
    border-radius: 25px;
    background: #b6e75c;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.order-btn:hover {
    background: #a0d94a;
}