@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.main-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.split {
    height: 100%;
}

.split1 {
    width: 50%; 
    display: flex;
    flex-direction: column-reverse;
    padding: 20px 0;
}

.split2 {
    width: 50%;
    padding: 20px 20px 0 0;
    font-size: 0.8rem;
}

.product-wrapper {
    background: linear-gradient(90deg, #000, #d8a14e, #000);
    border-radius: 8px;
}

.products {
    width: 95%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-evenly;
    position: relative;
}

.img-box {
    width: 100%;
    border-radius: 5px;
}

.img-box img {
    border-radius: 8px;
    width: 100%;
    height: 45vh;
    display: block;
    object-fit: cover;
}

.details-box {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 5px;
    backdrop-filter: blur(1px);
    text-align: center;
}

.details-box h3 {
    text-align: center;
    color: #000;
    margin-top: 15px;
    text-decoration: underline;
}

.details-box p {
    color: #000;
    padding: 5px 7px;
    margin-top: 5%;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.details-box p span {
    color: red;
}

.details-box .last {
    border-bottom: none;
}

.price-options {
    width: calc(50% + 100px);
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
    padding: 8px 10px;
    margin-bottom: 20px;
    background-color: #00000080;
}

.all-flex {
    border-radius: 8px;
    width: 95%;
    margin: 4px auto;
}

.flex-products {
    width: 95%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}

.flex-products .clone_products {
    width: 50%;
    min-height: 290px;
    margin: 0 10px;
    border-radius: 8px;
}

.clone_products img {
    height: 205px;
    min-height: 39vh;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.price-btn {
    background-color: #fb923c;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    margin-top: -6px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #000;
}

.price-btn .ten1050 {
    font-size: 0.85rem;
}

.price-list {
    font-weight: 600;
    font-size: 0.95rem;
    width: 50%;
    margin-top: -5px;
}

.price-list .priz {
    color: #fff;
    padding-top: 8px;
}

.priz span {
    color: red;
    font-size: 1.25rem;
    animation: blink 3s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.price-box {
    width: 50%;
}

.price {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 4px;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: all 0.3s ease-in-out;
    font-size: 0.85rem;
    width: 80%;
    margin-left: 20%;
}

.price:hover {
    background-color: #fb923c;
    color: #fff;
    color: #000;
    transform: scale(0.93);
}

.features {
    border-radius: 5px;
    color: #fff;
    margin-top: 15px;
    border: 1px solid #fb923c;
    background-color: #000;
    user-select: none;
}

.features p {
    padding: 12px;
    letter-spacing: 1px;
}

.features p span {
    color: red;
}

.faq {
    border: 1px solid #fb923c;
    border-radius: 5px;
    padding: 25px;
    min-height: 35vh;
    letter-spacing: 1px;
    margin-top: 20px;
    background-color: #000;
}

.faq h3 {
    text-align: center;
    text-decoration: underline;
}

.faq details {
    border-radius: 5px;
    background-color: rgba(251, 146, 60, 0.6);
    padding: 7px;
    margin: 15px 0;
}

.faq details summary {
    font-weight: 600;
    cursor: pointer;
}

.faq details summary:hover {
    color: #000000;
}

.faq details p {
    background-color: #fb923c;
    color: #000;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    margin: 7px 0;
    padding: 6px;
}

.product-title {
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid #fb923c;
    user-select: none;
}

.title-text {
    color: #fff;
    padding: 12px;
    margin-top: 15px;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #000;
}

.title-text span {
    color: red;
    font-size: 0.85rem;
}

.main-wrapper {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-box {
    margin: 0 auto;
    padding: 15px;
    border-radius: 3px;
    text-align: center;
    color: #000;
    padding: 30px;
    background-color: #fff;
    z-index: 998;
}

.description {
    padding: 4px;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.btn {
    border: none;
    cursor: pointer;
    padding: 0 8px 4px 8px;
    border-radius: 3px;
    font-size: 0.85rem;
    background-color: #000;
    color: #fff;
    font-family: system-ui, sans-serif;
}

.btn a {
    text-decoration: none;
    color: #fff;
    padding: 0;
}

.fa-triangle-exclamation {
    font-size: 1.3rem;
    color: #333;
}

.fa-circle-check {
    font-size: 1.3rem;
    color: green;
}

.fa-circle-xmark{
    font-size: 1.3rem;
    color: red;
}

.fa-sack-dollar {
    font-size: 1.3rem;
    color: green;
} 

.hidden { 
    display: none;
}




/* Mobile Screens */
@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 70%;
        margin: 0 15%;
        margin-top: 25px;
        font-size: 1rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 70%;
        margin: 0 15%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 70%;
        margin: 0 15%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 1rem;
        width: 100%;
    }
    
    .products {
        width: 95%;
        margin: 0 auto;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .flex-products {
        width: 100%;
    }

    .flex-products .clone_products {
        width: 46%;
    }

    .price {
        font-size: 1rem;
    }

    .details-box {
        width: 100%;
        text-align: center;
        margin: 5px 0;
        font-size: 1rem;
        
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 45vh;
    }

    .price {
        font-size: 1rem;
    }

}





@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
        font-size: 1rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 90%;
        margin: 0 5%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 1rem;
        width: 100%;
    }
    
    .products {
        width: 90%;
        margin: 0 auto;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 8px;
    }

    .all-flex {
        width: 100%;
    }

    .flex-products {
        width: 100%;
        margin: 10px auto;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .flex-products .clone_products {
        width: 70%;
        margin: 15px auto;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 50vh;
    }

    .price {
        font-size: 0.85rem;
    }

}




@media (max-width: 640px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
        font-size: 1rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 90%;
        margin: 0 5%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 1rem;
        width: 100%;
    }
    
    .products {
        width: 90%;
        margin: 0 5%;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .flex-products {
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .flex-products .clone_products {
        width: 80%;
        margin: 15px auto;
    }

    .clone_products img{
        min-height: 38vh;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 50vh;
    }

} 


@media (max-width: 475px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
        font-size: 0.88rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 90%;
        margin: 0 5%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 0.85rem;
        width: 100%;
    }
    
    .products {
        width: 95%;
        margin: 0 2.5%;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .flex-products {
        width: 100%;
        flex-direction: column;
    }

    .flex-products .clone_products {
        width: 90%;
        margin: 15px auto;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 60vh;
    }

    .products .details-box {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        padding: 30px;
        border-radius: 5px;
        backdrop-filter: blur(1px);
        text-align: center;
    }
    
}


@media (max-width: 375px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
        font-size: 0.88rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 90%;
        margin: 0 5%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 0.85rem;
        width: 100%;
    }
    
    .products {
        width: 95%;
        margin: 0 2.5%;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .flex-products .clone_products {
        width: 90%;
        margin: 15px auto;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 60vh;
    }

    .products .details-box {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        padding: 20px;
        border-radius: 5px;
        backdrop-filter: blur(1px);
        text-align: center;
    }
    
}




@media (max-width: 320px) {
    .main-wrapper {
        flex-direction: column-reverse;
        max-width: 100%;
    }
    
    .split {
        width: 100%;
    }
    
    .split1 {
        width: 100%;
        padding: 0;
    }
    
    .split2 {
        width: 100%;
        padding: 0;
    }
    
    .features {
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
        font-size: 0.85rem;
    }
    
    .features p {
        text-align: justify;
    }
    
    .faq {
        padding: 12px;
        width: 90%;
        margin: 0 5%;
        margin-top: 25px;
    }
    
    .faq h3 {
        text-align: center;
        text-decoration: underline;
    }
    
    .product-title {
        width: 90%;
        margin: 0 5%;
        margin-top: 20px;
    }
    
    .title-text {
        font-size: 0.85rem;
        width: 100%;
    }
    
    .products {
        width: 90%;
        margin: 0 5%;
        min-height: 30vh;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .flex-products {
        flex-direction: column;
        width: 95%;
        margin: 0 auto;
    }

    .flex-products .clone_products {
        width: 100%;
        margin: 15px auto;
    }
    
    .img-box {
        width: 100%;
    }
    
    .img-box img {
        width: 100%;
        height: 50vh;
    }
    
    .products .details-box {
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        backdrop-filter: blur(1px);
        text-align: center;
    }
}