/* neler kazınabilir ana sayfası */
.nk-materyal-menu {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.nk-materyal-menu.nk-home {
    justify-content: center;
    width: 80%;
    margin: 0 auto 30px;
}
@media (max-width: 768px) {
    .nk-materyal-menu.nk-home {
        width: 100%;
    }
}
.nk-materyal-menu a {
    display: inline-block;
    font-family: var(--wd-title-font), sans-serif;
    background: #e9e9e9;
    color: #333;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nk-materyal-menu a:hover {
    background: var(--wd-primary-color);
    color: #000;
}

.neler-kazinabilir {
    display: grid;
    grid-template-columns: repeat(var(--sutun), 1fr);
    gap: 15px;
}

.neler-kazinabilir-inner {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: var(--wd-primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

.neler-kazinabilir-inner:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid #fff;
    border-radius: 15px;
}

.neler-kazinabilir-inner:not(:has(img)):after {
    border-color: #000;
}

.neler-kazinabilir-inner:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.neler-kazinabilir-thumb {
    position: relative;
    overflow: hidden;
}

.neler-kazinabilir-thumb img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.neler-kazinabilir-inner:hover img {
    transform: scale(1.12);
}

.neler-kazinabilir-thumb:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
    opacity: .6;
    transition: opacity .3s ease;
}

.neler-kazinabilir-inner:hover .neler-kazinabilir-thumb:after {
    opacity: .8;
}

.neler-kazinabilir-title {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    margin: 0;
    font-size: calc(6rem / var(--sutun));
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
    transition: transform .35s ease;
    transform-origin: left bottom;
}
.nk-slider-wrapper[data-columns="1"] .neler-kazinabilir-title {
    font-size: 2rem;
}
.nk-slider-wrapper[data-columns="2"] .neler-kazinabilir-title {
    font-size: 1.5rem;
}
.nk-slider-wrapper[data-columns="3"] .neler-kazinabilir-title {
    font-size: 1.4rem;
}
.nk-slider-wrapper[data-columns="4"] .neler-kazinabilir-title {
    font-size: 1.3rem;
}
.nk-slider-wrapper[data-columns="5"] .neler-kazinabilir-title {
    font-size: 1.2rem;
}
.nk-slider-wrapper[data-columns="6"] .neler-kazinabilir-title {
    font-size: 1rem;
}


.neler-kazinabilir-inner:not(:has(img)) .neler-kazinabilir-title {
    color: #000;
}

.neler-kazinabilir-inner:hover .neler-kazinabilir-title {
    transform: translate(4px, -4px) scale(1.2);
}

@media (max-width: 1024px) {
    .neler-kazinabilir {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .neler-kazinabilir {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}


/* ön yüz dönen metin */
#nk-ticker-container {
    font-family: var(--wd-title-font);
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
}

#nk-current-item {
    display: inline-block;
    background: var(--wd-primary-color);
    color: #000;
    font-weight: bold;
    padding: 1px 10px;
    border-radius: 5px;
    transition: opacity 0.5s ease;
}

.nk-fade-out {
    opacity: 0;
}

#nk-ticker-container .nk-metin {
    position: relative;
}

#nk-ticker-container .nk-metin:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 2px;
    background: #007;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#nk-ticker-container:hover .nk-metin:before {
    transform: scaleX(1);
}

/* admin */
#nk-admin-grid {
    max-width: 760px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 180px);
    gap: 10px;
}

.nk-slot {
    background: #fff;
    border: 1px solid #ccd0d4;
    position: relative;
    overflow: hidden;
}

.nk-slot-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.nk-drag-item,
.nk-preview-content img,
.nk-preview-content iframe,
.nk-preview-content video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nk-order-overlay {
    position: absolute;
    inset: 0;
    background-color: #fdd80188;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nk-slot,
.nk-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nk-order-input {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
    text-align: center;
    border-radius: 50% !important;
    border: 3px solid #fff !important;
}

.nk-video-input-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
}

.nk-video-input-area input {
    flex: 1;
    height: 30px;
}

.nk-cancel-yt {
    background: #d63638 !important;
    color: #fff !important;
    min-width: 30px !important;
    padding: 0 !important;
}

.nk-hidden {
    display: none !important;
}

.yt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: red;
    color: #fff;
    text-align: center;
    font-size: 10px;
}

.nk-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
}

/* Modal */
.nk-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

