@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

:root {
    --primary: #c9a86c;
    --secondary: #1a1a2e;
}


.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CONTENT WRAPPER START */

.content-wrapper {
    padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
    list-style: disc;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}

.content-wrapper img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    height: auto;
    margin: 20px 0;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-wrapper table th,
.content-wrapper table td {
    border: 1px solid black;
    padding: 10px;
    text-align: left;
}

/* CONTENT WRAPPER END */
/*DESKTOP HEADER START*/

.desktop-header-top {
    background-color: var(--secondary);
    padding: 10px 5px;
    font-size: 13px;
}

.desktop-header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-header-top-left a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-header-top-left a:hover {
    color: var(--primary);
}

.desktop-header-top-left a i {
    color: var(--primary);
    font-size: 14px;
}

.desktop-header-top-right {
    display: flex;
    gap: 12px;
}

.desktop-header-top-right a {
    color: white;
}

.desktop-header-top-right a i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    transition: all 0.3s ease;
}

.desktop-header-top-right a i:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.desktop-header-middle {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #ebebeb;
}

.desktop-header-middle .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.desktop-header-middle img {
    width: 100px;
    height: auto;
}

.desktop-header-middle form {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 2px solid #ebebeb;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.desktop-header-middle form:hover {
    border: 2px solid var(--primary);
}

.desktop-header-middle input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333333;
}

.desktop-header-middle button {
    padding: 14px 25px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-header-middle-right {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.desktop-header-middle-right i {
    font-size: 16px;
}

.desktop-header-middle-right .basket-count {
    position: absolute;
    top: 8px;
    right: 12px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: scale(0.7);
    transition: 0.25s ease;
    pointer-events: none;
}

.desktop-header-middle-right.has-items .basket-count {
    opacity: 1;
    transform: scale(1);
}

.desktop-header-middle-right:hover {
    filter: brightness(1.05);
}


.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-bottom: 1px solid #ebebeb;
}

.navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    z-index: 999;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

/*DESKTOP HEADER END*/
/*MOBİLE HEADER START*/

.mobile-header {
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.mobile-header-top {
    background: var(--secondary);
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-header-top a {
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-header-top i {
    color: var(--primary);
}

.mobile-header-top span {
    color: white;
    font-size: 12px;
}

.mobile-header-middle {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #ebebeb;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}


.mobile-menu-header img {
    max-height: 40px;
}


.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.mobile-navbar {
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 16px;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 16px;
}

.mobile-nav-menu li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: white;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: all;
}


.mobile-header-middle img {
    width: 100px;
    height: auto;
}


.mobile-header-middle-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #fafafa;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-header-middle-right:hover {
    background: var(--primary);
    color: white
}

.mobile-search {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    gap: 8px;
}

.mobile-search input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333333;
    outline: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.mobile-search button {
    padding: 12px 18px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media(max-width:992px) {
    .mobile-header-top .container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

/*MOBİLE HEADER END*/
/*DESKTOP SLİDER START*/
.slider {
    position: relative;
}

.heroSlider {
    position: relative;
}

.heroSlider .swiper-button-prev,
.heroSlider .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(120, 120, 120, 0.6);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.heroSlider .swiper-button-prev:hover,
.heroSlider .swiper-button-next:hover {
    background: var(--primary);
}

.heroSlider .swiper-button-next::after,
.heroSlider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.heroSlider .swiper-pagination {
    bottom: 20px;
    text-align: center;
}

.heroSlider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
    border: none;
}

.heroSlider .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.3);
}

/*DESKTOP SLİDER END*/
/*PRODUCTS START*/

.products {
    padding: 40px 0;
    background-color: #fafafa;
}

.products .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.products-card {
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.products-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.products-card span {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .92);
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    backdrop-filter: blur(6px);
    transition: .3s ease;
}

.products-card:hover img {
    transform: scale(1.06);
}

.products-card:hover span {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1200px) {
    .products .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products {
        padding: 30px 0;
    }

    .products .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .products-card span {
        font-size: 13px;
        padding: 8px 18px;
    }
}

@media (max-width: 576px) {
    .products .container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-card {
        border-radius: 14px;
    }

    .products-card span {
        bottom: 12px;
        font-size: 13px;
    }
}


.list-product {
    padding: 40px 0;
    background-color: #fafafa;
}

.list-product .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.list-product-card {
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.list-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.list-product-card:hover img {
    transform: scale(1.05);
}

.list-product-card span {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .92);
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    backdrop-filter: blur(6px);
    transition: .3s ease;
}

.list-product-card:hover img {
    transform: scale(1.06);
}

.list-product-card:hover span {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1200px) {
    .list-product .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .list-product {
        padding: 30px 0;
    }

    .list-product .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .list-product-card span {
        font-size: 13px;
        padding: 8px 18px;
    }
}

@media (max-width: 576px) {
    .list-product .container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .list-product-card {
        border-radius: 14px;
    }

    .list-product-card span {
        bottom: 12px;
        font-size: 13px;
    }
}

/*PRODUCTS END*/
/* BREADCRUMB START */

.breadcrumb {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #f5f6fa 100%);
}

.breadcrumb .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.breadcrumb .links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.breadcrumb .links li {
    position: relative;
    font-weight: 500;
    color: var(--secondary);
}

.breadcrumb .links li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.5;
}

.breadcrumb .links a {
    color: var(--secondary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.breadcrumb .links a:hover {
    opacity: 1;
}

.breadcrumb .links li:last-child {
    font-weight: 600;
    opacity: 1;
}

.breadcrumb-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumb {
        min-height: auto;
        padding: 60px 0 25px;
    }

    .breadcrumb .links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        font-size: 13px;
    }

    .breadcrumb .links li:not(:last-child)::after {
        right: -8px;
    }

    .breadcrumb-title {
        font-size: 22px;
    }
}

/* BREADCRUMB END */
/*MARQUEE START*/
.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--secondary);
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    color: white;
    white-space: nowrap;
    font-size: 15px;
}

