/* Minification failed. Returning unminified contents.
(83,35): run-time error CSS1046: Expect comma, found '0'
(83,39): run-time error CSS1046: Expect comma, found '/'
 */
/* ===========================
   GENEL YAPI
=========================== */


.wrapper {
    width: 100%;
    height: auto;
}

.booklibcontainer {
    max-width: 1600px;
    margin: 2% auto;
    padding: 0 1rem;
}

/* ===========================
   BOOKSHELF (Raf)
=========================== */
.bookshelfbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.shelfrow {
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 2rem 1rem 3rem 1rem;
    width: 100%;
    min-height: 300px;
    border-radius: 12px;
}


.wrapper .booklibcontainer .header .headerbox {
    list-style: none;
    height: 67px;
    color: #e4b173;
    padding-top: 10px;
    padding-bottom: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /*position: absolute;*/
    bottom: auto;
    top: -65px;
    margin: 0 !important;
}

.headerboxfullwidth {
    width: 100% !important;
    display: flex;
    justify-content: center;
    transform: translate(0) !important;
}
.linkactive {
    opacity: 1 !important;
    transform: scale(1) !important;
}


.wrapper .booklibcontainer .header .bookClassName.active {
    opacity: 1 !important;
    transform: scale(1) !important;
}



.wrapper .booklibcontainer .header .bookClassName {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    margin-right: 15px;
    padding: 4px 8px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 40%);
    font-size: 18px;
    opacity: 0.7;
    transform: scale(0.82);
    transition: all .5s ease;
    font-weight: 900;
    width: auto !important;
    color: #333;
    width: auto;
    height: auto;
    text-indent: inherit;
    background: none;
}

/* ===========================
   BOOK ITEM (Kitaplar)
=========================== */
.bookproductbox {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 20px 15px;
}

.bookproduct {
    position: relative;
    width: 180px;
    height: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .bookproduct:hover {
        transform: scale(1.07);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    }

    .bookproduct img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    }


/* ===========================
   BOŞ DURUM
=========================== */
.emptybook {
    margin: 2rem 0;
    font-weight: 600;
    color: #444;
    padding: 2rem;
    text-align: center;
}

/* ===========================
   RESPONSIVE AYARLAR
=========================== */

/* Mobil - Extra Small (0 - 575px) */
@media (max-width: 575.98px) {
    .shelfrow {
        padding: 1rem 0.5rem 2rem 0.5rem;
    }

    .bookproduct {
        width: 130px;
        height: 190px;
        margin: 10px;
    }

    .bookproductbox {
        margin: 10px 5px;
    }

    .bookproduct img {
        border-radius: 10px;
    }
    .headerboxfullwidth {
        flex-wrap: wrap;
        height: auto !important;
         padding-bottom: 0px !important;
    }
}

/* Small - (576px - 767.98px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .bookproduct {
                width: 150px;
                height: 220px;
                margin: 12px;
            }

            .shelfrow {
                padding: 1.5rem 1rem 2.5rem 1rem;
            }
        }
        /* Medium - (768px - 991.98px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .bookproduct {
                width: 160px;
                height: 240px;
                margin: 15px;
            }
        }
        /* Large - (992px - 1199.98px) */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .bookproduct {
                width: 170px;
                height: 250px;
                margin: 18px;
            }
        }
        /* Extra Large - (1200px ve üzeri) */
        @media (min-width: 1200px) {
            .bookproduct {
                width: 180px;
                height: 260px;
                margin: 20px;
            }
        }