html:has(.nk-modal.active) {
    overflow: hidden;
}

.nk-modal.active {
    display: block;
}

.nk-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: 0.3s;
}

.nk-modal.active .nk-modal-overlay {
    opacity: 1;
}

.nk-modal-header {
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--wd-title-font);
    color: #000;
}

.nk-modal-header h5 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.nk-modal-header span {
    background-color: var(--wd-primary-color);
    color: #000;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 5px;
}

.nk-modal-header p {
    font-size: 2rem;
    font-weight: 900;
}

.nk-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.nk-modal-content .butonlar {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.nk-modal-content .butonlar a {
    background-color: #000;
    color: var(--wd-primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nk-modal-content .butonlar a:hover {
    background-color: #333;
}

.materyal-modal-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.materyal-gorsel {
    flex: 0 0 250px;
}

.materyal-gorsel img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    user-select: none;
}

.materyaller {
    flex: 1;
}

.materyaller h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.materyal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.materyal-link {
    display: block;
    padding: 5px 15px;
    background: #fff9d2;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.materyal-link:hover {
    background: var(--wd-primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .term-wrapper {
        flex-direction: column;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }
}

.nk-modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.nk-grid-item {
    background: #f0f0f0;
    border-radius: 10px;
    animation: nk-pulse 1.2s infinite ease-in-out;
}

@keyframes nk-pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}

.yk-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    font-size: 10px;
}

.nk-grid-item video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: height 0.3s ease;
}

.nk-video-local {
    justify-content: center;
    display: flex;
}

/* Grid Yapısı */
.nk-frontend-grid {
    width: 960px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 230px);
    gap: 10px;
}

.nk-grid-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 1 / 1;
}

.nk-grid-item img,
.nk-grid-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.nk-grid-item {
    position: relative;
    overflow: hidden;
}
.nk-grid-item img {
    transition: transform 0.3s ease;
}
.nk-grid-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nk-frontend-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        width: 100%;
    }

    .nk-grid-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
}

/* model listesi */
.nk-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.modeller {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 10;
}
.modeller .materyal-isim {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 11;
    display: inline-block;
    padding: 4px 10px;
    transform: translateY(0);
    color: #000;
    font-family: var(--wd-title-font);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background: #fff;
}
.nk-grid-item:hover .materyal-isim {
    transform: translateY(-100%);
}    
.modeller ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 12;
}
.modeller ul li {
    display: block;
    width: 100%;
    padding: 4px 10px;
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: var(--wd-title-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(101%);
    transition: transform 0.3s ease;
}
.modeller ul li a {
    color: inherit;
}
.modeller ul li:not(:first-child) {
    border-left: 1px solid #fff5;
}
.modeller ul li.kaziyabilir {
    background: #4CAF50;
}
.modeller ul li.kaziyamaz {
    background: #333;
}
.modeller ul li.sartli {
    background: var(--wd-primary-color);
    color: #000;
    white-space: nowrap;
}
.modeller ul li:before {
    display: inline-block;
    margin-right: 4px;
}
.modeller ul li.kaziyabilir:before {
    content: "✓ ";
}
.modeller ul li.kaziyamaz:before {
    content: "✗ ";
}
.modeller ul li.sartli:before {
    content: "⚠ ";
}
.nk-grid-item:hover .modeller ul li {
    transform: translateY(0);
}
.modeller ul li .nk-not {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    white-space: nowrap;
    transform: translateY(0);
}
.modeller ul li.kaziyabilir .nk-not {
    background: #4CAF50;
}
.modeller ul li.sartli .nk-not {
    background: var(--wd-primary-color);
    color: #000;
}
.modeller ul li:hover .nk-not {
    display: block;
    transform: translateY(-5px);
}
.modeller ul li:nth-child(1) .nk-not {
    left: 0;
}
.modeller ul li:nth-child(2) .nk-not {
    left: 10%;
}
.modeller ul li:nth-child(3) .nk-not {
    left: unset;
    right: 10%;
}
.modeller ul li:nth-child(4) .nk-not {
    left: unset;
    right: 0;
}


/******
**
** single page
**
*******/
.nk-wrapper header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    gap: 20px;
}
.nk-wrapper header .title {
    width: 70%;
}
.nk-nav {
    width: 22%;
}
@media (max-width: 768px) {
    .nk-wrapper header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .nk-wrapper header .nk-nav {
        width: 100%;
        justify-content: space-between;
    }
    .nk-wrapper header .title {
        width: 100%;
    }    
    .nk-wrapper header .nk-btn-all {
        width: 60%;
    }
}