.marquee-item i {
    color: var(--primary);
    font-size: 18px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*MARQUEE END*/
/*PRODCUTS START*/
.page-products {
    padding: 50px 0;
    background: #fafafa;
    position: relative;
}

.page-products .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.products-price-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: white;
    color: #222;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    transition: .5s ease;
    overflow: hidden;
    text-decoration: none;
}

.products-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.products-price-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.products-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.connected {
    font-size: 12px;
    color: #c59b4c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.products-price-title {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.products-price {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
}

.quantity {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-minus,
.qty-plus {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: white;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
}

.qty-minus:hover,
.qty-plus:hover {
    background: var(--primary);
    color: white;
}

.qty-input {
    max-width: 90px;
    text-align: center;
    border: 1px solid #222;
    background: transparent;
    font-weight: 600;
    pointer-events: none;
    border-radius: 12px;
}

.products-price-btn {
    margin-top: 16px;
    height: 46px;
    border-radius: 12px;
    background: #1d1e3c;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: .3s ease;
}

.products-price-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: white;
    border: none;
}

/*PRODUCTS END*/
/*PRODUCTS POP-UP START*/

.product-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 750px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* CLOSE */

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 36px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    line-height: 1;
    transition: color .2s;
}

.modal-close:hover {
    color: #000;
}

/* BODY */

.modal-body {
    display: flex;
    min-height: 380px;
}

/* LEFT */

.modal-left {
    width: 45%;
    flex-shrink: 0;
    background: #f5f5f5;
}

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT */

.modal-right {
    width: 55%;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TEXT */

.modal-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
}

.modal-code {
    font-size: 12px;
    color: #aaa;
}

.modal-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

/* QUANTITY */

.modal-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.modal-quantity button {
    width: 38px;
    height: 38px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
}

.modal-quantity button:hover {
    background: #e0e0e0;
}

.modal-quantity input {
    width: 50px;
    height: 38px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 15px;
}

/* BUTTON */

