body {
    background: var(--body-bg);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    left: 0;
    color: var(--main-color);
    font-family: "DM Sans", sans-serif;
}

/* Reset */
a {
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-color2);
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: hidden;
}

/* Overlay */
.overlay {
    display: flex;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, .4);
    justify-content: center;
    align-items: center;
}

.overlay .spin {
    color: var(--main-color);
    width: 48px;
    height: 48px;
    font-size: 20px;
}

/* Background Blur Overlay */
.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.overlay-blur.active {
    opacity: 1;
    pointer-events: auto;
}

/* Header*/

header .header-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    height: 80px;
}

header .header-logo {
    width: 150px;
    min-width: 150px;
}

/* Main Menu */

header {
    position: relative;
    background-color: #ffffff;
    height: 80px;
}

body:not(.home-body) header {
    margin-bottom: 20px;
}

.header-wrapper .mega-menu {
    flex: 1;
}

.header-wrapper .mega-menu .navbar-nav {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    height: 80px;
    line-height: 40px;
}

.header-wrapper .mega-menu .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px 10px;
}

.header-wrapper .mega-menu .navbar-nav .nav-item .nav-link {
    position: relative;
    background: linear-gradient(to right, var(--main-color) 50%, var(--main-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease;
}

.header-wrapper .mega-menu .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 14px;
    height: 2px;
    background-color: var(--main-color);
    transform: scaleX(0);
    /* başlangıçta gizli */
    transform-origin: left center;
    transition: transform 0.3s linear;
}

.header-wrapper .mega-menu .navbar-nav .nav-item .nav-link:hover,
.header-wrapper .mega-menu .navbar-nav .nav-item:hover .nav-link {
    background-position: left;
}

.header-wrapper .mega-menu .navbar-nav .nav-item .nav-link:hover::before,
.header-wrapper .mega-menu .navbar-nav .nav-item:hover .nav-link::before {
    transform: scaleX(1);
    /* hover'da görünür */
}

.header-wrapper .mega-menu .dropdown {
    position: static;
}

.header-wrapper .mega-menu .dropdown-menu {
    border-radius: 0;
    background-color: #fff;
    width: 100%;
    position: absolute;
    -webkit-box-shadow: 0px 10px 25px 0px #2b344a1f;
    ;
    -moz-box-shadow: 0px 10px 25px 0px #2b344a1f;
    ;
    box-shadow: 0px 10px 25px 0px #2b344a1f;
    border: 0;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    padding: 20px 0;
}

.header-wrapper .mega-menu .nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat .sub-title {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: start;
    display: flex;
    transition: all 0.3s ease;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat .sub-title:hover {
    color: var(--main-color2);
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat ul li a {
    padding: 7px 0;
    color: #4d4e4f;
    position: relative;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat ul li a::before {
    content: "";
    width: 0;
    height: 1px;
    top: 80%;
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1;
    -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: var(--main-color);
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat ul li a:hover {
    color: #000000;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat ul li a:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img img {
    width: 100%;
    height: 100%;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img-title {
    position: absolute;
    bottom: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--main-color);
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 3px;
    height: 45px;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img-title i {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    transform-origin: right;
    width: 0;
    display: inline-block;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img-title:hover {
    background-color: var(--main-color2);
    color: #ffffff;
}

.header-wrapper .mega-menu .dropdown-menu .sub-cat-img-title:hover i {
    transform: scale(1);
    width: 10px;
    margin-left: 8px;
}


/* Header Actions */

header .header-actions {
    display: flex;
}

header .header-actions .action-wrapper {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

header .header-actions .action-wrapper i {
    font-size: 20px;
}

.pattern-group .p-g-mod-t-28 {
    margin-bottom: 0;
}

/* Search */
.special-product-search {
    position: fixed;
    top: -100%;
    width: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    border-radius: 5px;
}

.search-header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 9;
    padding-top: 20px;
}

.search-header form {
    position: relative;
}

.search-header form .btn-send {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 17px;
    width: 35px;
}

.special-product-search.active {
    top: 50%;
    max-height: calc(100% - 80px);
}

.search-box {
    max-width: 75%;
    margin: 10px auto 30px auto;
    padding: 20px;
}

.search-header .search-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    position: relative;
}

.search-header h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.search-header #closeSpecialSearch {
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.search-header #closeSpecialSearch::before {
    content: "\eb98";
    font-family: "coreicon";
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.search-header #closeSpecialSearch:hover {
    transform: rotate(90deg);
    color: var(--main-color2);
}

.search-header form {
    width: 100%;
    margin-bottom: 30px;
}

.search-header form input {
    height: 50px;
    color: #535353;
    border: 2px solid #e9e9e9;
    background-color: #fff;
    width: 100%;
    outline: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 26px;
    border-radius: 8px;
    padding: 9px 16px;
    transition: all 0.3s ease;
}

.search-header form input::placeholder {
    color: #a0a0a0;
    font-size: 15px;
}

.search-header form input:hover,
.search-header form input:focus {
    border-color: #000000;
}

.search-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.search-box .popular-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.search-box .popular-categories ul li a {
    display: flex;
    padding: 4px 15px;
    border-radius: 60px;
    border: 1px solid #e9e9e9;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: #383838;
}

.search-box .popular-categories ul li a:hover {
    color: var(--main-color2);
}

.search-box .search-results .item img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.search-box .search-results .item .name {
    font-size: 13px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    font-weight: 500;
    text-align: start;
    margin-top: 10px;
    margin-bottom: 5px;
    height: 38px;
}

.search-box .search-results .item:hover a {
    color: var(--main-color);
}

.search-box .search-results .item .price {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.search-box .search-results .item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
}

.search-box .search-results .item .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.search-box .search-results .item:hover img {
    filter: brightness(90%);
}

.search-results .row .col-md-3 {
    padding-left: 3px;
    padding-right: 3px;
}

/* Sidebar Cart */

.sidebar-cart {
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    box-shadow: -20px 0px 15px 0 rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform .3s ease;
    will-change: transform;
}

.sidebar-cart.active {
    transform: translateX(0);
}

.sidebar-cart .sc-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-cart .sc-header .title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 10px;
}

.sidebar-cart .sc-header .close-icon {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #555;
    border-radius: 50%;
}

.sidebar-cart .sc-header .close-icon:hover {
    background: #000000;
    color: #ffffff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #181818;
}

.sidebar-cart .cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
    gap: 10px
}

.sidebar-cart .cart-empty .title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.sidebar-cart .cart-empty .description {
    font-size: 14px;
    color: #555;
}

.sidebar-cart .cart-empty .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 10px 20px;
    gap: 5px;
    background: #000000;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
}

.sidebar-cart .cart-empty .btn:hover {
    background-color: #000;
    color: #fff;
}

.sidebar-cart .shipping-info {
    background: #f5f6ec;
    padding: 15px;
    border-radius: 3px;
    margin: 10px;
    font-size: 14px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 600;
}

.sidebar-cart .shipping-info.active {
    background: var(--success);
    color: #fff;
}

.sidebar-cart .shipping-info .cart-progress {
    border-radius: 10px;
    width: 100%;
    height: 7px;
}

.sidebar-cart .shipping-info .cart-progress::-webkit-progress-bar {
    background-color: #e1e1e1;
    border-radius: 7px;
}

.sidebar-cart .shipping-info .cart-progress::-webkit-progress-value {
    background-color: var(--success);
    border-radius: 7px;
}

.sidebar-cart .products {
    flex: 1;
    overflow-y: auto;
}

.sidebar-cart .products .items {
    padding: 10px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.sidebar-cart .products .items .item {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.sidebar-cart .products .items .item:last-child {
    border-bottom: none;
}

.sidebar-cart .products .items .item .image {
    max-width: 80px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #f5f5f5;
}

.sidebar-cart .products .items .item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-cart .products .items .item .info .name {
    font-size: 14px;
    font-weight: 600;
    color: #181818;
    transition: all .4s;
}

.sidebar-cart .products .items .item .info .name:hover {
    color: var(--main-color2);
}

.sidebar-cart .products .items .item .info .variants .variant span {
    color: #a0a0a0;
    font-size: 13px;
}

.sidebar-cart .products .items .item .info .prices {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sidebar-cart .products .items .item .info .prices .old-value {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: line-through;
    font-weight: 400;
}

.sidebar-cart .products .items .item .info .prices .value {
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.sidebar-cart .products .items .item .btn-remove {
    font-size: 14px;
    color: #777;
}

.sidebar-cart .products .items .item .btn-remove:hover {
    color: #000;
}

.sidebar-cart .cart-actions {
    display: flex;
    margin-bottom: 16px;
    padding: 0 15px;
    justify-content: space-between;
}

.sidebar-cart .cart-actions a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 15px 32px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    height: 50px;
    transition: all .4s;
    flex: 1;
}

.sidebar-cart .cart-actions .btn-cart {
    border: 1px solid #181818;
    color: #181818;
    max-width: 150px;
}

.sidebar-cart .cart-actions .btn-cart:hover {
    background-color: #181818;
    border-color: #181818;
    color: #ffffff;
}

.sidebar-cart .cart-actions .btn-payment {
    color: #ffffff;
    background-color: #181818;
    margin-left: 5px;
}

.sidebar-cart .cart-actions .btn-payment:hover {
    background-color: var(--main-color2);
    border-color: var(--main-color2);
    color: #ffffff;
}

.sidebar-cart .summary .btn-cart .cart-total span {
    font-size: 16px;
}

/* Slider */

.p-g-mod-t-45 {
    position: relative;
}

.p-g-mod-t-45 .carousel-caption {
    position: absolute;
    left: 100px;
    bottom: 50%;
    transform: translateY(55%);
    padding: 0;
    z-index: 2;
    text-align: left;
}

.p-g-mod-t-45 .carousel-caption h5 {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.p-g-mod-t-45 .carousel-caption p {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    color: #fff;
    max-width: 600px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    height: 40px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-g-mod-t-45 .carousel-caption .headline-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
}

.p-g-mod-t-45 .carousel-caption .headline-button::before {
    content: "";
    position: absolute;
    bottom: -50%;
    width: 110%;
    height: 100%;
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(0);
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    background-color: var(--main-color2);
    z-index: -1;
    left: -10px;
}

.p-g-mod-t-45 .carousel-caption .headline-button::after {
    content: "\ea70";
    font-family: "coreicon";
}

.p-g-mod-t-45 .carousel-caption .headline-button:hover::before {
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(2);
}

.p-g-mod-t-45 .carousel-caption .headline-button:hover {
    color: #fff;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption h5 {
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption p {
    animation: fadeInUp 1s forwards;
    animation-delay: 1s;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption .headline-button {
    animation: fadeInUp 1s forwards;
    animation-delay: 1.5s;
}

.p-g-mod-t-45 .carousel-item.active .carousel-caption .headline-button:empty,
.p-g-mod-t-44 .banner-item .banner-special-content .special-btn:empty {
    display: none;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
    border-radius: 50%;
    border: 4px solid transparent;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px #ffffff;
    height: 8px;
    width: 8px;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li.active {
    background-color: #ffffff;
}

.p-g-mod-t-45 .carousel-control-prev i,
.p-g-mod-t-45 .carousel-control-next i {
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 5px;
    font-size: 15px;
    color: #000;
}

.p-g-mod-t-45 .carousel-control-prev {
    left: 20px;
}

.p-g-mod-t-45 .carousel-control-next {
    right: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.pattern-group .p-g-mod-t-52 .p-g-mod-header .p-g-m-h-info {
    align-items: center;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.payment-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.payment-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title i {
    background-color: #000000;
    display: inline-flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 10px;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description {
    font-size: 15px;
    color: #555555;
}

.pattern-group .p-g-mod .p-g-mod-header {
    border: none;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod {
    font-size: 14px;
    font-weight: 600;
    border: 0;
    padding: 0 0 2px 0;
    background: linear-gradient(to right, var(--main-color2) 50%, var(--main-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod:hover {
    background-position: left;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::before,
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    transition: width 0.3s linear;
}


.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::before {
    background-color: var(--main-color2);
    z-index: 1;
    width: 0;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod::after {
    background-color: var(--main-color);
    width: 100%;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod:hover::before {
    width: 100%;
}

/* Product Card */


.card-product .image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.card-product .card-product-inner {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
}

.card-product .buttons-wrapper.right-to-left {
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 9;
    transition: all .4s;
}

.card-product .buttons-wrapper.right-to-left a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    place-content: center;
    text-align: center;
    transition: all .4s;
    margin-bottom: 7px;
    font-size: 20px;
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0px 0px 3px #ebebeb;
}

.card-product .buttons-wrapper.right-to-left a:hover {
    background-color: #000000;
    color: #ffffff;
    transition: all .4s;
    box-shadow: none;
}

.card-product .buttons-wrapper.right-to-left .cart-group {
    display: flex;
    flex-direction: column;
}

.card-product:hover .buttons-wrapper.right-to-left {
    opacity: 1;
    right: 10px;
}

.card-product .buttons-wrapper.down-to-top {
    position: absolute;
    overflow: hidden;
    width: 80%;
    left: 50%;
    transform: translate3d(-50%, 0%, 0);
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: 95%;
}

.card-product .buttons-wrapper.down-to-top .button-group {
    background: transparent;
    padding: 7px;
    width: 100%;
}

.card-product .buttons-wrapper.down-to-top .button-group a {
    color: #000000;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.card-product:hover .buttons-wrapper.down-to-top {
    position: absolute;
    overflow: hidden;
    left: 50%;
    transform: translate3d(-50%, -140%, 0);
    transition: all .2s;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: -3px 0 10px -2px rgba(0, 0, 0, .1);
}

.card-product .buttons-wrapper.down-to-top:hover {
    color: #ffffff;
    background-color: #000000;
    box-shadow: 0 0 0 3px #000000;
    transition: all .2s;
}

.card-product .buttons-wrapper.down-to-top:hover a {
    color: #ffffff;
}

.card-product:hover .buttons-wrapper.down-to-top .button-group {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: all .4s;
    margin: 0;
    padding: 3px 0;
}

.card-product .prices {
    display: flex;
    align-items: center;
}

.card-product .product-reviews {
    justify-content: flex-start;
    margin-top: 15px;
}

.card-product .product-reviews .stars .star.fill {
    color: #ff9538;
}

.product-reviews .count {
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    line-height: 13px;
}

.card-product .card-product-inner .title {
    text-align: left;
    font-weight: 500;
    color: var(--main-color);
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0;
    height: auto;
    max-height: 40px;
}

.card-product .card-product-inner .price-group {
    justify-content: flex-start;
    align-items: center;
    height: auto;
}

.card-product .card-product-inner .price-group .prices .sale-price {
    color: var(--main-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.card-product .card-product-inner .price-group .prices .list-price {
    margin-right: 8px;
    font-weight: 600;
    color: #b6b6b6;
    font-size: 15px;
    line-height: 22px;
    text-decoration: line-through;
}

.card-product .sale-price-basket {
    display: flex;
    color: #da413f;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.card-product .sale-price-basket .sale-price {
    font-size: 15px;
}

.card-product .it-over {
    position: absolute;
    bottom: 0;
    background: #000;
    width: 100%;
    padding: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

.owl-wrapper .owl-single-button button {
    color: #ffffff;
    font-size: 18px;
}

.owl-wrapper .owl-single-button {
    box-shadow: none;
    background: #000000;
    transition: all .4s;
}

.owl-wrapper .owl-single-button:hover {
    background-color: var(--main-color2);
}

/* Instagram Shop */

.pattern-group .p-g-mod.instagram-shop {
    margin-bottom: 0;
}

.pattern-group .p-g-mod.instagram-shop .p-g-mod-header .p-g-m-h-info {
    align-items: center;
}

.pattern-group .p-g-mod.instagram-shop .p-g-mod-header {
    height: 80px;
}

.instagram-shop .col-list-p-v-1 {
    padding: 0;
    padding-right: 5px;
}

.instagram-shop .col-list-p-v-1:last-child {
    padding-right: 0;
}

.instagram-shop .banner-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.instagram-shop .banner-item .image {
    overflow: hidden;
    border-radius: 10px;
}

.instagram-shop .banner-item .image img {
    display: block;
    width: 100%;
    transition: transform .6s ease, filter .6s ease;
    will-change: transform, filter;
}

.instagram-shop .banner-item:hover .image img {
    transform: scale(1.20);
    filter: brightness(0.50);
}

.instagram-shop .banner-item::after {
    content: "\ee66";
    font-family: "coreicon";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.85);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-size: 24px;
    line-height: 45px;
    text-align: center;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.instagram-shop .banner-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.instagram-shop .banner-item::after:hover {
    background: #000000;
    color: #ffffff;
}

/* Custom Component */
.product-body #accordion {
    margin-top: 24px;
}

.product-body #accordion .accordion-product {
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.product-body #accordion .accordion-product .card-header {
    background: transparent;
    border: 0;
    padding: 0;
}

.product-body #accordion .accordion-product .btn-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0;
    background: transparent;
    border: 0;
    color: #111;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Soldaki eski icon'u kapat */
.product-body #accordion .accordion-product .btn-link i {
    display: none !important;
}

/* Başlık */
.product-body #accordion .accordion-product .btn-link span {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #111;
}

/* Sağdaki + / - */
.product-body #accordion .accordion-product .btn-link::after {
    content: "+";
    font-size: clamp(34px, 2.5vw, 54px);
    line-height: 1;
    font-weight: 400;
    color: #111;
    flex: 0 0 auto;
}

/* Açık panelde - */
.product-body #accordion .accordion-product .btn-link:not(.collapsed)::after {
    content: "−";
}

/* İçerik */
.product-body #accordion .accordion-product .card-body {
    padding: 0 0 30px 0;
    margin-top: 0;
    color: #111;
}

.product-body #accordion .accordion-product .card-body,
.product-body #accordion .accordion-product .card-body p,
.product-body #accordion .accordion-product .card-body li {
    font-size: clamp(20px, 1.45vw, 34px);
    line-height: 1.55;
    font-weight: 400;
    color: #111;
}

/* Mobil */
@media (max-width: 991px) {
    .product-body #accordion {
        padding: 0 18px;
    }

    .product-body #accordion .accordion-product .btn-link {
        padding: 18px 0;
    }

    .product-body #accordion .accordion-product .btn-link span {
        font-size: 24px;
    }

    .product-body #accordion .accordion-product .btn-link::after {
        font-size: 34px;
    }

    .product-body #accordion .accordion-product .card-body,
    .product-body #accordion .accordion-product .card-body p,
    .product-body #accordion .accordion-product .card-body li {
        font-size: 17px;
    }
}

.product-body .p-g-mod-t-48 .raw-content img,
.product-body .p-g-mod-t-48 .raw-content table {
    max-height: fit-content;
}

.product-body .product-carousel-desktop .row.single-image {
    justify-content: center;
}

.card-comment .product .customer .comment {
    height: 85px;
    line-height: normal;
}

.pages-body .p-g-mod-base-content .p-g-m-h-info {
    align-items: flex-start;
}

.pages-spec-container {
    border: 1px solid #ebebeb;
    padding: 40px;
    border-radius: 5px;
}

.blog_single-body h1 {
    font-size: 30px;
}

.blog_single-body h2 {
    font-size: 24px;
}

.blog_single-body h3 {
    font-size: 20px;
}

.blog_single-body h4 {
    font-size: 18px;
}

.blog_single-body h5 {
    font-size: 16px;
}

.blog_single-body h6 {
    font-size: 14px;
}

.card-product .card-product-inner .price-group .discount {
    align-items: center;
    background: #E62727;
    border-radius: 3px;
    color: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    height: 29px;
    justify-content: center;
    margin-right: 10px;
    text-align: center;
    width: 40px;
}

.card-product .card-product-inner .product-label.top-left,
.product-profile-1 .product-label.top-left {
    top: 10px;
    left: 10px;
}

.product-profile-1 .product-label img,
.card-product .card-product-inner .product-label img {
    max-width: 100%;
    width: auto;
    max-height: 30px;
}

.pattern-group .p-g-mod-t-cat-filter .p-g-mod-header {
    border-bottom: 0;
    height: 40px;
}

footer .social-media .social-media-title {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Footer alt yerleşim */
.footer-locale-social-row {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ececec;
    align-items: center;
}

.footer-locale-box {
    gap: 10px;
}

.footer-social-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social-right a i {
    font-size: 18px;
    color: #111;
}

.footer-copy-cards-row {
    align-items: center;
}

@media (max-width: 767px) {
    .footer-locale-box {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-social-right {
        justify-content: center;
    }
}

footer .social-media a i {
    font-size: 18px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
}

.cat-responsive-buttons {
    display: none;
}

.q-form-group .checkbox-option .description,
.q-form-group .checkbox-option .info {
    margin-left: 15px;
}

.q-form-group .checkbox-option .info .name {
    color: #000000;
    font-weight: 600;
}

.password-form .btn-submit,
.password-reset-form .btn-submit {
    background: #000000;
    color: #ffffff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.password-form .btn-submit:hover,
.password-reset-form .btn-submit:hover {
    background: #33bb46;
    color: #ffffff;
}

.password-form .btn-login,
.password-reset-form .btn-login {
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.password-form .btn-login:hover,
.password-reset-form .btn-login:hover {
    background: #33bb46;
    border-color: #33bb46;
    color: #ffffff;
}

.product-link-close-btn {
    position: absolute;
    right: 15px;
    top: 20px;
    font-size: 15px;
    color: #b2b2b2;
    cursor: pointer;
}

.product-body .product-social-hover .social-link {
    display: block;
    overflow: hidden;
    color: #6d6f71;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #f3f3f3;
    border: 1px solid #d7d7d8;
    outline: none;
    cursor: pointer;
    height: auto;
    width: 100%;
    padding: 10px 16px;
    margin: 20px 0;
}

.product-body .product-social-hover {
    position: absolute;
    top: unset;
    bottom: 110%;
    background: #fff;
    z-index: 9;
    padding: 20px;
    border: 1px solid #d7d7d8;
    left: 0;
    right: unset;
    display: none;
    width: 300px;
}

.product-body .product-social-hover.show {
    display: flex;
    flex-direction: column;
}

.product-body .product-social-hover::after,
.product-body .product-social-hover::before {
    position: absolute;
    top: 100%;
    left: 13px;
    border: solid rgba(0, 0, 0, 0);
    content: " ";
    pointer-events: none;
}

.product-body .product-social-hover:before {
    margin-left: -6px;
    border-color: rgba(215, 215, 216, 0);
    border-width: 6px;
    border-top-color: #d7d7d8;
}

.product-body .product-social-hover::after {
    margin-left: -5px;
    border-color: rgba(255, 255, 255, 0);
    border-width: 5px;
    border-top-color: #fff;
}

.product-body .product-short-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 15px 0 15px 0px;
    align-items: center;
}

.product-body .product-short-link span {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
}

.product-body .product-short-link span i {
    font-size: 18px;
    margin-right: 0;
}

.product-carousel .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    z-index: 9;
}

.product-carousel .product-actions a {
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0px 0px 3px #ebebeb;
    border-radius: 50%;
    margin-bottom: 7px;
    text-align: center;
    align-content: center;
}

.product-favourite a i {
    margin-right: 0;
}

.cart-body .pattern-group .p-g-mod-t-55 .p-g-mod-header .p-g-m-h-info {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.cart-empty-alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    position: relative;
}

.cart-empty-alert::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 230, 230, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cart-empty-alert h6,
.cart-empty-alert span,
.cart-empty-alert .btn {
    position: relative;
    z-index: 1;
}

.cart-empty-alert .cart-icons-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-alert .cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
    font-size: 80px;
    color: #d1d5db;
    position: relative;
    z-index: 2;
    background-color: #f9fafb;
    border-radius: 50%;
    border: 1px solid #ebebeb;
}

.cart-empty-alert .checkmark-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 20px;
    right: 10px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #27AE60;
    animation: floatUpDown 5s ease-in-out infinite;
    animation-delay: 0.3s;
    z-index: 3;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.cart-empty-alert .asterisk-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    bottom: 20px;
    left: 10px;
    color: #fb923c;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    line-height: normal;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cart-empty-alert h6 {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color, #333);
    margin: 0 0 15px 0;
    line-height: 1.2;
    max-width: 500px;
}

.cart-empty-alert span {
    font-size: 16px;
    color: var(--text-light, #999);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    display: block;
}

.cart-empty-alert .btn {
    margin-top: 20px;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    border-color: #000000;
}

.cart-empty-alert .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.p-g-mod-t-12 .p-g-mod-body .social-share {
    border-top: 1px solid #efefef;
    font-size: 12px;
    padding-top: 10px;
}

.card-blog .image {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    margin-bottom: 10px;
}

.card-blog .image a img {
    transition: all .4s;
}

.card-blog .image:hover a img {
    transform: scale(1.05);
}

.card-blog .description {
    padding: 0;
    -webkit-line-clamp: 2;
    height: 34px;
    margin-bottom: 10px;
}

.card-blog .title {
    height: auto;
    padding: 0;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    line-height: normal;
    transition: all .4s;
}

.card-blog .title:hover {
    color: var(--main-color2);
}

.blogs-body .pattern-group .p-g-mod-t-17 .p-g-mod-header .p-g-m-h-info {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.card-blog .buttons .btn-read-more {
    background: #fff;
    border: 0;
    color: #000;
    font-size: 13px;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 3px 0;
    font-weight: 500;
    transition: all .4s;
}

.card-blog .buttons .btn-read-more:hover {
    background-color: transparent;
    color: var(--main-color2);
    border-color: var(--main-color2);
}

.card-blog .buttons {
    padding: 0px;
    justify-content: flex-start;
    display: flex;
}

.product-profile-1 .product-brand {
    font-weight: 600;
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.card-comment {
    background-color: hsla(0, 0%, 7%, .03);
}

.card-comment .product .image {
    height: 125px;
    width: auto;
}

.card-comment .product {
    margin-top: 10px;
}

.card-comment .info .stars {
    color: #999;
    font-size: 13px;
    margin-right: 6px;
}

.card-comment .info .date {
    color: #a1a1a1;
    font-size: 14px;
}

header .header-logo img {
    max-height: 90px;
}

.hizli-sepet .buttons {
    display: flex;
    align-items: center;
}

.modal .native-modal-close,
.native-modal .native-modal-close {
    outline: none;
}

.swal-button {
    background-color: #000000;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-success {
    color: #fff;
    background-color: #499F30;
    border-color: #28a745;
    font-size: 15px;
    transition: all .4s;
}

header.desktop .bar-user-hover ul.user-links {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

header.desktop .bar-user-hover .user-links a {
    font-size: 14px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    color: #181818;
    font-weight: 600;
    transition: all .4s;
}

header.desktop .bar-user-hover .user-links a:hover {
    color: var(--main-color2);
}

header.desktop .bar-user-hover .dropdown-menu .user-links i {
    font-size: 12px;
    margin-right: 10px;
    color: #000000;
}

header.desktop .bar-user-hover:hover .dropdown-menu {
    display: block !important;
}

header.desktop .bar-user-hover:hover i {
    color: var(--main-color2);
}

li.action-item.dropdown.bar-user-hover {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

header.desktop .bar-user-hover .dropdown-menu {
    width: 250px;
    left: inherit;
    right: -110px;
    top: 25px;
    border-radius: 0;
    border: 1px solid #000;
    padding: 20px 0;
}

header.desktop .bar-user-hover .dropdown-menu ul.auth-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

header.desktop .bar-user-hover .dropdown-menu .top-header {
    padding: 5px 30px 20px 30px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 10px;
}

header.desktop .bar-user-hover .dropdown-menu .link {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

header.desktop .bar-user-hover .dropdown-menu .link a {
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 5px;
    font-size: 13px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s;
    font-weight: 600;
}

header.desktop .bar-user-hover .dropdown-menu .link a:hover,
header.desktop .bar-user-hover .dropdown-menu .link a:hover i {
    color: var(--main-color2);
    transition: all .4s;
}

header.desktop .bar-user-hover .dropdown-menu .link a i {
    font-size: 10px;
    color: #181818;
}

header.desktop .bar-user-hover .dropdown-menu .link a:last-child {
    border-bottom: none;
}

header.desktop .bar-user-hover .dropdown-menu .login {
    background: #000;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    color: #fff;
    font-weight: 600;
}

header.desktop .bar-user-hover .dropdown-menu .login:hover {
    background: var(--main-color2);
    transition: all .4s;
}

header.desktop .bar-user-hover .dropdown-menu .login a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

header.desktop .bar-user-hover .dropdown-menu .register {
    font-size: 13px;
    color: #000;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    cursor: default;
    align-items: center;
}

header.desktop .bar-user-hover .dropdown-menu .register a {
    border-bottom: 1px solid #000;
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    transition: all .4s;
}

header.desktop .bar-user-hover .dropdown-menu .register a:hover {
    color: var(--main-color2);
    border-color: var(--main-color2);
}

.cart-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner .p-g-mod,
.payment-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner .p-g-mod {
    padding: 0px 15px;
}

.alert {
    font-size: 14px;
    font-weight: 600;
}

.payment-form-methods .nav-tabs .nav-link {
    background: #282828;
    color: #fff;
    font-weight: 600;
    transition: all .4s;
}

.payment-form-methods .nav-tabs .nav-link.active {
    font-weight: 600;
}

.credit-card-form .form-group label {
    color: #181818;
    font-size: 13px;
    font-weight: 500;
}

.payment-cart-summary-1 .p-list-button {
    color: var(--main-color);
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 0;
}

.shipment-methods .method:hover {
    background: rgba(0, 0, 0, .02);
    transition: all .4s;
}

.shipment-methods .method .name .info span {
    font-size: 14px;
    font-weight: 500;
}

.shipment-methods .method .price {
    font-size: 14px;
    font-weight: 600;
    padding-right: 5px;
}

.payment-steps-1 {
    display: flex;
    border: 1px solid #f6f6f8;
    padding: 30px 20px;
    border-radius: 3px;
}

.payment-steps-1 .step.step-1:after,
.payment-steps-1 .step.step-2:after,
.payment-steps-1 .step.step-2:before,
.payment-steps-1 .step.step-3:before {
    background: #dde5eb;
}

.payment-steps-1 .step.step-1.completed:after,
.payment-steps-1 .step.step-2.active:before,
.payment-steps-1 .step.step-2.completed:after,
.payment-steps-1 .step.step-2.completed:before,
.payment-steps-1 .step.step-3.active:before {
    background: #33a852;
}

.payment-steps-1 .step.completed .circle {
    background: #34a852;
    color: #fff;
    border-color: #b8feca;
}

.payment-steps-1 .step.completed {
    color: #34a852;
}

.payment-steps-1 .step .circle {
    background: #fff;
    border: 2px solid #dde5eb;
}

.payment-steps-1 .step {
    font-size: 15px;
    font-weight: 600;
}

.payment-steps-1 .step.active {
    color: #10152d;
}

.payment-steps-1 .step.active .circle {
    background: #10152d;
    color: #fff;
    border: 1px solid #10152d;
}

.payment-body form .form-control {
    border: 2px solid #e9e9e9;
    font-size: 14px;
    border-radius: 8px;
    padding: 9px 16px;
    line-height: 26px;
    min-height: 45px;
}

.payment-body form label {
    font-weight: 600;
    font-size: 14px;
}

.p-g-mod-base-content {
    border: 1px solid #ebebeb;
}

.blog_single-body .p-g-mod-base-content {
    border: 0;
}

.product-body .p-g-mod-base-content,
.pages-body .p-g-mod-base-content {
    border: 0;
}

.item-sidebar-cart {
    position: relative;
}

.item-sidebar-cart .count {
    position: absolute;
    right: -10px;
    top: -10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #db2534;
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
}

.related-products {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 35px;
    margin-top: 10px;
}

.related-products a.active img {
    border-color: #000000;
}

.related-products a img {
    margin-bottom: 5px;
}

.related-products a,
.product-profile-info li a {
    color: #181818;
    margin-bottom: 10px;
}

.related-products a {
    height: auto;
}

.related-products a img {
    max-height: 110px;
}


.product-body .breadcrumb-wrapper .breadcrumb {
    background: none;
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    border-top: 0;
    border-radius: 0;
    padding-top: 15px;
}

.breadcrumb-wrapper .breadcrumb a {
    cursor: pointer;
    transition: all .4s;
}

.breadcrumb-wrapper .breadcrumb a:hover {
    color: var(--main-color2);
}

.jssocials-share-twitter .jssocials-share-link {
    background-color: #000000 !important;
}

.fa-twitter.jssocials-share-logo {
    content: '\F3E7';
    font-family: 'coreicon';
}

.fa-twitter:before {
    content: '\F3E7' !important;
    font-family: 'coreicon';
}

.product-body .product-profile-1 .alert-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 600 !important;
}

.product-customer-actions {
    background: #fbfbfb;
    border: 1px solid #F4F4F4;
    padding: 10px 0;
}

.product-customer-actions .action .button {
    color: #383838;
    font-weight: 600;
    padding: 5px 10px;
    font-size: 13px;
    margin-right: 20px;
    line-height: normal;
    transition: all .4s;
}

.product-customer-actions .action .button:hover {
    color: var(--main-color2);
}

.product-customer-actions .action .button i {
    font-size: 18px;
    margin-right: 5px;
}

.product-customer-actions .action {
    align-items: center;
    border-right: 0;
}

.product-customer-actions .action:first-child {
    border-left: 0;
}

.product-body .product-transfer-discount,
.product-body .product-size-box,
.product-body .product-cargo-time,
.product-body .product-rate,
.hizli-sepet .product-transfer-discount,
.hizli-sepet .product-size-box,
.hizli-sepet .product-cargo-time,
.hizli-sepet .product-rate {
    display: flex;
    align-items: center;
}

.product-body .product-cargo-time span {
    font-weight: 500;
    color: #181818;
}

.product-size-box a {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.product-profile-info .product-short-desc {
    font-weight: 500;
    line-height: normal;
    color: #393939;
    font-size: 15px;
    margin-top: 20px;
}

.product-body .p-icon-special,
.hizli-sepet .p-icon-special {
    height: 20px;
    margin-right: 5px;
}

.product-body .p-icon-special-animation,
.hizli-sepet .p-icon-special-animation {
    animation: ani-flash 4s infinite;
    filter: brightness(0) saturate(100%) invert(6%) sepia(100%) saturate(9000%) hue-rotate(-10deg);
}

@keyframes ani-flash {

    50%,
    0%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.product-profile-info .product-reviews {
    align-items: center;
}

.product-profile-info .product-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-profile-info .product-price-group .sale-price-basket {
    display: flex;
    color: #da413f;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.product-profile-info .product-price-group .sale-price {
    font-size: 16px;
}

.product-profile-info .product-price-group .prices {
    display: flex;
    align-items: center;
}

.product-profile-info .product-price-group .prices .sale-price {
    font-size: 20px;
}

.product-profile-info .product-price-group .prices .list-price {
    color: #a0a0a0;
    font-size: 18px;
    margin-right: 10px;
}

.product-price-group .discount {
    background: #f03e3e;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 600;
    height: auto;
    margin-left: 10px;
    width: auto;
    padding: 3px 14px;
    border-radius: 15px;
}

.product-buttons .btn-all-combines,
.product-buttons .btn-cart {
    background: #000000;
    border-color: #000000;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    transition: all .4s ease;
    margin-right: 0;
    border-radius: 30px;
    height: 50px;
}

.product-buttons .btn-all-combines:hover,
.product-buttons .btn-cart:hover {
    background-color: #74b06f;
    border-color: #74b06f;
}

.product-buttons .btn-fast-buy {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 52px;
    justify-content: center;
    margin: 0;
    width: 100%;
    background: var(--main-color2);
    font-weight: 600;
    border: 0;
    transition: all .4s ease;
    height: 50px;
    border-radius: 30px;
}

.product-buttons .btn-fast-buy:hover {
    background-color: var(--main-color);
}

.product-buttons .product-favourite a i,
.hizli-sepet .product-favourite2 a i {
    margin-right: 0;
    border: 1px solid #ebebeb;
    margin: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    border-radius: 4px;
    margin-left: 0;
    margin-right: 0;
    font-size: 19px;
}

.product-quantity .btn {
    align-items: center;
    color: var(--main-color);
    display: flex;
    font-size: 11px;
    font-weight: 500;
    height: 45px;
    justify-content: center;
    padding: 0;
    width: 40px;
    background: #f2f2f2;
    border: 0;
}

.product-quantity .btn:hover {
    background-color: #f6f6f6;
}

.product-body .product-quantity input,
.hizli-sepet .product-quantity input {
    height: 45px;
    width: 40px;
    border: 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #f2f2f2 !important;
}

.pattern-group .p-g-tab-wrapper {
    display: flex;
    flex-direction: column;
    border: 0;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav {
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pattern-group .p-g-tab-wrapper .raw-content {
    font-size: 13px;
    color: #181818;
    line-height: 24px;
    padding: 10px 0px;
    overflow: auto;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item {
    display: flex;
    margin: 0;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
    font-weight: 600;
    line-height: 100%;
    color: #00000054;
    display: block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    transition: all .4s ease;
    margin-right: 30px;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod {
    font-size: 16px !important;
    font-weight: 600;
    border-bottom: 1px solid #000;
    border-radius: 0;
    width: 100%;
    padding: 0;
    padding-bottom: 5px;
}

.sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod {
    position: relative;
    border-bottom: 0 !important;
}

.sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform-origin: right center;
    transform: scaleX(1);
    transition: transform .35s ease;
}

.sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod:hover::after {
    transform: scaleX(0);
}

.sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod:not(:hover)::after {
    transform-origin: left center;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link:hover,
.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link.active {
    background: transparent;
    color: #000;
}

.product-carousel.slide .col-md-6,
.product-carousel.slide .col-md-3 {
    padding: 3px;
}

.variant-box {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.variant-box ul li .options a {
    min-width: 45px;
    height: auto;
    width: max-content;
    border: 1px solid rgba(134, 134, 134, 0.12);
    border-radius: 30px;
    padding: 12px 18px;
    text-align: center;
    transition: all .4s ease;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
    margin-bottom: 5px;
}

.variant-box ul li .options a:hover {
    border-color: #000000;
}

.variant-box ul li .options a.active {
    border-color: #000000;
    background-color: #000000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.10);
    color: #ffffff;
}

.variant-box ul li .name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
}

.variant-box ul li {
    margin-bottom: 15px;
}

.product-badges {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 30px;
}

.product-badges .p-badge {
    align-items: center;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: auto;
    border: none;
}

.product-badges .p-badge i {
    color: #181818;
    font-size: 25px;
    margin-right: 15px;
}

.product-badges .p-badge .content {
    display: flex;
    flex-direction: column;

}

.product-badges .p-badge .content .title {
    font-weight: 600;
    color: var(--main-color);
    font-size: 14px;
}

.product-badges .p-badge .content .description {
    font-size: 13px;
    color: #A1A1A1;
    margin: 0;
}

.product-body .p-g-b-c-1 .product-profile-1 {
    padding: 0 20px;
}

.product-profile-1 .product-carousel-desktop.normal .carousel-outer {
    position: relative;
}

.product-profile-1 .product-carousel-desktop.normal .free-cargo-badge {
    position: absolute;
    background-color: #73AF6F;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    top: 13px;
    z-index: 1;
    width: 100px;
    text-align: center;
    left: 10px;
}

.product-profile-info li {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-profile-info li span,
.product-profile-info li a .value {
    line-height: 22px;
    font-size: 14px;
    color: #181818;
    font-weight: 600;
    transition: all .4s;
}

.product-profile-info.info-2 li span,
.product-profile-info.info-2 li a .value {
    color: #5f615e;
}

.product-profile-info li a:hover .value {
    color: var(--main-color2);
}

.product-profile-1 h1.title {
    border-bottom: 0;
    color: var(--main-color);
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
}

.breadcrumb-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -20px;
}

.breadcrumb-bg h1 {
    font-size: 28px;
}

.breadcrumb-bg p {
    color: #545454;
    font-size: 15px;
}

.breadcrumb-bg nav.breadcrumb-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-bg .breadcrumb-wrapper .breadcrumb {
    color: #8e8e8e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-bg .breadcrumb-wrapper .breadcrumb a {
    color: #a0a0a0;
}

.breadcrumb-bg .breadcrumb-wrapper .breadcrumb a:hover {
    color: var(--main-color2);
}

.category-filter-list .list-wrap .list li,
.category-filter-list .list-wrap .list li a {
    color: var(--main-color);
    display: block;
    font-size: 13px;
    font-weight: 400;
    transition: all .4s ease;
}

.category-filter-list .list-wrap .list li:hover,
.category-filter-list .list-wrap .list li:hover a {
    color: var(--main-color2);
}

.pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 15px;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .btn {
    font-size: 14px;
    margin: 20px 0 0 0;
    background: #000000;
    width: 100%;
    padding: 10px;
    border: 0;
    font-weight: 600;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .btn:hover {
    background-color: var(--main-color2);
}

.category-filter-list {
    margin-bottom: 10px;
}

.p-g-mod-t-cat-filter .p-g-mod-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 14px;
}

.categories-body .p-g-mod-t-cat-filter {
    border-bottom: 0;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-icon {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    width: 20px;
}

.categories-body .product-view-select {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
}

.categories-body .product-view-select a div {
    width: 9px;
    height: 13px;
    background: #e2e6eb;
    border-radius: 1px;
    margin: 0 2px;
}

.categories-body .product-view-select a.active div {
    background: var(--main-color);
}

.categories-body .product-view-select a {
    background: #fff;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #e7e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-left: 10px;
    transition: var(--transition-time);
    padding: 0 10px;
}

.category-filter-order .list-wrap {
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.category-filter-order .list-wrap .list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    justify-content: space-between;
}

.category-filter-order-desktop {
    display: inline-block;
    width: 170px;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 400;
    padding-left: 14px;
    background: url(images/select-arrow.svg) no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    outline: none;
    border-radius: 5px;
    border: 1px solid #F4F4F4;
    height: 44px;
}

.category-filter-order-desktop:focus {
    border-color: #e7e3e3;
}

.category-filter-order-mobile {
    display: none;
}

.category-filter-order .list-wrap .right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category-filter-order .list-wrap .cat-title {
    color: #181818;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.category-filter-list .list-wrap .list li {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.p-g-mod-t-44 .banner-item {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.p-g-mod-t-44 .banner-item .banner-special-content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    left: 0;
}

.p-g-mod-t-44 .banner-item .image {
    overflow: hidden;
    border-radius: 10px;
}

.p-g-mod-t-44 .banner-item .image img {
    transition: all .5s ease;
}

.p-g-mod-t-44 .banner-item:hover .image img {
    transform: scale(1.10);
    filter: brightness(0.65);
}

.p-g-mod-t-44 .banner-item .banner-special-content .title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    padding: 0;
    margin-top: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 1);
}

.p-g-mod-t-44 .banner-item .banner-special-content .description {
    color: #ffff;
    font-size: 16px;
    line-height: normal;
    padding: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 1);
    text-align: center;
}

.instagram-shop .special-btn {
    display: none;
}

/* Cart Body */

.shopping-cart-1 .table {
    color: var(--main-color);
}

.shopping-cart-1 .product-group .product .p-info .name {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
}

@keyframes cargo-flash {

    50%,
    from,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.shopping-cart-1 .product-quantity input {
    border: 0;
}

.shopping-cart-1 .product-quantity .btn {
    background: #fff;
}

.shopping-cart-1 .product-quantity {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 10px;
}

.pattern-group .p-g-mod-t-31 .p-g-mod-header {
    padding: 0;
}

.pattern-group .p-g-mod.p-g-mod-t-75 .p-g-mod-body {
    padding: 0;
}

.p-g-mod-t-75 .shipping-info {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.p-g-mod-t-75 .shipping-info .description span {
    margin-left: 5px;
    color: #e43131;
}

.p-g-mod-t-75 .shipping-info .description {
    display: flex;
    align-items: center;
}

.p-g-mod-t-75 .shipping-info i {
    font-size: 25px;
    font-weight: 500;
    margin-right: 10px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    animation: cargo-flash 4s infinite;
}

.p-g-mod-t-75 .shipping-info i.core-icon-gift-line {
    color: var(--success);
}

.free-shipping-limit {
    align-items: center;
    display: flex;
    justify-content: center;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info.active {
    background: #3dab25;
    color: #fff;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress {
    border-radius: 10px;
    width: 100%;
    height: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress::-webkit-progress-bar {
    background-color: #e9e9e9;
    border-radius: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress::-webkit-progress-value {
    background-color: #3dab25;
    border-radius: 7px;
}

.p-g-mod-t-75 .free-shipping-limit .shipping-info .cart-progress-success::-webkit-progress-bar {
    background-color: #3dab25;
}

.shopping-cart-1 .product-quantity-type {
    justify-content: flex-start;
}

.shopping-cart-1 .product-group .product {
    display: flex;
    align-items: flex-start;
}

.shopping-cart-1 td {
    align-content: center;
}

.cart-body .voucher-code-form .form-control,
.payment-body .voucher-code-form .form-control {
    color: #909090;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    font-size: 13px;
    padding: 12px 18px;
    height: calc(1.5em + .75rem + 10px);
    font-weight: 600;
}

.cart-body .input-group>.form-control:not(:last-child),
.payment-body .input-group>.form-control:not(:last-child) {
    border-radius: 3px;
}

.cart-body .input-group-append .btn-secondary,
.payment-body .input-group-append .btn-secondary {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    border-radius: 3px !important;
    margin-left: 10px;
    font-weight: 500;
}

.payment-control-buttons-1 .btn-back {
    display: block;
    font-size: 14px;
    margin: 5px auto 0;
    background: #ffc107;
    color: #222222;
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.payment-control-buttons-1 .btn-back i {
    margin-right: 6px;
    font-size: 12px;
}

.payment-control-buttons-1 {
    padding-bottom: 10px;
}

.payment-final-buttons-1 .btn-complete {
    background: #000000;
    border-color: #000000;
    color: #fff;
    border-radius: 3px;
    transition: all .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-final-buttons-1 {
    padding-bottom: 10px;
}

.payment-final-buttons-1 .btn-complete i {
    margin-left: 10px;
    font-size: 12px;
}

.payment-final-buttons-1 .btn-complete:hover {
    background: var(--main-color2);
    border-color: var(--main-color2);
}

.payment-cart-summary-1 .summary tfoot th {
    border-top: 0;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 600;
    color: var(--main-color);
    align-content: center;
    padding-left: 0;
    padding-right: 0;
}

.cart-body a.remove-vocuher,
.payment-body a.remove-vocuher {
    margin-left: 5px;
    color: #ffffff;
    background: #000000;
    padding: 5px;
    border-radius: 50%;
    display: inline-flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}

.payment-cart-summary-1 .summary tfoot .final {
    font-size: 16px;
}

.payment-cart-summary-1 .summary tfoot th:last-child {
    align-content: center;
}

.cart-body .p-g-mod-base-content,
.payment-body .p-g-mod-base-content {
    border: 0;
}

.pattern-group .p-g-mod-t-37 .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 16px;
}

.cart-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner,
.payment-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner {
    background-color: #f7f7f7;
    border-radius: 3px;
}

.cart-body .sticky-sidebar-992-2 .p-g-b-c-1 .p-g-b-c-wrapper,
.payment-body .sticky-sidebar-992-2 .p-g-b-c-1 .p-g-b-c-wrapper {
    position: sticky;
    top: 0;
}

.cart-body .shopping-cart-1 .cart-remove {
    position: absolute;
    right: 10px;
    top: 15px;
}

.cart-body .shopping-cart-1 button.btn-remove {
    border: 1px solid #b2b2b2;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b2b2b2;
    margin-left: 20px;
    font-size: 16px;
    transition: all .4s;
}

.cart-body .shopping-cart-1 button.btn-remove:hover {
    background-color: #b2b2b2;
    color: #ffffff;
}

.cart-body a.btn-continue {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    padding-bottom: 20px;
}

.cart-body a.btn-continue:hover {
    color: var(--main-color2);
}

.cart-body .shopping-cart-1 .product-group .product .image {
    margin-right: 15px;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    overflow: hidden;
    width: 120px;
}

.cart-body .shopping-cart-1 .product-group {
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #e9e9e9;
    padding: 15px 0;
    color: #a0a0a0;
    position: relative;
}

.shopping-cart-1 .td-total-price .old-value {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 600;
}

.shopping-cart-1 .td-total-price .td-price {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 20px;
    min-width: 160px;
}

.shopping-cart-1 .td-total-price {
    color: #000000;
    position: absolute;
    bottom: 20px;
    right: 0;
}

/* Btn Hover Effect */
.special-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    border: 0;
    margin-top: 20px;
}

.special-btn::before {
    content: "";
    position: absolute;
    bottom: -50%;
    width: 110%;
    height: 100%;
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(0);
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    background-color: var(--main-color2);
    z-index: -1;
    left: -10px;
}

.special-btn::after {
    content: "\ea70";
    font-family: "coreicon";
}

.special-btn:hover::before {
    transform-origin: center bottom;
    transform: skewY(9.3deg) scaleY(2);
}

.special-btn:hover {
    color: #fff;
}

/* Category Card */

.card-category .image {
    background: #f5f4f0;
}

.p-g-mod-t-52 .card-category,
.p-g-mod-t-70 .card-category {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.p-g-mod-t-52 .card-category .image img,
.p-g-mod-t-70 .card-category .image img {
    transition: all .4s ease;
}

.p-g-mod-t-52 .card-category:hover .image img,
.p-g-mod-t-70 .card-category:hover .image img {
    transform: scale(1.1);
}

.p-g-mod-t-52 .card-category .title,
.p-g-mod-t-70 .card-category .title {
    position: absolute;
    bottom: 20px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    min-width: 50%;
    max-width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 50px;
    padding: 5px 15px;
    transition: all .4s ease;
}

.p-g-mod-t-52 .card-category .title:hover,
.p-g-mod-t-70 .card-category .title:hover {
    box-shadow: 0 1.5px 10px -0.6px #372b2bc3;
    transform: translateY(-7px);
    background-color: var(--main-color2);
    color: #ffffff;
}

.p-g-mod-t-52 .card-category .title:after,
.p-g-mod-t-70 .card-category .title:after {
    content: "\ea70";
    font-family: 'coreicon';
    margin-left: 5px;
    font-size: 16px;
    margin-bottom: -1px;
}

.p-g-mod-t-15 .p-g-mod-body li:hover,
.p-g-mod-t-16 .p-g-mod-body li:hover,
.p-g-mod-t-58 .p-g-mod-body li:hover {
    background-color: transparent;
}

.p-g-mod-t-15 .p-g-mod-body li:hover a,
.p-g-mod-t-16 .p-g-mod-body li:hover a,
.p-g-mod-t-58 .p-g-mod-body li:hover a {
    color: var(--main-color2);
}

.p-g-mod-t-15 .p-g-mod-body ul li a,
.p-g-mod-t-16 .p-g-mod-body ul li a {
    color: #181818;
    font-size: 13px;
    font-weight: 600;
    background: #f1f1f1;
    margin-bottom: 5px;
    padding: 10px 14px;
}

/* Footer */

.footer-info-area {
    margin: 40px 0 20px 0;
}

.footer-info-area .row {
    gap: 20px;
}

.footer-info-area .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    flex: 1;
}

.footer-info-area .item .icon i {
    font-size: 32px;
}

.footer-info-area .item .info {
    display: grid;
    gap: 8px;
}

.footer-info-area .item .info .title {
    color: #181818;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.footer-info-area .item .info .desc {
    color: #4d4e4f;
    font-size: 14px;
}

/* Newsletter */

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .contact-item {
    margin: 8px 0;
    display: flex;
    align-content: center;
    cursor: pointer;
    font-size: 13px;
}

.contact-info .contact-item i {
    margin-right: 8px;
    font-size: 17px;
    transition: all var(--transition-time);
}

.contact-info .contact-item a {
    color: #000;
}

.contact-info .contact-item:hover i {
    color: var(--main-color);
}

/* Login */

.login-body .btn,
.register-body .btn {
    font-weight: 600;
}

.login-body .forgot-password-link,
.register-body .forgot-password-link {
    font-size: 14px;
    font-weight: 600;
    color: #181818;
}

.login-body .p-g-mod-t-4 .nav-tabs,
.register-body .p-g-mod-t-8 .nav-tabs {
    border: 0 !important;
    background: transparent !important;
    border-radius: 4px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-item,
.register-body .p-g-mod-t-8 .nav-tabs .nav-item {
    flex: 1;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    background: #fff;
    color: #181818;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-time);
    padding: 12px;
}

.login-body .p-g-mod-t-4 .btn-without-login,
.register-body .p-g-mod-t-8 .btn-without-login {
    color: #fff;
    border: none;
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
}

.login-body .p-g-mod-t-4 .btn-without-login i,
.register-body .p-g-mod-t-8 .btn-without-login i {
    line-height: 0;
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-item.show .nav-link,
.login-body .p-g-mod-t-4 .nav-tabs .nav-link.active,
.register-body .p-g-mod-t-8 .nav-tabs .nav-item.show .nav-link,
.register-body .p-g-mod-t-8 .nav-tabs .nav-link.active {
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
}

.login-body .p-g-mod-t-4 .btn-success,
.register-body .p-g-mod-t-8 .btn-success {
    color: #fff;
    background-color: #000;
    border-color: #000;
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    height: 50px;
    align-items: center;
}

.login-body .p-g-mod-t-4 .btn-success:hover,
.register-body .p-g-mod-t-8 .btn-success:hover {
    background-color: #33bb46;
    border-color: #33bb46;
}

.login-body .p-g-mod-t-4 .btn-fb-login,
.register-body .p-g-mod-t-8 .btn-fb-login {
    background: #4c69ba !important;
    background-image: linear-gradient(#4c69ba, #3b55a0) !important;
    text-shadow: 0 -1px 0 #354c8c !important;
    color: #fff !important;
    border: 1px solid #4c69ba !important;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.login-body .p-g-mod-t-4 .btn-fb-login i,
.register-body .p-g-mod-t-8 .btn-fb-login i {
    padding-right: 10px !important;
    border-right: 0 !important;
}

.login-body .p-g-mod-t-4 .btn-google-login,
.register-body .p-g-mod-t-8 .btn-google-login {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.login-body .p-g-mod-t-4 .btn-google-login i,
.register-body .p-g-mod-t-8 .btn-google-login i {
    padding-right: 10px !important;
    border-right: 0 !important;
}

/* Footer */

footer {
    padding-top: 50px;
    border-top: 1px solid #ebebeb;
    margin-top: 30px;
    background: #ffffff;
}

footer .bb ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .bb .title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .bb ul li a {
    font-size: 13px;
    line-height: 30px;
    color: #5F615E;
    transition: all 0.3s ease;
}

footer .bb ul li:hover a {
    color: var(--main-color2);
}

footer .bb .logo-area img {
    max-height: 35px;
}

footer .bb .footer-contact {
    font-size: 13px;
    margin-top: 20px;
}

footer .fs {
    margin-bottom: 15px;
}

.na-footer {
    background-color: #fbfbfb;
    padding: 20px 30px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    margin: 10px 0;
}

.na-footer .newsletter-content .newsletter-title {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.na-footer .newsletter-content .newsletter-description {
    color: #5f615e;
    margin-top: 10px;
}

.na-footer .mobile-app img {
    height: 40px;
}

.na-footer .mobile-app .title {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.na-footer .newsletter-input {
    height: 50px;
    display: block;
    font-size: 14px;
    border: 1.4px solid #e3e3e3;
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border-radius: 5px;
    background: #ffffff;
    color: #000000;
    padding: 0 15px;
    margin-top: 10px;
}

.na-footer .newsletter-form .btn-submit {
    position: absolute;
    right: 5px;
    top: 0px;
    bottom: 0;
    height: 50px;
    font-size: 20px;
}

.na-footer .newsletter-form {
    position: relative;
    width: 100%;
    max-width: 450px;
}

footer .bar {
    font-size: 14px;
    color: #60615e;
    padding: 20px 0;
}

footer .bar p {
    margin-bottom: 0;
}

footer .bar .row {
    display: flex;
    align-items: center;
}

footer .bar .right-image img.cards {
    min-height: auto;
    height: 35px;
}

footer .bar .right-image {
    display: flex;
    justify-content: flex-end;
}


/* E-bülten */
footer .bb .newsletter-content {
    margin-top: 30px !important;
    max-width: 430px;
}

footer .bb .newsletter-content .newsletter-title {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

footer .bb .newsletter-content .newsletter-description {
    font-size: 14px;
    line-height: 1.45;
    color: #111;
    margin-top: 10px;
    opacity: 0.9;
}

footer .bb .newsletter-form {
    position: relative;
    width: 100%;
    max-width: 430px;
}

footer .bb .newsletter-input {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    border: 1px solid #efefef;
    background: #f2f2f2;
    padding: 0 50px 0 18px;
    font-size: 16px;
    box-shadow: none;
}

footer .bb .newsletter-input::placeholder {
    color: #919191;
}

footer .bb .newsletter-form .btn-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    font-size: 18px;
    box-shadow: none;
}

/* 404 Sayfası */
.e404-body {
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, #f8f8f8 10px, #f8f8f8 20px), linear-gradient(to bottom, #fff, #fff);
}

.e404-btn {
    background: #ffffff;
    border-radius: 45px;
    color: #212121;
    padding: 20px 50px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    -moz-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    text-decoration: none;
}

.e404-btn:hover {
    color: var(--main-color);
    -moz-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
}

/* 404 Sayfası - Tip 1 */
.e404-content .e404-logo img {
    max-height: 100px;
    border: none !important;
}

.e404-page-type-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-1 .e404-pic {
    height: 200px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-1 .e404-title {
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
    margin: 30px 0px 0px 0px;
}

.e404-description {
    color: #808080;
    font-size: 16px;
    margin: 5px;
    text-align: center;
    font-weight: 300;
}

/* İki Bölümlü 404 Sayfası - Tip 2*/
.e404-page-type-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-2 .e404-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    padding: 0 10%;
    border-top: 0;
    border-left: 0;
}

.e404-page-type-2 .e404-pic {
    height: 400px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-2 .e404-title {
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
    margin: 30px 0px 0px 0px;
}

/* Mobile */

header.mobile {
    display: none;
    background: #fff;
    height: 60px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

header.mobile .left {
    width: 25%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
}

header.mobile .center {
    width: 50%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header.mobile .right {
    width: 25%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

header.mobile .logo img {
    max-height: 30px;
}

header.mobile .icon-group {
    position: relative;
}

header.mobile .icon-group {
    position: relative;
    color: #000;
    font-size: 20px;
    margin-left: 0;
}

header.mobile .icon-group .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #000000;
    font-size: 11px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .h-banner {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Menu Tip 2 */

.sidebar-menu-type-2 {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    transform: translateX(-100%);
    transition: transform .3s ease;
    will-change: transform;
}

.sidebar-menu-type-2.active {
    transform: translateX(0);
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-bottom: 100px;
}

.sidebar-menu-type-2 .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu-type-2 .title .btn-close {
    color: #fff;
}

.sidebar-menu-type-2 .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu-type-2 .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu-type-2 .links a i {
    float: right;
}

.sidebar-menu-type-2 .categories ul {
    margin: 0;
    padding: 10px;
}

.sidebar-menu-type-2 .categories ul li {
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
    position: relative;
}

.sidebar-menu-type-2 .categories ul li a img {
    height: 35px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .categories ul li a {
    display: flex;
    padding: 5px;
    border-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
}

.sidebar-menu-type-2 .categories ul li a .name {
    width: 80%;
}

.sidebar-menu-type-2 .categories ul li a .icon {
    color: #000;
    width: 0px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    position: absolute;
    right: 22px;
}

.sidebar-menu-type-2 .categories .multi li a .icon {
    right: 13px;
}

.sidebar-menu-type-2 .easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
    top: 65px;
}

.sidebar-menu-type-2 .categories ul li a .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories .multi .icon .fa-angle-right:before {
    content: "\f078";
}

.sidebar-menu-type-2 .categories ul .multi {
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi li:first-child {
    display: none;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu-type-2 .categories .multi li {
    border: 0 !important;
    margin-bottom: 5px;
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding: 0;
}

.sidebar-menu-type-2 .categories ul .multi .multi a {
    padding-left: 20px;
    font-size: 12px;
}

.sidebar-menu-type-2 .mobile-search i {
    font-size: 25px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .mobil-area-title {
    color: #000;
    margin: 15px 10px 10px 13px;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.sidebar-menu-type-2 .mobil-area-1 {
    display: flex;
    position: relative;
    text-align: center;
}

.sidebar-menu-type-2 .mobil-area-1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    justify-content: center;
    border: 1px solid #e2e2e2;
    margin: 0 10px;
    padding: 7px 16px;
    color: #000;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-menu-type-2 .mobil-area-1 a img {
    margin-right: 10px;
    padding: 0;
    width: 41px;
    height: 41px;
}

.sidebar-menu-type-2 .logo-area a img {
    max-height: 30px;
}

.sidebar-menu-type-2 .logo-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px;
}

.mobile-menu-close {
    display: flex;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    align-items: center;
}

.mobil-area-2 {
    margin: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar-menu-type-2 .short-link {
    width: 50%;
    padding: 15px 10px;
}

.sidebar-menu-type-2 .short-link.border-1 {
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-2 {
    border-bottom: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-3 {
    border-right: 1px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sidebar-menu-type-2 .short-link a i {
    margin-right: 10px;
    font-size: 20px;
}

.mobil-area-footer {
    text-align: center;
    color: #000;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 90%;
    box-sizing: border-box;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.mobil-filtre-btn {
    display: none;
}

@media (min-width:991px) {
    .product-carousel-mobile {
        display: none;
    }
}

@media (max-width: 1380px) {
    header.desktop .bar-user-hover .dropdown-menu {
        right: -75px;
    }

    .pages-spec-container {
        padding: 20px;
    }
}

@media (max-width: 1280px) {

    .related-products {
        margin-bottom: 10px;
    }

    .related-products a img {
        max-height: 95px;
    }

    .product-profile-info li span,
    .product-profile-info li a .value {
        line-height: 20px;
        font-size: 13px;
        font-weight: 500;
    }

    .na-footer .mobile-app img {
        height: auto;
    }

    .product-badges .p-badge .title {
        font-size: 12px
    }

    .product-badges .p-badge .content .description {
        font-size: 12px;
    }

    .product-badges {
        gap: 5px;
    }

    .product-badges .p-badge i {
        font-size: 20px;
        margin-right: 10px;
    }

    header .header-wrapper {
        gap: 10px;
    }

    .header-wrapper .mega-menu .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        padding: 15px 6px;
    }

    header .header-logo img {
        max-height: 30px;
    }

}

@media (max-width: 1200px) {

    .cart-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner .p-g-mod,
    .payment-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner .p-g-mod {
        padding: 0px 10px;
    }

    .na-footer .newsletter-input {
        font-size: 13px;
    }

    .p-g-mod-t-52 .card-category .title,
    .p-g-mod-t-70 .card-category .title {
        font-size: 12px;
        min-width: 60%;
        max-width: 95%;
    }

    header .header-actions .action-wrapper {
        gap: 10px;
    }

    .pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 14px;
    }

    .card-product .all-labels .discount,
    .card-product .all-labels .new-label {
        min-width: 45px;
        font-size: 13px;
        width: 45px;
    }

    .card-product .buttons-wrapper.right-to-left a {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .card-product .buttons-wrapper.down-to-top .button-group a {
        padding: 5px;
        font-size: 13px;
    }

    .card-product .card-product-inner .title {
        font-size: 13px;
        line-height: 18px;
        max-height: 40px;
    }

    .card-product .sale-price-basket {
        font-size: 13px;
    }

    .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 14px;
    }

    .card-product .card-product-inner .price-group .prices .sale-price {
        font-size: 15px;
    }

    .footer-info-area .item .info .title {
        font-size: 16px;
        line-height: 18px;
    }

    .product-body .p-g-b-c-1 .product-profile-1 {
        padding: 0;
    }

    .product-buttons .btn-all-combines,
    .product-buttons .btn-cart {
        font-size: 13px;
    }

    .product-buttons .product-favourite a i {
        margin: 5px;
        margin-right: 0;
    }

    .product-quantity .btn {
        width: 36px;
    }

    .product-customer-actions .action .button {
        padding: 5px;
        font-size: 13px;
        margin-right: 12px;
    }

    .product-customer-actions .action .button i {
        font-size: 17px;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
        font-size: 14px;
    }

    .product-badges .p-badge .content .title {
        font-size: 13px;
    }

    .product-badges .p-badge .content .description {
        font-size: 12px;
    }

    .product-badges .p-badge i {
        font-size: 21px;
        margin-right: 10px;
    }

    .product-badges .p-badge {
        min-height: 85px;
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 20px;
    }

    .pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 16px;
    }

    .p-g-mod-t-45 .carousel-caption p {
        font-size: 12px;
        height: 35px;
    }

}

@media (max-width: 991px) {
    .sekmeli-urunler .p-g-tab-wrapper.p-g-tab-direction-0 .btn.btn-mod {
        display: none;
    }

    .card-product .prices {
        flex-direction: column;
    }

    .cat-text-hero {
        margin: 50px auto;
    }

    footer .bb .newsletter-content .newsletter-title {
        font-size: 17px;
    }

    .payment-body .credit-card-form label .text-danger {
        display: none;
    }

    .card-product .card-product-inner .price-group .prices .sale-price {
        line-height: normal;
    }

    .blog_single-body h1 {
        font-size: 24px;
    }

    .blog_single-body h2 {
        font-size: 20px;
    }

    .blog_single-body h3 {
        font-size: 18px;
    }

    .blog_single-body h4 {
        font-size: 16px;
    }

    .blog_single-body h5 {
        font-size: 14px;
    }

    .blog_single-body h6 {
        font-size: 12px;
    }

    .card-blog .description {
        height: 40px;
        font-size: 13px;
        line-height: normal;
    }

    .p-g-mod-t-44 .banner-item .banner-special-content .description {
        font-size: 14px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
    }

    .mobile-menu-wrapper {
        width: 100%;
        max-width: 400px;
        height: 100%;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-wrapper .cat-img {
        height: 40px;
        max-width: 100px;
        margin-right: 10px;
    }

    .mobile-menu-wrapper .menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #fff;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding-top: 10px;
        box-sizing: border-box;
        padding-bottom: 80px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-wrapper .sub-menu {
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 10;
    }

    .mobile-menu-wrapper .sub-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-wrapper .menu-item-row {
        display: flex;
        align-items: center;
    }

    .mobile-menu-wrapper .mobile-cat-link,
    .mobile-menu-wrapper .mobile-cat-back-btn {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: #000;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        background-color: #fff;
        line-height: normal;
    }

    .mobile-menu-wrapper .open-submenu-btn {
        padding: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: #000;
        flex-grow: 1;
    }

    .mobile-menu-wrapper .mobile-cat-back-btn {
        font-size: 16px;
    }

    .mobile-menu-wrapper .mobile-cat-back-btn i {
        font-size: 12px;
        margin-right: 10px;
    }

    .product-reviews .count {
        display: none;
    }

    .product-reviews .stars .star {
        font-size: 11px;
    }

    .card-product:hover .buttons-wrapper.down-to-top {
        display: none;
    }

    .footer-info-area .item {
        flex: auto;
        width: 50%;
        margin-bottom: 10px;
    }

    .footer-info-area .row {
        gap: 0;
    }

    .sidebar-cart .cart-total {
        border-top: 1px solid #ebebeb;
    }

    .sidebar-cart {
        padding-bottom: 10px;
        width: 100%;
        max-width: inherit;
    }

    .sidebar-cart .cart-actions {
        margin-bottom: 0;
    }

    footer {
        padding-top: 35px;
        margin-top: 20px;
    }

    .sidebar-menu-type-2 .logo-area {
        display: flex;
        align-items: center;
        height: 60px;
    }

    .sidebar-menu-type-2 .logo-area .area-left {
        display: flex;
        align-items: center;
    }

    .sidebar-menu-type-2 .logo-area .mobile-menu-user a {
        font-weight: 600;
        color: #000000;
    }

    .sidebar-menu-type-2 .logo-area .mobile-menu-user a:first-child {
        border-right: 1px solid #000000;
        padding-right: 10px;
        margin-right: 10px;
    }

    .p-g-mod-t-45 .carousel-caption h5 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .p-g-mod-t-45 .carousel-caption p {
        font-weight: 500;
    }

    .p-g-mod-t-45 .carousel-caption {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(50%);
        bottom: 50%;
        padding: 0;
        z-index: 2;
        text-align: center;
        width: 60%;
    }

    .p-g-mod-t-45 .carousel-caption .headline-button {
        display: inline-block;
        background-color: #fff;
        color: #000;
        padding: 5px 10px;
        max-width: max-content;
        font-size: 11px;
        width: auto !important;
        min-width: auto;
        margin: 0 auto;
    }

    .p-g-mod-t-45 .carousel-type-1 .carousel-indicators {
        display: none;
    }

    .cart-body .shopping-cart-1 .product-group .product .image {
        width: 90px;
    }

    .shopping-cart-1 .td-total-price {
        bottom: 10px;
    }

    .categories-body .product-view-select {
        display: none;
    }

    .search-header h5 {
        font-size: 12px;
    }

    .search-box {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px 20px;
    }

    .search-header {
        padding-top: 10px;
    }

    .search-header form {
        margin-bottom: 15px;
    }

    .special-product-search {
        width: 95%;
    }

    .search-header #closeSpecialSearch {
        font-size: 13px;
        width: 30px;
        height: 30px;
    }

    .search-header #closeSpecialSearch::before {
        font-size: 20px;
    }

    .search-header form input {
        height: 40px;
        font-size: 14px;
        border: 1px solid #e9e9e9;
    }

    .search-box .popular-categories {
        display: none;
    }

    .search-results .row .col-md-3 {
        width: 50%;
    }

    .search-header form input::placeholder {
        font-size: 14px;
    }

    .product-profile-1 .carousel .carousel-inner {
        border: 0;
    }

    .card-comment {
        padding: 12px;
    }

    .card-comment .product .customer .name {
        font-size: 13px;
        font-weight: 600;
        margin-top: 10px;
    }

    .card-comment .product .image {
        width: 100%;
        height: auto;
    }

    .card-comment .info {
        width: 100%;
        justify-content: space-between;
    }

    .card-comment .info .stars {
        font-size: 10px;
    }

    .card-comment .info .date {
        font-size: 13px;
    }

    .card-comment .product {
        flex-direction: column;
    }

    .card-comment .product .customer .comment {
        -webkit-line-clamp: 3;
        height: 65px;
    }

    .sidebar-menu-type-2 .mobile-search i {
        margin-right: 0;
    }

    header.mobile .mobile-search form .btn-send {
        width: 10%;
        position: relative;
        z-index: 99999;
    }

    .card-product .buttons-wrapper.right-to-left {
        display: block;
        opacity: 1;
        right: 10px;
    }

    .payment-steps-1 .step .circle {
        height: 45px;
        width: 45px;
        line-height: 45px;
    }

    .payment-steps-1 .step {
        font-size: 13px;
    }

    .payment-steps-1 {
        padding: 20px 5px;
    }

    .cart-body .sticky-sidebar-992-2 .p-g-b-c-1 .p-g-b-c-wrapper,
    .payment-body .sticky-sidebar-992-2 .p-g-b-c-1 .p-g-b-c-wrapper {
        position: inherit;
    }

    .p-g-mod-t-75 .shipping-info .description {
        display: block;
    }

    .shopping-cart-1 .table tbody tr {
        border-top: 0;
    }

    .shopping-cart-1 .table tr .td-quantity {
        padding-left: 0;
    }

    .shopping-cart-1 .product-group .product .p-info .name {
        font-size: 13px;
        margin-right: 20px;
    }

    .cart-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner,
    .payment-body .col-list:nth-child(2) .p-g-b-c-wrapper .p-g-b-c-inner {
        padding-bottom: 10px;
    }

    .cart-body .shopping-cart-1 .product-group {
        font-size: 13px;
    }

    .cart-body .shopping-cart-1 .cart-remove {
        position: absolute;
        right: 0px;
        top: 15px;
    }

    .cart-body .shopping-cart-1 button.btn-remove {
        padding: 0;
        width: 20px;
        height: 20px;
        font-size: 15px;
    }

    .shopping-cart-1 .product-quantity {
        max-width: 100px;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav {
        overflow-x: scroll;
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
        padding: 0px;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
        padding: 15px;
        margin: 5px;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item {
        width: 50%;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link::after {
        display: none;
    }

    .pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-item .nav-link {
        font-size: 13px;
    }

    .product-profile-1 .carousel .carousel-indicators li.active {
        border-color: #000000;
    }

    .pattern-group .p-g-mod-t-26 .p-g-mod-body .btn-secondary,
    .pattern-group .p-g-mod-t-26 .p-g-mod-body .btn-secondary:hover {
        background-color: #cfcfcf;
        color: #222222;
        margin-right: 10px;
    }

    .categories-body .breadcrumb-bg {
        margin-top: 0;
        padding: 15px 0 !important;
    }

    .breadcrumb-bg h1 {
        font-size: 20px;
        text-align: center;
    }

    .breadcrumb-bg .breadcrumb-wrapper .breadcrumb {
        font-size: 13px;
    }

    .footer-info-area .item .icon i {
        font-size: 28px;
    }

    footer .bb .footer-contact {
        font-size: 14px;
    }

    footer .bar .right-image {
        margin-top: 10px;
        justify-content: center;
        margin-bottom: 10px;
    }

    footer .bar p {
        text-align: center;
    }

    footer .bb .title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    footer .bb .title:last-child {
        margin-bottom: 0;
    }

    .footer-line-wrapper {
        padding: 30px 20px;
    }

    .card-product .card-product-inner .price-group .prices .list-price {
        font-size: 13px;
        margin-right: 5px;
    }

    .card-product .sale-price-basket .sale-price {
        font-size: 14px;
    }

    .card-product .card-product-inner .price-group .prices .sale-price {
        font-size: 14px;
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod {
        font-size: 13px;
    }

    .p-g-mod-t-44 .banner-item .banner-special-content .title {
        font-size: 17px;
        margin-top: 5px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
    }

    .p-g-mod-t-52 .card-category .title,
    .p-g-mod-t-70 .card-category .title {
        height: 40px;
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 17px;
    }

    .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description {
        font-size: 14px;
        text-align: center;
        line-height: normal;
    }

    .sidebar-menu-type-2 .categories ul li a .icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .sidebar-menu-type-2 .categories ul li a img {
        height: 35px;
        margin-right: 10px;
        max-width: 60px;
        min-width: 35px;
    }

    .p-g-mod-t-45 .carousel-control-prev i,
    .p-g-mod-t-45 .carousel-control-next i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
        height: 6px;
        width: 6px;
    }

    .sidebar-cart .cart-actions a {
        padding: 15px;
    }

    .sidebar-cart .cart-actions .btn-payment {
        font-size: 13px;
    }

    .product-carousel-desktop.normal {
        display: none;
    }

    .product-profile-1 .carousel .carousel-inner img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .carousel-item {
        aspect-ratio: 2 / 3;
        overflow: hidden;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .categories-body .mobil-filtre .col-list:first-child .pattern-group-header {
        padding: 15px 10px;
        display: flex;
        flex-direction: row-reverse;
        border-bottom: 1px solid #ebebeb;
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        z-index: 9;
        background: #fff;
    }

    .categories-body .mobil-filtre .col-list:first-child .pattern-group-header .p-g-h-icon {
        width: auto;
        font-size: 20px;
        margin-right: 3px;
    }

    .categories-body .mobil-filtre .mobil-filtre-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        background: #fff;
        border-bottom: 1px solid #ebebeb;
        z-index: 9;
    }

    .categories-body .mobil-filtre .close-mobile-filter {
        font-size: 17px;
        margin-right: 5px;
    }

    .categories-body .mobil-filtre .col-list:first-child {
        border: 0;
        border-radius: 0;
        background-color: #fff;
        width: 100%;
        left: -100%;
        top: 0;
        position: fixed;
        border-radius: 0;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0;
        height: 100%;
        z-index: 99999;
        transition: all .4s;
        display: flex;
        flex-direction: column;
        overflow: auto;
        display: block !important;
        padding: 25px;
    }

    .categories-body .mobil-filtre .col-list:first-child.active {
        opacity: 1;
        left: 0;
        transition: all .4s;
    }

    .cat-responsive-buttons .btn {
        font-size: 13px;
        font-weight: 600;
    }

    .cat-responsive-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-header-space {
        display: block;
        height: 70px;
    }

    .home-body .mobile-header-space,
    .categories-body .mobile-header-space,
    .product-body .mobile-header-space {
        height: 60px;
    }

    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }

    .pattern-group .p-g-mod-t-cat-filter .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
        font-size: 15px;
    }

    .category-filter-list {
        padding: 10px 0;
    }

    .pattern-group .p-g-mod-t-1 .p-g-mod-header {
        padding: 0;
    }
}

@media (max-width: 600px) {

    header.mobile .mobile-search form .btn-send {
        width: 20%;
    }

    footer .info {
        margin-top: 20px;
    }

    footer .info .title {
        text-align: center !important;
        color: #333;
        border: 1px solid #333;
        padding: 8px;
        position: relative;
    }

    footer .info .title::after {
        content: "+";
        right: 10px;
        top: 3px;
        bottom: 0;
        position: absolute;
        font-size: 20px;
        margin-bottom: 10px;
    }

    footer .info .fs {
        display: none;
        text-align: center !important;
        border: 1px solid #333;
        margin-bottom: 15px;
        color: #333 !important;
        padding: 10px;
    }

    header.mobile .left {
        width: 15%;
    }

    header.mobile .center {
        width: 35%;
        padding: 5px;
    }

    header.mobile .right {
        width: 50%;
    }

}

@media (max-width: 768px) {
    .cart-empty-alert {
        padding: 0;
    }

    .cart-empty-alert h6 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cart-empty-alert span {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .cart-empty-alert .cart-icons-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .cart-empty-alert .cart-icon {
        width: 120px;
        height: 120px;
        font-size: 40px;
    }

    .cart-empty-alert .checkmark-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cart-empty-alert .asterisk-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}