.nk-wrapper header .title {
    margin-bottom: 0;
}

.nk-wrapper header h1 {
    font-size: 22px;
    line-height: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .nk-wrapper header h1 {
        line-height: 1.6rem;
    }
}
/* materyal etiketler */
.nk-wrapper header .materyal-listesi-wrapper {
    position: relative;
    width: 100%;
}
.nk-wrapper header .materyal-listesi-wrapper:after {
    display: block;
    width: 30px;
    height: 30px;
    background: linear-gradient(to left, #fff, transparent);
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    z-index: 1;
    pointer-events: none;
}
.nk-wrapper header .materyal-listesi {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 3px;
    position: relative;
}
.nk-wrapper header .materyal-listesi::-webkit-scrollbar {
    display: none;
}
.nk-wrapper header .materyal-listesi > div {
    margin-bottom: 3px;
}
.nk-wrapper header .materyal-listesi a {
    display: inline-block;
    font-size: 14px;
    line-height: 1rem;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.nk-wrapper header .materyal-listesi a:hover {
    background: #e9e9e9;
    border-color: #ccc;
}
.nk-wrapper header .materyal-scroll {
    display: none;
    height: 4px;
    background: rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
}
.nk-wrapper header .materyal-scroll-thumb {
    height: 100%;
    background: var(--wd-primary-color);
    width: 50px;
    transform: translateX(0);
    transition: transform 0.1s linear;
}

.nk-nav {
    display: flex;
    column-gap: 3px;
    row-gap: 6px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4px;
}
.nk-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 12px;
    background: #222;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: .4s ease all;
}
.nk-btn-all {
    flex: auto;
}
.nk-nav a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}
.nk-nav a i:before {
    font-size: 12px;
    font-family: "woodmart-font"
}

.nk-nav a.nk-btn-prev i:before {
    content: "\f114"
}
.nk-nav a.nk-btn-all i:before {
    content: "\f122"
}
.nk-nav a.nk-btn-next i:before {
    content: "\f113"
}
.nk-nav a.nk-btn-next {
    flex-direction: row-reverse;
}

.nk-wrapper header .nk-btn-prev, 
.nk-wrapper header .nk-btn-next {
    position: relative;
}
.nk-wrapper header .nk-btn-prev span, 
.nk-wrapper header .nk-btn-next span {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 33px);
    background: #2227;
    color: #fff;
    padding: 0px 6px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.nk-wrapper header .nk-btn-prev:hover span, 
.nk-wrapper header .nk-btn-next:hover span {
    display: block;
    opacity: 1;
    transform: translate(-50%, 28px);
}

.nk-nav a:hover {
    background: var(--wd-primary-color);
}

.nk-nav a.nk-btn-prev:hover i,
.nk-nav a.nk-btn-next:hover i {
    animation: nk-nav-swing 1s ease infinite;
}

@keyframes nk-nav-swing {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(3px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.nk-nav a.disabled {
    background: #ccc;
    pointer-events: none;
}

.nk-wrapper header a.rehber-link {
    display: inline-block;
    flex: 0 0 100%;
    max-width: 400px;
    width: 100%;
    color: #666;
    background: #f0f0f0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.nk-wrapper header a.rehber-link:hover {
    color: #333;
}


/* single page grid ek sütun */
.single-nk-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .single-nk-grid {
        flex-direction: column;
    }
    .single-nk-grid .nk-grid-item {
        width: 100%;
    }
    .single-nk-grid .nk-grid-item img,
    .single-nk-grid .nk-grid-item video,
    .single-nk-grid .nk-grid-item iframe {
        max-width: 100%;
        max-height: 100%;
        height: auto;
    }

}

.single-nk-grid .nk-grid-ekstra {
    /*max-width: 30%;*/
    grid-column: span 2; 
    grid-row: span 2;
    overflow: hidden;
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff9d2;
    border: 1px solid var(--btn-accented-bgcolor);
    border-radius: 10px;
    gap: 10px;
    aspect-ratio: 1 / 1;
}

.nk-grid-ekstra .wd-carousel-container {
    max-width: 300px;
}

.nk-grid-ekstra .product-element-bottom {
    text-align: center;
}

.nk-grid-ekstra .wd-product.wd-hover-fw-button .wrap-price {
    justify-content: center;
}

.nk-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.nk-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #000;
    transition: all 0.25s ease;
}
.nk-pagination .page-numbers:hover {
    background: var(--wd-primary-color);
    color: #000;
    transform: translateY(-2px);
}
.nk-pagination .current {
    background: var(--wd-primary-color);
    color: #000;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}
.nk-pagination .prev,
.nk-pagination .next {
    gap: 6px;
    font-weight: 600;
}
.nk-pagination .icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
@media (max-width: 768px) {
    .nk-pagination .page-numbers {
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 8px;
    }
}


/*****
** marquee
*****/
#nk-marquee-container {
    overflow: hidden;
    position: relative;
}