.modal-right .products-price-btn {
    margin-top: auto;
    padding: 12px 20px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-right .products-price-btn:hover {
    background: #333;
}

/* BODY SCROLL LOCK */

.no-scroll {
    overflow: hidden;
}

/* MOBILE */

@media (max-width: 992px) {

    .modal-content {
        max-width: 420px;
        border-radius: 16px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-left {
        width: 100%;
        height: 250px;
    }

    .modal-right {
        width: 100%;
        padding: 20px;
        gap: 14px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-price {
        font-size: 20px;
    }

    .modal-right .products-price-btn {
        width: 100%;
    }

}

/*PRODUCTS POP-UP END*/
/*HİGHLİGHTS START*/
.highlights {
    padding: 60px 0 80px;
    background-color: white;
}

.highlights-top {
    text-align: left;
    margin-bottom: 40px;
    max-width: 600px;
}

.highlights-title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.highlights-subtitle {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .highlights {
        padding: 32px 0 48px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .highlights-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .highlights-top {
        margin-bottom: 24px;
    }

    .highlights-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .highlights-subtitle {
        font-size: 22px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/*HİGHLİGHTS END*/
/*BANNER START*/

.banner {
    padding: 60px 0;
    background-color: #fafafa;
}

.banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.banner-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 350px;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.banner-card:nth-child(2) .banner-content,
.banner-card:nth-child(4) .banner-content,
.banner-card:nth-child(6) .banner-content {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.85) 0%, rgba(201, 168, 108, 0.6) 100%);
}

.banner-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.banner-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 320px;
    line-height: 1.6;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.3s ease;
    border: none;
}

.banner-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .banner .container {
        grid-template-columns: 1fr;
    }
}

/*BANNER END*/
/* CTA START */
.cta {
    padding: 60px 0;
    background: var(--secondary);
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-left {
    max-width: 500px;
}

.cta-title {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.cta-text {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-right button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-w {
    background: #25d366;
    color: white;
}

.cta-w:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-t {
    background: #c9a86c;
    color: white;
}

.cta-right button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-t:hover {
    background: #b8956a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}

.cta-right i {
    font-size: 16px;
}

@media (max-width: 992px) {
    .cta .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cta-right {
        gap: 8px;
    }

    .cta-right button {
        gap: 3px;
    }
}


/* CTA END */
/*ABOUT START*/

.about {
    padding-bottom: 60px;
    background-color: #f8f9fc;
}

.about .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px;
    padding: 50px 15px;
    align-items: center;
}

.about-left {
    grid-column: span 5;
    position: relative;
}

.about-left .max-img {
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-experience {
    position: absolute;
    top: 40px;
    left: -30px;
    background-color: var(--primary);
    color: white;
    padding: 24px 30px;
    border-radius: 16px;
    text-align: center;
}

.about-experience-number {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}

.about-experience-text {
    font-size: 14px;
    font-weight: 600;
}

.about-right {
    grid-column: span 7;
}

.about-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-item i {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 155, 0.4);
}

@media (max-width: 992px) {
    .about .container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .about-left,
    .about-right {
        grid-column: unset;
        width: 100%;
    }

    .about-right {
        order: 1;
    }

    .about-left {
        order: 2;
        position: relative;
    }

    .about-left .min-img {
        position: absolute;
        bottom: -20px;
        right: -12px;
        width: 150px;
        height: 150px;
    }

    .about-left .max-img {
        max-width: 100%;
        border-radius: 16px;
    }

    .about-experience {
        top: 20px;
        left: -14px;
        padding: 16px 20px;
    }

    .about-title {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .about-items {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .about-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/*ABOUT END*/
/*SOCİAL MEDİA START*/

.socialmedia {
    padding: 60px 0;
}

.socialmedia-item {
    margin-bottom: 50px;
}

.socialmedia-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.socialmedia-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socialmedia-left img {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    object-fit: cover;
}

.socialmedia-text span {
    display: block;
}

.socialmedia-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.socialmedia-subtitle {
    font-size: 14px;
    color: #666;
}

.socialmedia-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.socialmedia-right div {
    text-align: center;
}

.socialmedia-follower,
.socialmedia-postno {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.socialmedia-follower-lable,
.socialmedia-postno-lable {
    font-size: 12px;
    color: #666;
}

.socialmedia-right a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socialmedia-right a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.socialmedia-post {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    cursor: pointer;
}

.socialmedia-post-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.socialmedia-post-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.socialmedia-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.85), rgba(188, 24, 136, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.socialmedia-post-overlay i {
    font-size: 38px;
    color: white;
}

.socialmedia-post-item:hover img {
    transform: scale(1.1);
}

.socialmedia-post-item:hover .socialmedia-post-overlay {
    opacity: 1;
}


@media (max-width: 768px) {
    .socialmedia-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .socialmedia-right {
        width: 100%;
        justify-content: space-between;
    }

    .socialmedia-post {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .socialmedia-post {
        grid-template-columns: 1fr;
    }
}


/*SOCİAL MEDİA END*/
/*FOOTER START*/
footer {
    background: white;
    color: #222;
    padding: 60px 0 30px;
    font-size: 14px;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

footer .container .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-start span {
    display: block;
    line-height: 1.6;
    max-width: 450px;
    color: #666;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #222;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: white;
    border: white;
    transform: translateY(-3px);
}

.footer-links span,
.footer-services span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.footer-links a,
.footer-services a {
    color: #666;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary);
}


.footer-links ul li:hover,
.footer-services ul li:hover {

    transform: translateX(5px);
}


.footer-end {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-end span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.footer-end a {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.footer-end a:last-child {
    margin-left: 10px;
}



.footer-end a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-end i {
    width: 25px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.footer-span {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 85px;
    display: block;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 992px) {
    footer .container .row {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
        margin-bottom: 0;
    }

    .footer-logo img {
        width: 220px;
    }
}

/* FOOTER STICKY MENU START */

.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #222;
    position: fixed;
    z-index: 9;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid var(--primary);
}

@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-sticky .sticky-box {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.footer-sticky .sticky-box .icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
}

.footer-sticky .sticky-box .text {
    font-size: 14px;
    color: white;
    text-align: center;
}

@media (max-width: 568px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}

.footer-sticky .top-box .icon::before {
    content: "";
    position: absolute;
    height: 66px;
    width: 66px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    height: 56px;
    width: 56px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
    font-size: 22px;
    color: white;
}

.footer-sticky .top-box .icon i {
    font-size: 22px;
    color: var(--primary);
}

.footer-sticky .top-box {
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    text-align: center;
}

.footer-sticky .top-box .icon {
    background: #222;
    border-radius: 50%;
    position: relative;
}

/* FOOTER STICKY BUTTON END */
/*POP-UP START*/
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup.active {
    display: flex;
}

.popup-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    animation: fadeIn 0.3s ease;
}

.popup-content .text {
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 30px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Editor içeriği için stil */
.popup-content .text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.popup-content .text h1,
.popup-content .text h2,
.popup-content .text h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #222;
}

.popup-content .text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

.popup-content .text ul,
.popup-content .text ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.popup-content .text a {
    color: #007bff;
    text-decoration: underline;
}

/* Scrollbar stil */
.popup-content .text::-webkit-scrollbar {
    width: 8px;
}

.popup-content .text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.popup-content .text::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.popup-content .text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.closePopup {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.closePopup:hover {
    transform: scale(1.1);
}

.closePopup i {
    font-size: 20px;
    color: #222;
}

@media (max-width: 992px) {
    .popup {
        padding: 15px;
    }

    .popup-content {
        max-width: 100%;
    }

    .popup-content .text {
        padding: 35px 20px 20px;
        max-height: 80vh;
    }

    .closePopup {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .closePopup i {
        font-size: 18px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*POP-UP END*/
/*CONTENT START*/
.contact {
    padding: 60px 0;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.contact-item i {
    color: var(--primary);
    font-size: 18px;
}

.contact-label {
    font-weight: 600;
    color: #222;
}

.contact-text {
    color: #666;
    line-height: 1.6;
}

.map-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}


@media (max-width: 992px) {
    .contact .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-title {
        font-size: 20px;
    }

    .map-box iframe {
        min-height: 250px;
    }
}

.contact-form-box {
    margin-bottom: 30px;
}

.contact-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
    outline: none;
}

.contact-form button {
    margin-top: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

    width: auto;
    align-self: flex-start;
}


.contact-form button:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

.contact-form button:active {
    transform: scale(0.98);
}

/*CONTENT END*/
/*BASKET START*/

#basketWrapper {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

#basketWrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.basket {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: 0.35s ease;
}

#basketWrapper.active .basket {
    transform: translateX(0);
}

.basket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.basket-header-title {
    font-size: 20px;
}

.basket-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.basket-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.basket-empaty {
    text-align: center;
    color: #888;
    margin-top: 80px;
}

.basket-empaty i {
    font-size: 40px;
    margin-bottom: 10px;
}

.basket-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.basket-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.basket-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.basket-info-title {
    font-size: 14px;
    font-weight: 600;
}

.basket-info-code {
    font-size: 12px;
    color: #666;
}

.basket-info-price {
    font-size: 13px;
    color: #25d366;
    font-weight: 600;
}

.basket-info-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.basket-info-quantity button {
    width: 26px;
    height: 26px;
    background: #f8f8f8;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ebebeb;
}

.basket-info-quantity button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.basket-remove {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 16px;
    cursor: pointer;
}

.basket-footer {
    padding: 20px;
    border-top: 1px solid #ebebeb;
}

.basket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.basket-footer button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}


.products-price-btn.added {
    background: #2ecc71;
    color: white;
    cursor: default;
}

.products-price-btn.added i {
    transform: scale(1.2);
}

.products-price-btn:disabled {
    opacity: 0.85;
}

/* TOAST MESAJI */
.basket-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.3s ease, opacity 0.3s ease;
    z-index: 99999;
    pointer-events: none;
}

.basket-toast.show {
    opacity: 1;
    transform: translateY(0);
}


.payment-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999999999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
    transition: right .35s ease;
    display: flex;
    flex-direction: column;
}

.payment-wrapper.active {
    right: 0;
}

.payment-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header span {
    font-size: 18px;
    font-weight: 600;
}

.payment-close {
    cursor: pointer;
    font-size: 22px;
}

.payment-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.payment-wrapper .form-group {
    margin-bottom: 16px;
}

.payment-wrapper label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.payment-wrapper input,
.payment-wrapper textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.payment-wrapper textarea {
    resize: none;
    min-height: 80px;
}

.payment-wrapper .btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.payment-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.payment-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 992px) {
    .payment-wrapper {
        width: 100%;
    }
}

/*BASKET END*/
/*WP BUTON START*/
.fixedButton {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixedButton-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fixedButton-icon i {
    font-size: 22px;
}

.fixedButton-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.fixedButton-icon::before,
.fixedButton-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wp-ring 2.5s infinite;
}

.fixedButton-icon::after {
    animation-delay: 1.25s;
}

@keyframes wp-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


@media (max-width: 992px) {
    .fixedButton {
        display: none;
    }
}

/*WP BUTON END*/
/*LOAD MORE START*/
.product-item-wrapper {
    display: none;
}

.product-item-wrapper.visible {
    display: contents;
}

.load-more-container {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
    grid-column: 1 / -1;
}

.load-more-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: translateY(-5px);
}

.load-more-btn.hidden {
    display: none;
}

/*LOAD MORE END*/
/*SELLSY START*/
.sellsy {
    padding: 60px 0;
}

.sellsy .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .sellsy .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*SELLSY END*/
/*new-products start*/
.new-products {
    padding: 60px 0;
}

.new-products .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .new-products .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*new-products end*/
/*404 SART*/
.mistake {
    padding: 80px 0;
}

.mistake .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    align-items: center;
}

.mistake .container .left {
    grid-column: span 6;
}

.mistake .container .right {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mistake .container .right .title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

.mistake .container .right .text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.mistake .container .right a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/*404 END*/


/*BASKET SAYI*/
.desktop-header-middle-right {
    position: relative;
}

/*BASKET NUMBER START*/
.basket-badge {
    display: none !important;
    /* Default gizli */
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #1a1a2e;
    ;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
}

.basket-badge[style*="display: flex"] {
    display: flex !important;
}

/*BASKET NUMBER END*/