.our-product {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.our-product .bg-abstract {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.title-product {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.title-product .teks-1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #fff;
    gap: 0;
    margin: 0;
}

.title-product .teks-2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #f38128;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0;
}

.product-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
    padding: 0 40px;
    width: 100%;
    max-width: 1200px;
}

.product-image {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.product-image img {
    width: 250px;
    position: relative;
    z-index: 2;
}

.product-image::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.9);
    filter: blur(9px);
    border-radius: 50%;
    z-index: 1;
}

.product-info {
    max-width: 500px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-align: justify;
}

.product-info .highlight {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.product-info .desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #f38128;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-order .icon {
    width: 18px;
    height: 18px;
}

.btn-order:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
}

.btn-order:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 0 10px rgba(255, 215, 0, 1);
}

@media (max-width: 1024px) {
    .our-product {
        height: auto;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 40px;
        justify-content: flex-start;
    }

    .our-product .bg-abstract {
        object-position: center center;
    }

    .title-product {
        margin-top: 20px;
    }

    .title-product .teks-1 {
        font-size: 2.5rem;
    }

    .title-product .teks-2 {
        font-size: 2.5rem;
        padding: 5px 12px;
    }

    .product-content {
        gap: 40px;
        margin-top: 25px;
        padding: 0 30px;
    }

    .product-image img {
        width: 220px;
    }

    .product-info {
        max-width: 450px;
    }

    .product-info .highlight {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .product-info .desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-order {
        padding: 11px 18px;
    }
}

@media (max-width: 768px) {
    .our-product {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
        justify-content: flex-start;
    }

    .our-product .bg-abstract {
        object-position: center center;
    }

    .title-product {
        margin-top: 15px;
    }

    .title-product .teks-1 {
        font-size: 2rem;
    }

    .title-product .teks-2 {
        font-size: 2rem;
        padding: 4px 10px;
        border-radius: 16px;
    }

    .product-content {
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
        padding: 0 25px;
    }

    .product-image img {
        width: 200px;
    }

    .product-image::after {
        height: 35px;
        bottom: 3px;
    }

    .product-info {
        max-width: 100%;
        text-align: center;
    }

    .product-info .highlight {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .product-info .desc {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
    }

    .btn-order {
        padding: 10px 16px;
    }
}

@media (max-width: 640px) {
    .our-product {
        height: auto;
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .our-product .bg-abstract {
        object-position: center top;
    }

    .title-product .teks-1 {
        font-size: 1.75rem;
    }

    .title-product .teks-2 {
        font-size: 1.75rem;
        padding: 4px 10px;
        border-radius: 14px;
    }

    .product-content {
        flex-direction: column;
        gap: 25px;
        margin-top: 25px;
        padding: 0 20px;
    }

    .product-image img {
        width: 180px;
    }

    .product-image::after {
        height: 30px;
        bottom: 2px;
        filter: blur(8px);
    }

    .product-info {
        max-width: 100%;
        text-align: center;
    }

    .product-info .highlight {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .product-info .desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 18px;
        text-align: center;
    }

    .btn-order {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .btn-order .icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .our-product {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .our-product .bg-abstract {
        object-position: center top;
    }

    .title-product .teks-1 {
        font-size: 1.5rem;
    }

    .title-product .teks-2 {
        font-size: 1.5rem;
        padding: 3px 8px;
        border-radius: 12px;
    }

    .product-content {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 0 15px;
    }

    .product-image img {
        width: 160px;
    }

    .product-image::after {
        height: 28px;
        bottom: 2px;
        filter: blur(7px);
    }

    .product-info {
        max-width: 100%;
        text-align: center;
    }

    .product-info .highlight {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .product-info .desc {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 16px;
        text-align: center;
    }

    .btn-order {
        padding: 9px 15px;
        font-size: 0.9rem;
    }

    .btn-order .icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 375px) {
    .our-product {
        height: auto;
        min-height: auto;
        padding-top: 35px;
        padding-bottom: 25px;
    }

    .our-product .bg-abstract {
        object-position: center top;
    }

    .title-product .teks-1 {
        font-size: 1.3rem;
    }

    .title-product .teks-2 {
        font-size: 1.3rem;
        padding: 3px 8px;
        border-radius: 10px;
    }

    .product-content {
        flex-direction: column;
        gap: 18px;
        margin-top: 18px;
        padding: 0 12px;
    }

    .product-image img {
        width: 140px;
    }

    .product-image::after {
        height: 25px;
        bottom: 2px;
        filter: blur(6px);
    }

    .product-info {
        max-width: 100%;
        text-align: center;
    }

    .product-info .highlight {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .product-info .desc {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 14px;
        text-align: center;
    }

    .btn-order {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .btn-order .icon {
        width: 14px;
        height: 14px;
    }
}