#nk-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

#nk-marquee-track:hover {
    animation-play-state: paused;
}

.nk-marquee-item {
    margin: 0 10px;
    border-bottom: 2px solid #fff5;
    transition: border-color 0.3s;
}

.nk-marquee-item a {
    padding: 5px 0;
    white-space: nowrap;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.nk-marquee-item a:after {
    content: '✓';
}

.nk-marquee-item:hover {
    border-color: #000;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}



/*****
**
** materyal detay sayfası
**
*****/
.nk-materyal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.tax-materyal .nk-materyal-menu {
    width: 60%;
    margin: 0;
    padding: 0;
}
@media (max-width: 768px) {
    .nk-materyal-header {
        flex-direction: column;
        margin-bottom: 0;
    }
    .tax-materyal .nk-materyal-menu {
        display: none;
    }
}
.tax-materyal .nk-materyal-menu a {
    padding: 3px 8px;
}
.tax-materyal .nk-materyal-menu a.active {
    background: var(--wd-primary-color);
    color: #000;
    border-color: #000;
    font-weight: 700;
}

.nk-modeller-wrap .hangi-modeller {
    text-align: center;
    background: var(--wd-text-color);
    color: #fff;
    font-family: var(--wd-title-font);
    font-size: 14px;
    padding: 2px 6px;
    margin: 0 0 3px;
    border-radius: 5px;
}
.nk-modeller {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nk-modeller > div {
    display: block;
    text-align: center;
    padding: 2px 6px;
    background: #444;
    color: #fff;
    font-family: var(--wd-title-font);
    font-size: 18px;
    border-radius: 5px;
}
.nk-modeller .model-isim {
    font-weight: bold;
    font-size: 16px;
}
.nk-kaziyabilir, .nk-kaziyamaz, .nk-sartli {
    font-size: small;
    display: block;
}
.nk-modeller > div.kaziyabilir {
    background: #4CAF50;
}
.nk-modeller > div.kaziyabilir .nk-kaziyabilir:before {
    content: "✓ ";
}
.nk-modeller > div.kaziyamaz {
    background: #333;
}
.nk-modeller > div.kaziyamaz .nk-kaziyamaz:before {
    content: "✗ ";
}
.nk-modeller > div.sartli {
    background: var(--wd-primary-color);
    color: #000;
    position: relative;
}
.nk-modeller > div.sartli .nk-sartli:before {
    content: "⚠ ";
}
.nk-modeller > div.sartli .nk-sartli span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    background: #000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}
.nk-modeller > div.sartli:hover .nk-sartli span {
    opacity: 1;
    transform: translate(-50%, 3px);
}

.ornek-calismalar-grid {
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    grid-auto-flow: dense;
    gap: 10px; 
}
@media (max-width: 768px) {
    .ornek-calismalar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.ornek-calismalar-grid .ornek-materyal-isim {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 4px 10px;
    text-align: center;
    color: #000;
    font-family: var(--wd-title-font);
    font-size: 14px;
    background: #fff;
    border-radius: 7px;
    white-space: nowrap;
}
.ornek-calismalar-grid .ornek-materyal-isim:hover {
    background: #000;
    color: #fff;
}
.nk-grid-item i {
    display: inline-block;
    padding-left: 4px;
    padding-right: 8px;
    transition: .3s ease all;
}
.nk-grid-item:hover i {
    transform: translateX(4px);
}

.ornek-calismalar-grid .nk-grid-item:nth-child(1) {
    grid-column: unset;
    grid-row: unset;
}
.ornek-calismalar-grid .nk-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}
.ornek-calismalar-grid .holder {
    background: #fff;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%239C9C9CFF' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 10px;
    border-spacing: 3px;
    animation: unset;
}