/***********************
    TOP PAGE dk
************************/
.dk_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
}
.page_hero{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.dk_menu{
    width: 15%;
}
.page_section_one{
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2REM;
}
.page_section_one .site_title{
    margin-bottom: 1rem;
}
.page_section_one .section_title{
    margin: 0;
}
.page_section_one  .title_connection{
    padding: 0;
    width: fit-content
}
/***********************
    TOP PAGE mb
************************/
.top_page_mobile .section_title{
    margin-top: 2rem;
}
/***********************
    SOFTWARE CARDS
************************/
.sw_card_row{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
}
.sw_card_col{
    min-width: 345px;
    width: calc((100% - 1rem * 2) / 3);
    padding: 3rem 1.5rem;
    background-color: var(--logo);
    border: 5px solid var(--black_logo);
    border-radius: 30px;
    box-shadow: var(--color_sdw);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 150ms linear;
}
.sw_card_col:hover{
    border: 5px solid var(--green);
}
svg path{
    transition: all 250ms linear;
}
.sw_card_col:hover svg path{
    fill: var(--green);
}
.sw_card_col:active{
    box-shadow: none;
}
.sw_card_col h3{
    color: var(--white);
    font-size: 36px;
    line-height: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.sw_card_col div{
    text-align: center;
    color: var(--black_logo);
    font-size: 15px;
    line-height: 1.5rem;
    font-weight: 300;
}
.sw_card_col svg{
    margin-top: 5rem;
}
@media screen and (max-width: 1335px){
    .sw_card_col{
        min-width: 330px;
        padding: 2rem 1rem;
    }
    .sw_card_col h3{
        font-size: 32px;
    }
    .sw_card_col svg{
        margin-top: 3rem;
    }
}
@media screen and (max-width: 1285px){
    .sw_card_col{
        min-width: 310px;
        padding: 2.5rem 1rem;
    }
    .sw_card_col h3{
        font-size: 28px;
    }
}
@media screen and (max-width: 1220px){
    .sw_card_col{
        min-width: 300px;
    }
}
@media screen and (max-width: 1185px){
    .sw_card_col{
        min-width: 280px;
    }
}
@media screen and (max-width: 1130px){
    .sw_card_row{
        width: 95%;
    }
    .page_hero{
        flex-direction: column;
    }
    .dk_menu{
        width: 100%;
    }
    .page_section_one{
        width: 100%;
    }
    .logo_dk{
        display: none;
    }
}
@media screen and (max-width: 1024px){
    .sw_card_row{
        flex-wrap: wrap;
        gap: 2rem;
    }
    .sw_card_col{
        min-width: auto;
        width: calc((100% - 2rem) / 2);
    }
}
@media screen and (max-width: 768px){
    .sw_card_row{
        gap: 1.5rem;
    }
    .sw_card_col{
        width: calc((100% - 1.5rem) / 2);
    }
}
@media screen and (max-width: 670px){
    .sw_card_row{
        gap: 2rem;
        max-width: 350px;
        width: 100%;
    }
    .sw_card_col{
        width: 100%;
    }
}
@media screen and (max-width: 430px){
    .top_page_mobile .section_title{
        margin-top: 1.5rem;
    }
    .sw_card_row{
        width: 95%;
    }
    .connection_dots {
        width: 23px;
        height: 17px;
    }
}
@media screen and (max-width: 375px){
    .sw_card_col h3{
        font-size: 20px;
        margin-bottom: 1rem;
    }
    .sw_card_col div{
        font-size: .85rem;
    }
    .connection_dots {
        width: 22px;
        height: 15px;
    }
}
@media screen and (max-width: 320px){
    .sw_card_col h3{
        font-size: 18px;
    }
    .page_section_one .site_title{
        margin-bottom: 0;
    }
    .connection_dots {
        width: 25px;
        height: 15px;
    }
}
/***********************
    SHOP CARDS
************************/
.shop_row{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}
.shop_card{
    width: calc((100% - 2rem * 2) / 3);
    padding: 1.5rem;
    border: 5px solid var(--tab_stroke);
    border-radius: 1.88rem;
    box-shadow: var(--color_sdw);
    transition: all .3s linear;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    gap: 10px;
    place-items: space-between;
    grid-template-areas:
    "tags"
    "title"
    "image"
    "arrow";
}
.shop_tags{
    grid-area: tags;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shop_tags img{
    width: 65px;
}
.shop_tags img:nth-child(2){
    width: 60px;
}
.shop_card h3{
    grid-area: title;
    width: 100%;
    height: 80px;
    overflow: hidden;
    text-align: center;
    font-size: 26px;
    margin: 1rem 0;
}
.shop_preview{
    grid-area: image;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    border: 3px solid var(--black_logo);
    border-radius: 0.31rem;
    transition: all .3s linear;
}
.shop_arrow{
    grid-area: arrow;
    place-self: end;
    margin-top: 2rem;
}
.shop_card:hover{
    border: 5px solid var(--green);
}
.shop_card:hover .shop_arrow svg path:nth-child(2){
    fill: var(--green);
}
.shop_card:hover .shop_arrow svg path:nth-child(1){
    fill: transparent;
}
.shop_card:hover .shop_preview{
    border: 3px solid var(--green);
}
.shop_card:active{
    box-shadow: none;
}
@media screen and (max-width: 1440px){
    .shop_preview{
        min-height: 225px;
    }
}
@media screen and (max-width: 1280px){
    .shop_preview{
        min-height: 200px;
    }
    .shop_card h3{
        font-size: 24px;
        margin: .8rem 0;
    }
    .shop_arrow{
        margin-top: 1.5rem;
    }
}
@media screen and (max-width: 1150px){
    .shop_preview{
        min-height: 250px;
    }
    .shop_card{
        width: calc((100% - 2rem) / 2);
    }
}
@media screen and (max-width: 860px){
    .shop_preview{
        min-height: 180px;
    }
}
@media screen and (max-width: 768px){
    .shop_preview{
        min-height: 250px;
    }
    .shop_card{
        width: 70%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 660px){
    .shop_card{
        width: 80%;
    }
}
@media screen and (max-width: 560px){
    .shop_card{
        width: 90%;
    }
    .shop_preview{
        min-height: 200px;
    }
}
@media screen and (max-width: 440px){
    .shop_card{
        width: 100%;
    }
    .shop_card h3{
        font-size: 22px;
    }
}
@media screen and (max-width: 375px){
    .shop_preview{
        min-height: 200px;
    }
}
@media screen and (max-width: 320px){
    .shop_preview{
        min-height: 180px;
    }
    .shop_card h3{
        font-size: 18px;
    }
}
/***********************
    PAGINATION
************************/
.pagination{
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prev,
.next{
    font-family: var(--txt_title);
    font-size: 21px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--violet);
    padding: .6rem 1rem;
    border-radius: 12px;
    box-shadow: var(--color_sdw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}
.prev:hover svg path,
.next:hover svg path{
    fill: var(--green);
}
.prev:active,
.next:active{
    box-shadow: none;
}
.disabled {
    pointer-events: none; /* Impedisce al link di essere cliccato */
    opacity: 0.5; /* Opacità ridotta per indicare che il link non è cliccabile */
    cursor: not-allowed; /* Cambia il cursore quando il link non è cliccabile */
}
@media screen and (max-width: 430px){
    .prev,
    .next{
        font-size: 18px;
    }
}
/***********************
    FILTERS
************************/
.shop_filters{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}
.select_container{
    position: relative;
}
.shop_select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: var(--tab_bg);
    color: var(--tab_stroke);
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 15px;
    border: 5px solid var(--tab_stroke);
    outline: none;
    font-size: 1rem;
    text-transform: capitalize;
    font-family: var(--txt_body);
}
.fa-chevron-down{
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tab_stroke);
    pointer-events: none;
}
.shop_select option{
    text-transform: capitalize;
}
.free_filter{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
.free_filter input{
    accent-color: var(--green);
}
.free_filter label{
    color: var(--green);
    font-family: var(--txt_title);
    font-weight: 600;
    font-size: 18px;
}
.filter_btn{
    border:none;
    border-radius: 12px;
    border: 5px solid var( --violet);
    background-color: var(--white);
    color: var(--violet);
    padding: .85rem 1.5rem;
    font-size: 1.1rem;
    font-family: var(--txt_title);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--color_sdw);
    cursor: pointer;
    transition: all .3s linear;
}
.filter_btn:hover{
    background-color: var(--violet);
    color: var(--white);
}
.filter_btn:active{
    box-shadow: none;
}
.shop_noresult{
    /* margin: 5rem 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.shop_noresult img{
    width: 80px;
}
.shop_noresult span{
    color: var(--red);
    font-size: 18px;
    font-family: var(--txt_body);
    font-weight: 500;
}
@media screen and (max-width: 1130px){
    .shop_filters{
        margin-bottom: 3rem;
    }
}
@media screen and (max-width: 530px){
    .shop_filters{
        flex-direction: column;
    }
    .filter_btn{
        font-size: 1rem;
    }
}
@media screen and (max-width: 320px){
    .filter_btn,
    .free_filter label,
    .shop_select{
        font-size: .85rem;
    }
}
/***************************
    SHOW - SINGLE PRODUCT
***************************/
.product_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
    margin-bottom: 5rem;
}
.product_col_l{
    width: 70%;
}
.product_col_l h1{
    max-width: 800px;
    width: 100%;
    font-size: 38px;
    line-height: 3rem;
    margin-bottom: 1rem;
}
.product_connection{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product_connection .connection_line{
    width: 5px;
    height: 80px;
}
.author{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: .5rem;
}
.author_tag{
    font-family: var(--txt_title);
    font-size: 20px;
    color: var(--tab_stroke);
    margin-left: .5rem;
}
.product_txt{
    margin-top: -1.5rem;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    width: 100%;
    text-align: justify;
    line-height: 1.8rem;
    font-family: var(--txt_body);
    font-weight: 300;
}
.pdf_row{
    margin-bottom: 3.5rem;
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
}
.pdf_row a{
    font-family: var(--txt_title);
    font-weight: 500;
    transition: all 250ms linear;
}
.pdf_row a:hover{
    text-decoration: underline;
    color: var(--green)
}
.pdf_row a i{
    font-size: 21px;
    margin-right: 5px;
    color: var(--logo);
    transition: all 250ms linear;
}
.pdf_row a:hover i{
    color: var(--green);
}
.buy_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin-left: 2rem;
}
.buy_row > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: 18px;
}
.buy_row > div span{
    font-size: 28px;
    color: var(--green);
}
.sale{
    font-size: 1rem !important;
    font-weight: 300;
    text-decoration: line-through;
    color: var(--tab_stroke) !important;
}
.buy_row a svg circle,
.buy_row button svg circle{
    transition: all 150ms linear;
}
.buy_row a:hover svg circle,
.buy_row button:hover svg circle{
    fill: var(--green);
}

.product_col_r{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.back{
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .85rem;
}
.product_images_row{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.product_image {
    width: 100%;
    height: 225px;
    border-radius: 5px;
    overflow: hidden;
    border: 3px solid var(--black_logo);
    cursor: pointer;
}
.product_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video{
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .85rem;
}
.back,
.video{
    font-family: var(--txt_title);
    color: var(--black_logo);
    font-weight: 500;
}
.video svg path{
    fill: var(--violet);
}
.back:hover svg path,
.video:hover svg path{
    fill: var(--green);
}
.back_mb{
    display: none;
}
.by_raphael{
    width: 50px;
    margin-bottom: -1rem;
    margin-left: .5rem;
}
.add-to-cart{
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}
@media screen and (max-width: 1280px){
    .product_col_l{
        width: 75%;
    }
    .product_col_r{
        width: 35%;
    }
    .product_col_l h1{
        font-size: 32px;
    }
    .product_txt{
        margin-bottom: 3rem;
    }
}
@media screen and (max-width: 1130px){
    .product_row{
        gap: 5rem;
    }
    .product_col_l{
        width: 60%;
    }
    .product_col_r{
        width: 40%;
    }
    .back{
        display: none;
    }
    .back_mb{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: .85rem;
        font-family: var(--txt_title);
        color: var(--black_logo);
        font-weight: 500;
        width: 95%;
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 998px){
    .back_mb{
        width: 95%;
    }
    .product_row{
        flex-direction: column;
    }
    .product_col_l{
        width: 100%;
    }
    .product_col_r{
        width: 100%;
    }
    .product_col_l h1{
        font-size: 28px;
        margin: 1rem auto;
        text-align: center;
    }
    .author{
        display: flex;
        justify-content:center;
        align-items: flex-end;
        gap: .5rem;
    }
    .product_connection{
        width: fit-content;
    }
    .product_connection,
    .by_raphael{
        display: none;
    }
    .author{
        margin: 1.5rem 0;
    }
    .product_txt{
        margin: 0 auto;
        margin-top: 1.5rem;
        text-align: justify;
        line-height: 1.8rem;
    }
    .pdf_row{
        margin-left: 0;
        margin-top: 1.5rem;
    }
    .buy_row{
        margin: 0 auto;
        margin-top: 3rem;
    }
    .product_image {
        min-height: 500px;
    }
    .video{
        align-self: flex-end;
    }
}
@media screen and (max-width: 900px){
    .product_image {
        min-height: 450px;
    }
}
@media screen and (max-width: 768px){
    .product_image {
        min-height: 400px;
    }
    .author_tag{
        font-size: 18px;
    }
}
@media screen and (max-width: 660px){
    .product_image {
        min-height: 350px;
    }
}
@media screen and (max-width: 430px){
    .product_col_l h1{
        font-size: 21px;
        line-height: 2rem;
    }
    .author{
        display: flex;
        justify-content:center;
        align-items: flex-end;
        gap: .5rem;
    }
    .author_tag{
        font-size: 16px;
    }
    .by{
        font-size: 14px;
    }
    .product_connection{
        width: fit-content;
    }
    .mobile{
        display: none;
    }
    .product_txt{
        font-size: .85rem;
        line-height: 1.5rem;
    }
    .pdf_row{
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    .product_image {
        min-height: 325px;
    }
    .back_mb{
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 320px){
    .product_col_l h1{
        font-size: 18px;
        line-height: 1.8rem;
        font-weight: 600;
    }
    .product_image {
        min-height: 280px;
    }
    .product_txt{
        line-height: 1.5rem;
        margin-bottom: 2rem;
    }
    .pdf_row{
        flex-direction: column;
        gap: 2rem;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    .author{
        margin: 1rem 0;
    }
    .back_mb,
    .video{
        font-weight: 600;
    }
    .buy_row svg{
        width: 40px;
    }
    .buy_row > div{
        font-size: 16px;
    }
    .author_tag{
        font-size: 14px;
    }
    .by{
        font-size: 12px;
    }
}
/***********************
    SHOP MODALE IMGS
************************/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo nero semi-trasparente */
    backdrop-filter: blur(5px); /* Effetto di sfocatura */
}
.modal-content{
    margin: auto;
    display: block;
    max-width: 80vw;
    width: 100%;
    max-height: 90vh;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* border-radius: 3px; */
}
.modal-content img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.show {
    display: block;
}
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
}
.arrow-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.arrow-icon:hover svg path{
    fill: var(--green);
}
.arrow-icon:active svg path{
    fill: var(--green);
}
.arrow-icon.left {
    left: 80px;
}
.arrow-icon.right {
    right: 80px;
}
@media screen and (max-width: 1390px){
    .modal-content {
        max-width: 1000px;
    }
}
@media screen and (max-width: 1330px){
    .modal-content {
        max-width: 900px;
    }
}
@media screen and (max-width: 1220px){
    .modal-content {
        max-width: 800px;
    }
}
@media screen and (max-width: 1100px){
    .modal-content {
        max-width: 750px;
    }
    .arrow-icon.left {
        left: 50px;
    }
    .arrow-icon.right {
        right: 50px;
    }
}
@media screen and (max-width: 1024px){
    .modal-content {
        max-width: 700px;
    }
    .arrow-icon.left {
        left: 30px;
    }
    .arrow-icon.right {
        right: 30px;
    }
}
@media screen and (max-width: 890px){
    .modal {
        background-color: rgba(0, 0, 0, 0.9); /* Fondo nero semi-trasparente */
        backdrop-filter: blur(5px); /* Effetto di sfocatura */
    }
    .modal-content {
        max-width: 95%;
    }
    .arrow-icon.left {
        left: 30px;
    }
    .arrow-icon.right {
        right: 30px;
    }
}
@media screen and (max-width: 430px){
    .arrow-icon{
        display: none;
    }
}
/***********************
    MODALE CARRELLO
************************/
/* The Modal (background) */
.product_modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}
.product_modal.show {
    display: block; /* Show the modal if the 'show' class is added */
}
/* Modal Content/Box */
.product_modal_conent{
    background-color: var(--white);
    margin: 15% auto;
    padding: 80px 20px;
    border: 4px solid var(--logo);
    border-radius: 3px;
    outline: 2px solid var(--violet);
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
/* The Close Button */
.product_modal_close{
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--red);
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
}
.product_modal_close rect{
    transition: fill 250ms linear;
}
.product_modal_close:hover rect,
.product_modal_close:focus rect{
    fill: rgb(161, 25, 25);
}
/* alert icon */
.fa-triangle-exclamation{
    font-size: 2rem;
    color: var(--red);
}
/* The message */
.product_modal_message{
    width: 100%;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    color: var(--black_logo);
}
/* The button */
.product_modal_a{
    font-size: 1.1rem;
} 
