body {
    background: var(--body-bg);
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Reset */
a {
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--main-color2);
}


/* 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: 3rem;
    height: 3rem;
    font-size: 20px;
}


/* Opacity */
.op-black {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.op-black.hide {
    visibility: hidden;
    opacity: 0;
}

.op-black.show {
    visibility: visible;
    opacity: 1;
}


.op-black-3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 18;
    /* header'ın (z-index: 20) altında ama içeriğin üstünde */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.op-black-3.show {
    opacity: 1;
    visibility: visible;
}

.op-black-2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9980;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.op-black-2.show {
    opacity: 1;
    visibility: visible;
}

.mobil-filtre .col-list:first-child {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    background: #fff;
    z-index: 9990;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.mobil-filtre .col-list:first-child.active {
    transform: translateX(0);
}


/* Header (Desktop) */

.dropdown-languages-1 .dropdown-toggle {
    color: var(--header-top-color);
    transition: all var(--transition-time);
}

.dropdown-languages-1 .dropdown-toggle:hover {
    color: var(--header-top-color-hover);
}

.dropdown-currencies-1 .dropdown-toggle {
    color: var(--header-top-color);
    transition: all var(--transition-time);
}

.dropdown-currencies-1 .dropdown-toggle:hover {
    color: var(--header-top-color-hover);
}

/* ===== Morliva header ===== */
.header-morliva {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-morliva .h-topbar {
    background: #f5f5f5;
    border-bottom: 1px solid #ececec;
    font-size: 12px;
}

.header-morliva .h-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    gap: 16px;
}

.header-morliva .h-topbar a {
    color: #555;
    text-decoration: none;
    margin-right: 18px;
}

.header-morliva .h-topbar-right a {
    margin-right: 0;
    margin-left: 18px;
}

.header-morliva .h-topbar a:hover {
    color: #111;
}

.header-morliva .h-center {
    padding: 18px 0;
}

.header-morliva .h-center-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-morliva .h-logo {
    flex: 0 0 180px;
}

.header-morliva .h-logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.header-morliva .h-search {
    flex: 1 1 auto;
    max-width: 640px;
    margin: 0 auto;
}

.header-morliva .h-search .search {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.header-morliva .h-search form {
    display: flex;
    align-items: center;
    width: 100%;
}

.header-morliva .h-search .input-box {
    flex: 1;
}

.header-morliva .h-search .form-control {
    border: 0 !important;
    box-shadow: none !important;
    height: 44px;
    padding: 0 16px;
    font-size: 14px;
    background: transparent;
}

.header-morliva .h-search .btn-send {
    width: 48px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-morliva .h-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.header-morliva .h-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    text-decoration: none;
    width: 28px;
    height: 28px;
}

.header-morliva .h-action:hover {
    color: #000;
}

.header-morliva .h-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}

.header-morliva .menu-morliva {
    border-top: 1px solid #eee;
    padding: 0;
}

.header-morliva .menu-morliva .mega-menu .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    gap: 0;
    margin: 0;
    padding: 0;
}

.header-morliva .menu-morliva .mega-menu .nav-item {
    list-style: none;
}

.header-morliva .menu-morliva .mega-menu .nav-link {
    display: inline-flex;
    align-items: center;
    padding: 14px 14px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #111 !important;
    text-transform: uppercase;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
}

.header-morliva .menu-morliva .mega-menu .nav-link::after {
    display: none !important;
}

.header-morliva .menu-morliva .mega-menu .nav-item:hover>.nav-link,
.header-morliva .menu-morliva .mega-menu .nav-item.show>.nav-link {
    border-bottom-color: #111 !important;
    font-weight: 700;
}

.header-morliva .menu-morliva .mega-menu .dropdown-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    margin: 0;
    padding: 28px 0 32px;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.header-morliva .mega-morliva-layout {
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 280px;
}

.header-morliva .mega-morliva-links {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 40px;
}

.header-morliva .mega-morliva-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.header-morliva .mega-morliva-link {
    color: #111;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.header-morliva .mega-morliva-link:hover {
    text-decoration: underline;
}

.header-morliva .mega-morliva-banner {
    flex: 0 0 320px;
    width: 320px;
}

.header-morliva .mega-morliva-banner-link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 4px;
}

.header-morliva .mega-morliva-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-morliva .mega-morliva-banner-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.header-morliva .mega-morliva-banner-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header-morliva .mega-morliva-banner-cta {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 12px;
}

@media (max-width: 991px) {
    .header-morliva {
        display: none;
    }
}

/* ===== mega_menu.twig — Morliva ===== */

.menu-morliva {
    border-top: 1px solid #eee;
    padding: 0;
    background: #fff;
    position: relative;
}

.menu-morliva .mega-menu {
    width: 100%;
}

.menu-morliva .mega-menu .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-morliva .mega-menu .nav-item {
    list-style: none;
    position: static;
}

.menu-morliva .mega-menu .nav-link,
.header-morliva .menu-morliva .mega-menu .nav-link,
header.desktop .menu-morliva .mega-menu .nav-link {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    width: auto !important;
    height: auto !important;
    padding: 14px 14px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #111 !important;
    text-transform: uppercase;
    text-decoration: none;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.menu-morliva .mega-menu .nav-link::after,
.menu-morliva .mega-menu .dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

.menu-morliva .mega-menu .nav-item:hover>.nav-link,
.menu-morliva .mega-menu .nav-item.show>.nav-link {
    border-bottom-color: #111 !important;
    font-weight: 700;
    color: #111 !important;
}

/* Dropdown panel — tam genişlik */
.menu-morliva .mega-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 0 32px;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    z-index: 1000;
}

.menu-morliva .mega-menu .nav-item.dropdown:hover>.dropdown-menu,
.menu-morliva .mega-menu .nav-item.show>.dropdown-menu {
    display: block;
}

.menu-morliva .mega-menu-container {
    width: 100%;
}

/* İç layout */
.menu-morliva .mega-morliva-layout {
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 280px;
}

.menu-morliva .mega-morliva-links {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 40px;
}

.menu-morliva .mega-morliva-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-morliva .mega-morliva-link {
    color: #111;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.menu-morliva .mega-morliva-link:hover {
    text-decoration: underline;
    color: #000;
}

/* Sağ banner */
.menu-morliva .mega-morliva-banner {
    flex: 0 0 320px;
    width: 320px;
}

.menu-morliva .mega-morliva-banner-link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
}

.menu-morliva .mega-morliva-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-morliva .mega-morliva-banner-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.menu-morliva .mega-morliva-banner-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.menu-morliva .mega-morliva-banner-cta {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 12px;
}

@media (max-width: 1199px) {
    .menu-morliva .mega-morliva-banner {
        flex-basis: 260px;
        width: 260px;
    }

    .menu-morliva .mega-morliva-links {
        gap: 18px 24px;
    }
}

@media (max-width: 991px) {
    .menu-morliva {
        display: none;
    }
}

/* Mega Menu Side */

.mega-menu.side .mega-menu-container ul li {
    display: inline-block;
}

.mega-menu.side .mega-menu-container .comma {
    margin-right: 4px;
}

.mega-menu.side .mega-menu-container ul li:last-child .comma {
    display: none;
}

/* Single Menu */
.single-menu-container {
    display: block;
}

.single-menu-container .single-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    height: 70px;
    align-items: center;
}

.single-menu-container .single-menu li:first-child {
    margin-left: 0;
}

.single-menu-container .single-menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}

.single-menu-container .single-menu li .sub-single-item {
    font-weight: 400;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: var(--menu-color);
    transition: all 0.2s ease-in-out 0s;
    font-size: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.single-menu-container .single-menu li .sub-single-item:after {
    content: '';
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 6;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: width .4s;
    -webkit-transition: width .4s;
}

.single-menu-container .single-menu li .sub-single-item:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 6px 0;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 999;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    transition: bottom .4s, opacity .4s;
    -webkit-transition: bottom .4s, opacity .4s;
}

.single-menu-container .single-menu li:hover .sub-single-item:before {
    opacity: 1;
    bottom: -5px;
}

.single-menu-container .single-menu li:hover .sub-single-item {
    background: var(--main-color);
    color: var(--menu-color-hover);
}

.single-menu-container .single-menu li:hover>a:after {
    width: 100%;
}

.single-menu-container .single-sub-menu li a {
    border: 1px solid #ebebeb;
    animation: all ease .5s;
    -webkit-animation: all ease .5s;
    padding: 20px 15px;
    border-top: 0;
}

.single-menu-container .single-menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 170px;
    position: absolute;
    left: 0px;
    background: #fff;
    z-index: 99;
    transform: translate(0, 20px);
    transition: all 0.2s ease-out;
    -webkit-box-shadow: 1px 1px 6px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 6px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 6px -4px rgba(0, 0, 0, 0.75);
}


.single-menu-container .single-menu ul li {
    display: block;
    float: none;
    background: none;
    margin: 0;
    padding: 0;
}

.single-menu-container .single-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: #333;
    background: #fff;
    transition: var(--transition-time);
}

.single-menu-container .single-menu ul li a:hover,
.single-menu ul li:hover>a {
    color: var(--main-color);
}

.single-menu-container .single-menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.single-menu-container .single-menu ul ul {
    left: 100%;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: all 0.2s ease-out;
}


.single-menu-container .single-menu li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Header */
.mobile-header-space {
    height: 60px;
    display: none;
}

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: 30%;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
}

header.mobile .center {
    width: 40%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header.mobile .right {
    width: 30%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

header.mobile .logo img {
    max-height: 55px;
}

header.mobile .icon-group {
    position: relative;
}

header.mobile .icon-group {
    position: relative;
    color: #333;
    font-size: 21px;
}

header.mobile .icon-group .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    max-width: 25px;
    padding: 0;
    text-align: center;
    height: 18px;
    background: #d21c1c;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .mobile-search {
    padding: 0;
    background: #f3f3f3;
}

header.mobile .mobile-search form {
    width: 100%;
}

header.mobile .mobile-search form .input-box {
    width: 80%;
}

header.mobile .mobile-search form input {
    float: left;
    color: #444;
    width: 100%;
    font-size: 15px;
    border-color: transparent;
    background: transparent !important;
    height: 65px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    outline: 0 !important
}

header.mobile .mobile-search form input::placeholder {
    color: #444;
}

header.mobile .mobile-search form input:focus,
header.mobile .mobile-search form input:hover {
    border-color: transparent !important;
}

header.mobile .mobile-search form .btn-send {
    float: right;
    width: 20%;
    height: 65px;
    border: 0;
    background: transparent !important;
    color: #333;
    font-size: 19px;
}

header.mobile .h-banner {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sidebar User */
.sidebar-user {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 21;
    right: 0;
    margin-right: -250px;
}

.sidebar-user.active {
    margin-right: 0;
}

.sidebar-user .title {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-user .title .btn-close {
    color: #fff;
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .login-menu a i {
    width: 30px;
    margin-right: 10px;
    text-align: left;
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-user .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-user .footer-links ul {
    margin: 0;
    padding: 0;
}

.sidebar-user .footer-links ul li {
    padding: 0;
    list-style: none;
}

.sidebar-user .footer-links ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-user .footer-links ul li a.wp i {
    color: #21bd5c;
}

.sidebar-user .footer-links ul li a i {
    text-align: center;
    width: 40px;
    font-size: 16px;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #fff;
    width: 250px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -250px;
}

.sidebar-menu.active {
    margin-left: 0;
}

.sidebar-menu .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu .title .btn-close {
    color: #fff;
}

.sidebar-menu .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu .links a i {
    float: right;
}

.sidebar-menu .categories {
    /*display: none;*/
}

.sidebar-menu .categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .categories ul li {
    padding: 0;
    list-style: none;
}

.sidebar-menu .categories ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu .categories ul li a .name {
    width: 80%;
}

.sidebar-menu .categories ul li a .icon {
    color: #777;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 18px;
}

.sidebar-menu .categories ul .multi {
    display: none;
}

.sidebar-menu .categories ul .multi a {
    padding-left: 20px;
}

.sidebar-menu .categories ul .multi .multi a {
    padding-left: 40px;
}

.sidebar-menu .categories ul .multi .multi .multi a {
    padding-left: 60px;
}

/* Stores */
.stores {
    background: #fff;
    border-top: solid 1px #e6e6e6;
    padding: 10px 0;
}

.stores .cards {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.stores .card {
    border: none;
    box-shadow: none;
    margin: 0 !important;
    border-left: 1px solid #e6e6e6;
}

.stores .card:first-child {
    border-left: 0;
}

.stores .card .card-body {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}

.stores .card .card-body img {
    max-height: 80%;
    max-width: 60% !important;
    margin: 0 auto;
}

.stores .card .card-header {
    display: none;
}

.stores .text-white {
    font-weight: bold;
    font-size: 12px !important;
}

/* Footer */

footer {
    background: #fff;
}

footer .bb {
    padding: 20px 0;
}

footer .logo-area {
    text-align: left;
    margin: 15px 0;
}

footer .logo-area .logo img {
    max-height: 100px;
    max-width: 230px;
}

footer .logo-description {
    margin-top: 15px;
}

footer .info {
    padding: 25px 0;
}

footer .title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 15px;
}

footer .title-2 {
    color: #00aaff;
    font-size: 13px;

}

footer .title-3 {
    color: #333;
    font-size: 17px;

}

footer .secure .description {
    color: #000;
    margin: 5px 0;
}

footer .secure img {
    opacity: .5;
}

footer .info ul {
    padding: 0;
    margin: 0;
}

footer .info ul li {
    list-style: none;
    padding: 3px 0;
    color: #000;
    font-size: 13px;
}

footer .info ul li a {
    display: block;
    color: #000;
    font-size: 14px;
    position: relative;
    line-height: 25px;
    transition: all var(--transition-time);
}

footer .info ul li a:hover {
    text-decoration: underline;
}

footer .bar {
    padding: 10px 0;
    background: #fff;
    border-top: 1px solid #ebebeb;
}

footer .bar a {
    color: #333;
    text-align: center;
}

footer .bar a:hover {
    color: #333;
}

footer .bar p {
    margin: 0;
    color: #333;
    display: flex;
    align-content: center;
    height: 100%;
}

/* 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;
    margin-left: -100%;
}

.sidebar-menu-type-2.active {
    margin-left: 0;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.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 {
    /*display: none;*/
}

.sidebar-menu-type-2 .categories ul {
    margin: 0;
    padding: 10px;
}

.sidebar-menu-type-2 .categories ul li {
    padding: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    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: 10px;
    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: 20px;
    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 1rem;
    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 {
    height: 70px;
    max-width: 250px;
}

.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: 19px;
    font-size: 20px;
    align-items: center;
}

.mobile-menu-close i {
    border: 1px solid #e2e2e2;
    padding: 0.5rem;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #e2e2e2;
    padding-top: 10px;
    padding-left: 9px;
}

.mobil-area-2 {
    margin: 1rem;
    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;
}

/* Custom */

.categories-body .kategori-filtre .filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
    padding: 20px;
    font-weight: 400;
    color: #000;
    font-size: 14px;
}

.categories-body .kategori-filtre .filter-wrapper img {
    height: 14px;
}

.categories-body .mobile-filter .close-mobile-filter {
    position: absolute;
    right: 18px;
    top: 15px;
    font-size: 20px;
}

.cat-responsive-buttons .dropdown-menu .lag-checkbox.checked {
    background: #e5e5e5;
    font-weight: 500;
}

.cat-responsive-buttons .dropdown-menu .lag-checkbox label {
    padding-left: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 14px;
}

.cat-responsive-buttons .dropdown-menu {
    border: 0;
    background-color: #f4f4f4;
    position: relative;
    border-top: 1px solid #d8d8d8;
    transition: opacity .2s;
    padding-top: 0;
}

.cat-responsive-buttons .dropdown-menu:after {
    content: '';
    width: 0px;
    height: 0px;
    position: absolute;
    top: -7px;
    right: 50%;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #e5e5e5;
}

.cat-responsive-buttons .mobile-filter-btn {
    border-right: 1px solid #e5e5e5;
    margin-right: 20px;
    padding-right: 30px;
}

.cat-responsive-buttons .btn {
    font-size: 15px;
}

.cat-responsive-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    background-color: #f4f4f4;
    padding: 14px 0;
    border-radius: 7px;
}

/* kateogori filtre */


.filtreleme-title .p-g-m-h-i-title {
    font-size: 22px !important;
    letter-spacing: 1.5px;
    font-weight: 700 !important;
}


.categories-body .p-g-mod-t-cat-filter {
    border: 0;
}

.categories-body .close-btn {
    position: absolute;
    top: 35px;
    right: 50px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 0;
    width: 20px;
}

.categories-body .close-btn span {
    font-size: 14px;
    margin-right: 0;
    position: absolute;
    right: 54px;
    background: #000;
    color: #fff;
    width: 65px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-body .show-btn i {
    font-size: 15px;
}

/* KAPALI */
.kategori-filtre {
    display: none !important;
    position: fixed !important;
    inset: 0;
    width: 100%;
    z-index: 999999 !important;
    overflow: auto;
}

/* AÇIK — Bootstrap .show ile karışmasın */
.kategori-filtre.filtre-acik {
    display: block !important;
}

.kategori-filtre .col-list {
    position: relative;
    height: 100vh;
    width: min(380px, 100vw) !important;
    max-width: 380px;
    margin-left: auto;
    background: #fff;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.08);
}

.op-black-3 {
    z-index: 999990 !important;
}

.kategori-filtre .simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 3px;
    min-height: 10px;
    background: #000;
}

.kategori-filtre .category-filter-list {
    width: 100%;
}

.kategori-filtre .p-g-b-c-inner {
    overflow-y: auto;
    height: 850px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.kategori-filtre .p-g-b-c-inner::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

/* Panel iskelet */
.kategori-filtre.filtre-acik .col-list {
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    height: 100vh !important;
    max-height: 100vh;
    overflow: hidden;
    width: min(380px, 100vw) !important;
    max-width: 380px;
    margin-left: auto;
    background: #fff;
    padding: 0 !important;
}

.kategori-filtre .p-g-b-c-wrapper {
    display: flex !important;
    flex-direction: column;
    height: 100% !important;
    min-height: 0;
}

.kategori-filtre .p-g-b-c-inner {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    flex: 1 1 auto;
    min-height: 0;
    height: auto !important;
    max-height: none !important;
    overflow-y: auto !important;
    padding: 0 0 96px !important;
    /* alt butonlar için boşluk */
    display: block !important;
    box-shadow: none !important;
}

/* Üst başlık */
.kategori-filtre .filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 700;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 4;
}

.kategori-filtre .filter-wrapper img.close-mobile-filter {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Accordion bölümleri */
.kategori-filtre .p-g-mod-t-cat-filter {
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-mod-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px !important;
    cursor: pointer;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-mod-body {
    padding: 0 20px 14px !important;
}

.kategori-filtre .list-wrap {
    max-height: 220px;
}

/* Alt butonlar — sabit, düzgün */
.kategori-filtre .p-g-mod-t-26 {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    background: #fff !important;
    border-top: 1px solid #eee !important;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.kategori-filtre .p-g-mod-t-26 .p-g-mod-body {
    padding: 0 !important;
    margin: 0 !important;
}

.kategori-filtre .p-g-mod-t-26 .buttons {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    bottom: auto !important;
    right: auto !important;
}

.kategori-filtre .p-g-mod-t-26 .btn {
    margin: 0 !important;
    height: 44px;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.kategori-filtre .p-g-mod-t-26 .btn-secondary {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #111 !important;
}

.kategori-filtre .p-g-mod-t-26 .btn-success {
    background: #111 !important;
    border: 1px solid #111 !important;
    color: #fff !important;
}

.p-g-mod-t-cat-filter .p-g-mod-body.p-g-mod-body-p-0 {
    margin-right: 0 !important;
}

.filtreleme-title .p-g-mod-body {
    padding: 0 !important;
}

.filtreleme-title .p-g-mod-header {
    padding: 0 !important;
}

.filtreleme-title {
    margin: 0 !important;
    border-bottom: 1px solid #dddd;
}

/* ===== Kategori filtre paneli — modern ===== */
.kategori-filtre .col-list {
    width: min(380px, 100vw) !important;
    max-width: 380px;
    padding: 0 !important;
    border-left: 1px solid #ebebeb;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.08);
    background: #fff;
    height: 100vh;
}

.kategori-filtre .p-g-b-c-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kategori-filtre .p-g-b-c-inner {
    height: 100% !important;
    max-height: 100vh;
    overflow-y: auto;
    padding: 0 0 90px;
    scrollbar-width: thin;
}

/* Üst kapatma alanı */
.kategori-filtre .p-g-mod-t-1 {
    position: sticky;
    top: 0;
    z-index: 5;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.kategori-filtre .p-g-mod-t-1 .p-g-mod-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px !important;
    margin: 0;
}

.kategori-filtre .p-g-mod-t-1 .p-g-mod-body::before {
    content: "Filtrele";
    font-size: 16px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.kategori-filtre .close-filter {
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 !important;
    border-radius: 50%;
    font-size: 18px !important;
    color: #333 !important;
    background: #f3f3f3;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.kategori-filtre .close-filter:hover {
    background: #111;
    color: #fff !important;
}

/* Accordion bölümleri */
.kategori-filtre .p-g-mod-t-cat-filter {
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-mod-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px !important;
    cursor: pointer;
    user-select: none;
    flex-direction: row;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-m-h-info {
    order: 1;
    flex: 1;
    min-width: 0;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-m-h-icon {
    order: 2;
    margin: 0 !important;
    flex: 0 0 auto;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-m-h-i-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #111 !important;
    letter-spacing: 0.02em;
    text-transform: none;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-m-h-icon i,
.kategori-filtre .p-g-mod-t-cat-filter .p-g-m-h-icon span {
    font-size: 12px;
    color: #888;
}

.kategori-filtre .p-g-mod-t-cat-filter .p-g-mod-body {
    padding: 0 20px 14px !important;
}

/* Checkbox / radio satırları */
.kategori-filtre .category-filter-list .list {
    list-style: none;
    padding: 0 22px !important;
    margin-bottom: 15px !important;
}

.kategori-filtre .category-filter-list .list>li {
    margin: 0;
    padding: 0;
}

.kategori-filtre .lag-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.kategori-filtre .lag-checkbox:last-child,
.kategori-filtre .list>li:last-child .lag-checkbox {
    border-bottom: 0;
}

.kategori-filtre .lag-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kategori-filtre .lag-checkbox label {
    flex: 1;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #333;
    cursor: pointer;
    order: 2;
}

/* Özel checkbox kutusu */
.kategori-filtre .lag-checkbox span {
    order: 1;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1.5px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.kategori-filtre .lag-checkbox input:checked+label+span,
.kategori-filtre .lag-checkbox input:checked~span {
    background: #111;
    border-color: #111;
}

.kategori-filtre .lag-checkbox input:checked+label+span::after,
.kategori-filtre .lag-checkbox input:checked~span::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kategori-filtre .lag-checkbox input[type="radio"]~span {
    border-radius: 50%;
}

.kategori-filtre .lag-checkbox input[type="radio"]:checked~span::after {
    left: 4px;
    top: 4px;
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    transform: none;
}

.kategori-filtre .lag-checkbox:hover label {
    color: #111;
}

/* Fiyat input satırı */
.kategori-filtre .category-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.kategori-filtre .category-price-inputs .form-control {
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: none !important;
    padding: 0 10px;
}

.kategori-filtre .category-price-inputs .form-control:focus {
    border-color: #111;
}

.kategori-filtre .category-price-inputs .seperator {
    color: #999;
    font-size: 13px;
}

.kategori-filtre .category-price-inputs .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #111;
    color: #fff;
    border: 0;
}

.kategori-filtre .category-price-inputs .btn:hover {
    background: #000;
}

/* Alt sabit butonlar */
.kategori-filtre .p-g-mod-t-26 {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 12px 16px !important;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.04);
    z-index: 6;
}

.kategori-filtre .p-g-mod-t-26 .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
}

.kategori-filtre .p-g-mod-t-26 .btn {
    margin: 0 !important;
    height: 44px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.kategori-filtre .p-g-mod-t-26 .btn-secondary {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #111 !important;
}

.kategori-filtre .p-g-mod-t-26 .btn-success {
    background: #111 !important;
    border: 1px solid #111 !important;
    color: #fff !important;
}

/* Simplebar boşluklarını sadeleştir */
.kategori-filtre .simplebar-scroll-content {
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

.kategori-filtre .simplebar-content {
    padding-bottom: 0 !important;
}

.kategori-filtre .list-wrap {
    max-height: 220px;
}

/* Filtreler başlığı ve kapatma butonu yan yana */
.p-g-mod-t-1 .p-g-mod-header {
    padding: 15px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-g-mod-t-1 .p-g-m-h-info {
    flex: 1;
}

.p-g-mod-t-1 .close-filter {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    padding: 5px 10px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.pattern-group .p-g-mod-t-21 .p-g-mod-body,
.pattern-group .p-g-mod-t-22 .p-g-mod-body,
.pattern-group .p-g-mod-t-23 .p-g-mod-body,
.pattern-group .p-g-mod-t-24 .p-g-mod-body,
.pattern-group .p-g-mod-t-25 .p-g-mod-body {
    padding: 0 !important;
}

.p-g-mod.p-g-mod-t-1 {
    padding: 0;
    margin: 0;
}

.p-g-mod-t-cat-filter .p-g-mod-header {
    padding: 0 !important;
}

.p-g-mod-t-1 .close-filter:hover {
    color: var(--main-color);
    transform: rotate(90deg);
}

.filtreleme-title .p-g-mod-body {
    display: none;
}

.categories-body .list .lag-checkbox img {
    margin-right: 7px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-top: -2px;
}

.category-filter-order .list-wrap .list li.active .lag-checkbox,
.category-filter-order .list-wrap .list li:hover .lag-checkbox {
    background: transparent !important;
    color: #111 !important;
}

a.show-btn.ml-1.btn-sidebar-filtre {
    font-size: 13px;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 17px;
    font-size: 12px;
}

.p-g-mod-t-cat-filter .p-g-mod-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    cursor: pointer;
}

.p-g-mod-t-cat-filter .p-g-mod-body {
    display: none;
}

.p-g-mod-t-cat-filter.p-g-mod-t-23 .p-g-mod-body,
.p-g-mod-t-cat-filter.p-g-mod-t-21 .p-g-mod-body {
    display: block;
}

/* Variant box — product-badges ile uyumlu */
.product-profile-1 .variant-box {
    margin-top: 18px;
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.product-profile-1 .variant-box>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-profile-1 .variant-box ul li.variant {
    margin: 0;
}

.product-profile-1 .variant-box ul li .name {
    margin-bottom: 8px;
}

.product-profile-1 .variant-box ul li .name span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

/* tip_1: select gizli, chip seçenekler */
.product-profile-1 .variant-box ul li select.form-control:not(.d-block) {
    display: none !important;
}

.product-profile-1 .variant-box ul li .options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-profile-1 .variant-box ul li .options a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 42px;
    padding: 8px 14px;
    margin: 0;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.product-profile-1 .variant-box ul li .options a:hover {
    border-color: #bbb;
    color: #111;
}

.product-profile-1 .variant-box ul li .options a.active {
    border-color: #111;
    color: #111;
    background: #fff;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px #111;
}

.product-profile-1 .variant-box ul li .options a.sold-out {
    background: #f7f7f7;
    border-color: #e6e6e6;
    color: #bbb;
    text-decoration: line-through;
    pointer-events: none;
    opacity: 0.75;
}

/* tip_2: select görünür */
.product-profile-1 .variant-box ul li select.form-control.d-block {
    display: block !important;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    color: #333;
    box-shadow: none;
}

.product-profile-1 .variant-box ul li select.form-control.d-block:focus {
    border-color: #111;
    outline: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .product-profile-1 .variant-box ul li .options a {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== Ürün profil — CK Optik fiyat / taksit / butonlar ===== */

/* Fiyat | Taksit */
.product-profile-1 .pp-price-li {
    list-style: none;
    margin: 12px 0 18px !important;
}

.product-profile-1 .pp-price-installment {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.product-profile-1 .pp-price-side {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.product-profile-1 .pp-price-side .product-price-group {
    margin: 0;
}

.product-profile-1 .pp-price-side .sale-price {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111 !important;
    line-height: 1.2;
}

.product-profile-1 .pp-price-side .list-price {
    font-size: 14px;
}

.product-body .product-favourite {
    font-size: 18px;
    display: flex;
    width: 55px;
    align-items: center;
    justify-content: center;
    background: #383e42;
    color: #fff;
    margin-left: 5px;
}

.product-profile-1 .pp-installment-side {
    flex: 0 0 50%;
    padding-left: 20px;
    border-left: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.product-profile-1 .pp-installment-side>i {
    font-size: 18px;
    color: #111;
    line-height: 1;
}

.product-profile-1 .pp-installment-side .product-rate {
    font-size: 13px;
    line-height: 1.4;
    color: #444;
    font-weight: 400;
    margin: 0;
}

/* Ölçü tablosu */
.product-profile-1 .product-size-box {
    margin: 12px 0 14px;
}

.product-profile-1 .product-size-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #eef6fb;
    border-radius: 4px;
    color: #222 !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.product-profile-1 .product-size-box a i {
    font-size: 14px;
    color: #333;
}

/* Havale bar */
.product-profile-1 .product-transfer-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
    margin: 0 0 16px;
    padding: 12px 16px;
    background: #f3f3f3;
    border-radius: 0;
    border-left: 4px solid #333;
    font-size: 13px;
    color: #333;
    text-align: center;
}

.product-profile-1 .product-transfer-discount strong {
    color: #111;
    font-weight: 700;
}

/* Buton satırı */
.product-profile-1 .product-buttons {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 0 10px;
}

.product-profile-1 .product-buttons .btn-cart,
.product-profile-1 .product-buttons .btn-fast-buy {
    flex: 1;
    height: 48px;
    margin: 0 !important;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-profile-1 .product-buttons .btn-cart {
    background: #3c4043 !important;
    border-color: #3c4043 !important;
    color: #fff !important;
}

.product-profile-1 .product-buttons .btn-cart:hover {
    background: #2f3235 !important;
    border-color: #2f3235 !important;
    color: #fff !important;
}

.product-profile-1 .product-buttons .btn-fast-buy {
    background: #fff !important;
    border: 1px solid #cfcfcf !important;
    color: #3c4043 !important;
}

.product-profile-1 .product-buttons .btn-fast-buy:hover {
    background: #f7f7f7 !important;
    color: #111 !important;
}

.product-profile-1 .product-buttons .btn-cart i,
.product-profile-1 .product-buttons .btn-fast-buy i {
    display: none;
}

/* Favori — kare kalp */
.product-profile-1 .pp-fav-btn {
    flex: 0 0 48px;
}

.product-profile-1 .pp-fav-btn .product-favourite {
    width: 48px;
    height: 48px;
    margin: 0;
}

.product-profile-1 .pp-fav-btn .product-favourite a {
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #3c4043;
    color: #fff !important;
    border-radius: 2px;
    font-size: 0;
    text-decoration: none;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    border: 0;
    margin-bottom: 0px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-item {
    text-align: center;
    display: flex;
    margin: 0 30px 0 0;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    text-align: center;
    transition: var(--transition-time);
    border-bottom: 1px solid transparent;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link:hover,
.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link.active {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.product-details-tab-product-details-tab-colorful .tab-content {
    border: 0;
    border-top: 0;
    margin-bottom: 50px;
    margin-top: 30px;
}

.product-profile-1 .pp-fav-btn .product-favourite a i {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.product-favourite a {
    color: #fff !important;
}

.product-favourite a:hover {
    color: #fff !important;
}

/* WhatsApp — tam genişlik, yeşil */
.product-profile-1 .btn-wp {
    width: 100%;
    height: 48px;
    margin: 0 0 16px !important;
    padding: 0 16px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #34af23 !important;
    border: 0 !important;
    border-radius: 2px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.product-profile-1 .btn-wp i {
    color: #fff !important;
    font-size: 18px;
    margin: 0;
}

.product-profile-1 .btn-wp:hover {
    background: #2d961e !important;
    color: #fff !important;
}

@media (max-width: 575px) {
    .product-profile-1 .pp-price-installment {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .product-profile-1 .pp-price-side {
        padding-right: 0;
    }

    .product-profile-1 .pp-installment-side {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-top: 14px;
        border-left: 0;
        border-top: 1px solid #ddd;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .product-profile-1 .product-buttons {
        flex-wrap: wrap;
    }

    .product-profile-1 .product-buttons .btn-cart,
    .product-profile-1 .product-buttons .btn-fast-buy {
        flex: 1 1 calc(50% - 34px);
    }
}

.categories-body .category-cover {
    margin-bottom: 20px;
}

header.desktop .header-bar .bar-user {
    background: var(--main-color);
    padding: 0 10px;
    color: #fff;
}

header.desktop .header-bar .bar-user .icon {
    margin: 0 !important;
    width: auto;
    margin-left: 10px !important;
}

.h-center .bar-cart .info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.h-center .bar-cart .info .name {
    font-weight: 500;
    color: #999;
}

.h-center .bar-cart .info .price {
    color: #000;
}

.product-profile-1 .btn-wp {
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 10px 0;
    margin: 20px 0;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.product-profile-1 .btn-wp i {
    color: #25d366;
    font-size: 17px;
    margin-right: 7px;
}

.product-profile-1 h1.title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 0;
}

.product-profile-info li {
    margin: 7px 0;
}

.product-profile-1 .carousel .carousel-inner {
    border: 0;
}

.product-body .p-g-accordion .p-g-a-wrapper {
    margin-bottom: 18px;
}

.product-body .p-g-mod.p-g-mod-product-det {
    border: 1px solid #e0e0e0;
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.product-body .p-g-accordion .p-g-a-wrapper .p-g-a-w-header a {
    background: #fcfcfc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    height: 40px;
    padding: 10px 15px;
    border: 1px solid #ebebeb;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.card-product .card-product-inner .price-group {
    display: flex;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #333;
}

.card-product .product-reviews {
    justify-content: flex-start;
    margin: 5px 0;
}

/* ===== Ürün kartı fiyat alanı — düzeltme ===== */

.card-product .title-special {
    margin: 10px 0 8px;
    padding: 10px 8px 0;
    border-top: 1px solid #f2f2f2;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #333;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-product .cart-mobile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 8px 12px;
    width: 100%;
}

.card-product .card-product-inner .price-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto !important;
    min-height: 0;
    margin: 0;
    width: 100%;
}

.card-product .card-product-inner .price-group .prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

/* Normal / üstü çizili fiyat */
.card-product .card-product-inner .price-group .prices .list-price,
.card-product .card-product-inner .price-group .prices .sale-price.line {
    order: 1;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #999 !important;
    text-decoration: line-through;
    line-height: 1.2;
}

.card-product .card-product-inner .price-group .prices .sale-price:not(.line) {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

/* Sepette indirim kutusu */
.card-product .sale-price-basket {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 180px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fff;
    flex-direction: row;
}

.card-product .sepette-indirim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.card-product .prom-fiyat {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.card-product .prom-oran {
    font-size: 12px;
    font-weight: 700;
    color: #c00;
    white-space: nowrap;
}

/* Sepet / incele butonları fiyatın üstüne binmesin */
.card-product .c-p-i-info {
    position: relative;
    padding-bottom: 4px;
}

.card-product .buttons-wrapper.right-to-left {
    bottom: 12px;
    z-index: 2;
}

.card-product .cart-product-wrapper {
    display: block;
    padding-bottom: 8px;
}

.card-product .card-product-inner .title {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    margin: 5px 0;
    font-size: 14px;
    line-height: 18px;
    height: 36px;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    letter-spacing: .3px;
    color: #40484e;
}

.card-product .card-product-inner {
    padding: 0 !important;
}

.card-product {
    border: 0 !important;
}

.title-special {
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 10px;
}

.card-category,
.card-product {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 10px;
    margin: 3px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.readmore {
    margin: 40px 0;
}

.readmore .p-g-mod-base-content {
    border: 0;
}

.readmore .readmore-text {
    max-height: var(--readmore-height);
    overflow: hidden;
}

.readmore .readmore-text.show {
    max-height: 100% !important;
}

.readmore .p-g-mod-t-1 {
    display: flex;
    justify-content: center;
}

.readmore .more {
    display: inline-block;
    border-radius: 5px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    padding: 15px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #000;
}

.product-profile-1 .carousel .carousel-indicators {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
    margin: 0;
    z-index: 0;
    flex-direction: row;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    max-height: 500px;
    overflow: scroll;
}

.info-bar-1 {
    padding: 20px 0;
    background: #f9f9f9;
}

.info-bar-1 .icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #000;
    padding: 10px 0;
}

.info-bar-1 .icons .icon-group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
}

.info-bar-1 .icons .icon-group:last-child {
    border-right: 0;
}

.info-bar-1 .icons .icon-group i {
    font-size: 35px;
    margin-right: 25px;
    color: var(--main-color);
}

.info-bar-1 .icons .icon-group .inf .name {
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: #000;
}

.info-bar-1 .icons .icon-group .inf .description {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.login-body .p-g-mod-t-4 {
    padding: 30px;
}

.login-body .p-g-mod-t-4 .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 {
    flex: 1;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #e9e9e9 !important;
    background: #e9e9e9;
    color: #777;
    font-weight: 600;
    transition: all var(--transition-time);
    font-size: 16px;
}

.login-body .p-g-mod-t-4 .btn-without-login {
    color: #fff;
    background: var(--main-color) !important;
    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 {
    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 {
    border: 1px solid #c5c5c5 !important;
    background: #fff !important;
    color: #000 !important;
}

.login-body .p-g-mod-t-4 .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    height: 45px;
    align-items: center;
    font-weight: 500;
}

.login-body .p-g-mod-t-4 .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-weight: 500;
    font-size: 14px;
}

.login-body .p-g-mod-t-4 .btn-fb-login i {
    padding-right: 10px !important;
    border-right: 0 !important;
}

.login-body .p-g-mod-t-4 .btn-google-login {
    background: #db4437 !important;
    background-image: linear-gradient(#db4437, #cc3e32) !important;
    text-shadow: 0 -1px 0 #db4437 !important;
    color: #fff !important;
    border: 1px solid #db4437 !important;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

.login-body .p-g-mod-t-4 .btn-google-login i {
    padding-right: 10px !important;
    border-right: 0 !important;
}

.p-g-mod-t-12 .p-g-mod-body .social-share {
    border-top: 1px solid rgba(0, 0, 0, .1);
    font-size: 12px;
    margin-top: 10px;
}

.p-g-mod-t-15 .p-g-mod-body.p-g-mod-body-p-0 ul li a,
.p-g-mod-t-16 .p-g-mod-body.p-g-mod-body-p-0 ul li a,
.p-g-mod-t-58 .p-g-mod-body.p-g-mod-body-p-0 ul li a {
    padding: .75rem 10px;
}

.card-blog .buttons .btn-read-more {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 13px;
    border-radius: 3px;
    padding: 5px 15px;
}

.card-blog .buttons .btn-read-more i {
    font-size: 9px;
    margin-left: 5px;
}

.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 !important;
    font-weight: 400;
    padding-left: 14px;
    border: 1px solid #e7e3e3 !important;
    border-radius: 3px;
    background: url(images/select-arrow.svg) no-repeat;
    background-position: right 10px center;
    background-color: #fff;
    outline: none;
}

.category-filter-order-desktop:focus {
    border-color: #e7e3e3 !important;
}

.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: #fff;
    padding: 10px 0;
}

.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;
}

.categories-body .pattern-group .p-g-mod-t-20>.p-g-mod-header {
    border-bottom: 0;
    padding-left: 0 !important;
}

.category-filter-order .list-wrap .list li {
    flex: inherit;
}

.category-filter-order-mobile {
    display: none;
}

.pattern-group .p-g-mod-showcase .p-g-mod-header {
    border-bottom: 0;
}

.card-product .card-product-inner .price-group .prices .sale-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: normal;
}

.card-product-content {
    text-align: left;
    color: #555;
}

.card-product .card-product-inner .product-label img {
    max-height: 35px;
}

.category-filter-order .list-wrap .list li .lag-checkbox {
    transition: all var(--transition-time);
}

.category-filter-order .list-wrap .list li.active .lag-checkbox,
.category-filter-order .list-wrap .list li:hover .lag-checkbox {
    background: var(--main-color);
    color: #fff;
}

.pattern-group .p-g-mod-t-26 .p-g-mod-body .buttons .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    width: 100%;
    margin: 0 !important;
    border-radius: 0;
}

.categories-body .p-g-mod-t-cat-filter {
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    border: 1px solid #ebebeb;
    margin-bottom: 0px;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
    transition: var(--transition-time);
}

.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link:hover {
    color: var(--main-color);
}

.product-details-tab-product-details-tab-colorful .tab-content {
    border: 1px solid #ebebeb;
    border-top: 0;
}

.product-profile-1 .carousel .carousel-indicators li.active {
    border-color: var(--main-color);
}

/* Product badges — CK Optik kart stili */
.product-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    width: 100%;
}

.product-badges .p-badge {
    height: auto !important;
    min-height: 96px;
    margin: 0 !important;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: none;
    float: none !important;
    width: auto !important;
    flex: none !important;
}

.product-badges .p-badge i {
    font-size: 22px;
    line-height: 1;
    color: #222;
    margin: 0 !important;
}

.product-badges .p-badge span {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
    color: #444;
}

.product-badges .p-badge img,
.product-badges .p-badge .lazy,
.product-badges .p-badge picture {
    max-height: 36px;
    width: auto;
    max-width: 70%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.product-badges .p-badge.domestic {
    padding: 14px 12px;
}

.p-badge.domestic.mb-2 img {
    max-width: 80px;
}

.p-g-mod-base-content {
    border: 1px solid #ebebeb;
}

.p-g-mod-t-10 .p-g-mod-body a,
.p-g-mod-t-2 .p-g-mod-body a {
    transition: all var(--transition-time);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .contact-item {
    margin: 5px 0;
    display: flex;
    align-content: center;
    cursor: pointer;
}

.contact-info .contact-item i {
    margin-right: 10px;
    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);
}

footer .bar .cards {
    min-height: auto;
    background: inherit;
}

footer .bar .right-image {
    text-align: right !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.product-profile-info .sale-price-discount,
.hizli-sepet .sale-price-discount {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
}

.product-profile-info .sale-price-discount .sale-price,
.hizli-sepet .sale-price {
    font-size: 20px;
    font-weight: 600;
}

.card-product .sale-price-basket {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 5px 0;
    margin: 3px 0;
    flex-direction: column;
}

.card-product .sale-price-basket .sale-price {
    font-weight: 500;
    font-size: 15px;
}

.native-modal.show .hizli-sepet .related-products {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: inherit;
}

.native-modal.show .hizli-sepet .fast-product-cart-box::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.native-modal.show .hizli-sepet .fast-product-cart-box::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgb(181 181 181 / 50%);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.hizli-sepet {
    max-width: 960px !important;
}

.native-modal.show .hizli-sepet .modal-content {
    border: 0;
    border-radius: 0;
    position: relative;
}

.native-modal.show .hizli-sepet .modal-content .prices {
    display: flex;
    align-items: center;
}

.native-modal.show .hizli-sepet .modal-content .fast-product-title {
    font-size: 19px;
    color: #151515;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 25px;
}

.native-modal.show .hizli-sepet .modal-content .product-reviews .stars .star {
    color: #dbdbdb;
    font-size: 12px;
    margin-right: 1px;
}

.native-modal.show .hizli-sepet .modal-content .product-reviews .stars {
    margin: 15px 0;
}

.native-modal.show .hizli-sepet .modal-content .iliskili-urunler {
    color: #858585;
    font-weight: 600;
}

.native-modal.show .hizli-sepet .modal-content .iliskili-urunler .value {
    color: #000;
}

.native-modal.show .hizli-sepet .modal-content .product-price-group .prices .list-price {
    font-size: 19px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.native-modal.show .hizli-sepet .modal-content .short-desc {
    color: #454545;
    font-size: 14px;
    margin-bottom: 15px;
}

.native-modal.show .hizli-sepet .carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: #898989;
    border-radius: 50%;
    border: 4px solid transparent;
}

.native-modal.show .hizli-sepet .carousel-indicators li.active {
    opacity: 1;
    background-color: #000 !important;
    border: 4px solid #c3c3c3;
}

.native-modal.show .hizli-sepet .product-favourite2 {
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 3px;
    -webkit-box-shadow: 0px -2px 18px -3px rgb(0 0 0 / 58%);
    box-shadow: 0px -2px 18px -3px rgb(0 0 0 / 58%);
}

.native-modal.show .hizli-sepet .product-buttons {
    display: inline-flex;
    flex-wrap: nowrap;
}

.native-modal .native-modal-close {
    z-index: 9;
    outline: 0;
}

.native-modal.show .hizli-sepet .fast-product-cart-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: 600px;
    overflow-y: auto;
}

.native-modal.show .hizli-sepet .modal-body {
    padding: 0 !important;
}


/* Ürün Detay - Birim */

.product-body .product-profile-1 .product-unit {
    display: flex;
    justify-content: center;
    font-weight: 500;
    align-items: center;
    border-radius: 5px;
    border: solid 1px #d9d9d9;
    width: 95px;
    padding: 5px 0;
    margin-right: 10px !important;
    height: 46px;
    margin: 10px 0;
}

.product-body .product-profile-1 .product-unit input[type=checkbox],
.product-body .product-profile-1 .product-unit input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;
}

.product-body .product-profile-1 .product-unit input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #96be67;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid #ebebeb;
}

/* Ürün Kartı - Adet Seçimi */

.card-product .card-product-inner .quantity {
    margin: 5px 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-basis: auto;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn {
    display: flex;
    width: 35px;
    height: 35px;
    color: #555;
    font-size: 10px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    align-items: center;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn:first-child {
    border-radius: 0;
}

.card-product .card-product-inner .quantity .btn:hover {
    color: #333;
    background: #f2f2f2;
    border-color: #f5f5f5;
}

.card-product .card-product-inner .quantity input {
    min-width: 35px;
    max-width: 50px;
    height: 35px;
    border-radius: 0;
    border-color: #dbdbdb !important;
    background: #fff;
    color: #555;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border-right: 0;
    border-left: 0;
}

.subtitle-img {
    max-height: 25px;
    margin-bottom: 5px;
}

header.desktop .mega-menu .nav-link {
    flex: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-menu-container .single-menu li .subtitle-img {
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    display: block;
    color: #fff;
    transition: all 0.2s ease-in-out 0s;
    font-size: 16px;
}

.single-menu-container .single-menu li {
    text-align: center;
    height: 100%;
}

.single-menu-container .single-menu li .sub-single-item {
    padding: 0 15px;
}

/* 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: 2rem;
    margin: 30px 0px 0px 0px;
}

.e404-description {
    color: #808080;
    font-size: 1rem;
    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: 2rem;
    margin: 30px 0px 0px 0px;
}

/* Mobil Uygulama İkonları  */

footer .mobile-app-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

footer .mobile-app img {
    max-height: 40px;
}

/* Müşteri Etkileşim Butonları */

.product-customer-actions {
    padding: 10px 0;
    background: #f5f5f5;
}

.product-customer-actions .action .button i {
    font-size: 15px;
    margin-right: 10px;
}

.product-customer-actions .action:first-child {
    border-left: 0;
}

.product-customer-actions .action {
    border-right: 0;
}

/* Havale İndirimi */

.product-transfer-discount {
    background: #f2f2f2;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border-left: 5px solid var(--main-color);
    font-size: 14px;
    color: #7a7a7a;
}

/* E-Bülten */

.newsletter-content .newsletter-title {
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.newsletter-input {
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.newsletter-form .btn-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.newsletter-form {
    position: relative;
    width: 100%;
}

/* SMS Bülteni */

.sms-newsletter-content .newsletter-title {
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.sms-newsletter-input {
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.sms-newsletter-form .btn-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.sms-newsletter-form {
    position: relative;
    width: 100%;
}

/* Footer Social Media*/

footer .social-media .social-media-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

footer .social-media a {
    color: #000;
    font-size: 20px;
    margin-right: 20px;
}

footer .social-media a:last-child {
    margin-right: 0;
}

.card-product .card-product-inner .price-group .prices .list-price {
    text-decoration: line-through;
    font-size: 13px;
    color: #a7a7a7;
}

/* Buttons */

.card-blog,
.card-brand,
.card-category,
.card-product {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.card-product .card-product-inner .free-cargo-badge {
    position: absolute;
    left: 10px;
    background: #009688;
    top: 10px;
}

.card-product .card-product-inner .buttons .btn-cart,
.modal-content .buttons .btn-cart {
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
    width: 100%;
    border-radius: 0;
    font-size: 14px;
}

.card-product .card-product-inner .buttons .btn-cart i,
.modal-content .buttons .btn-cart i {
    margin-right: 7px;
}

.card-product .card-product-inner .buttons .btn-cart:hover,
.modal-content .buttons .btn-cart:hover {
    background: var(--add-cart-list-bg-hover);
    border-color: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover) !important;
}

.card-product .down-to-top .btn-cart {
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
    font-size: 13px;
}

.card-product .down-to-top .btn-cart:hover {
    background: var(--add-cart-list-bg-hover);
    border-color: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover) !important;
}

.product-buttons .btn-cart {
    background: var(--add-cart-detail-bg);
    border-color: var(--add-cart-detail-bg);
    color: var(--add-cart-detail);
    transition: all var(--transition-time);
    flex: 1;
}

.product-buttons .btn-cart:hover {
    background: var(--add-cart-detail-bg-hover);
    border-color: var(--add-cart-detail-bg-hover);
    color: var(--add-cart-detail-hover);
}

.product-buttons .btn-fast-buy {
    background: var(--buy-now-bg);
    border-color: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
    flex: 1;
}

.product-buttons .btn-fast-buy:hover {
    background: var(--buy-now-bg-hover);
    border-color: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}


.payment-final-buttons-1 .btn-complete {
    background: var(--complete-payment-bg);
    border-color: var(--complete-payment-bg);
    color: var(--complete-payment);
    transition: all var(--transition-time);
}

.payment-final-buttons-1 .btn-complete:hover {
    background: var(--complete-payment-bg-hover);
    border-color: var(--complete-payment-bg-hover);
    color: var(--complete-payment-hover);
}

.product-favourite-kart {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

.product-favourite-kart a {
    font-size: 20px;
}

/* Header  */

header.desktop .header-bar .bar-link .icon {
    height: 40px;
    width: 40px;
    display: flex;
    color: #fff !important;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    margin-left: 10px;
}

header.desktop .header-bar .bar-link .icon,
header.desktop .header-bar .bar-link .name {
    transition: all var(--transition-time);
}

header.desktop .header-bar .bar-link:hover .icon,
header.desktop .header-bar .bar-link:hover .name {
    color: var(--main-color2);
}

header.desktop .header-bar .bar-user .link a .name {
    color: #fff !important;
}

header.desktop .header-bar .bar-link {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

header.desktop .header-bar .bar-favorite {}

header.desktop .header-bar .bar-link a {
    color: #fff;
}

header.desktop .header-bar .bar-user .link {
    display: flex;
    flex-direction: row;
}

header.desktop .header-bar .bar-link i {
    font-size: 20px;
}

header.desktop .header-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header.desktop .header-bar .bar-cart .icon .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%;
}


/* Category Page */
.product-view-select {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    align-items: center;
}


/* Card Product */
.card-product .it-over {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgb(255 255 255 / 90%);
    color: #000;
    border: 1px solid #000;
    text-align: center;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-product .carousel-control-next i,
.card-product .carousel-control-prev i {
    padding: 5px;
    background: #fff;
    font-size: 18px;
    color: #000;
}

.card-product .buttons-wrapper.right-to-left {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-time);
}

.card-product .right-to-left .button-group {
    background: transparent;
    padding: 0;
}

.card-product .right-to-left .cart-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.card-product .right-to-left .cart-group a {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-product .right-to-left .cart-group a i {
    font-size: 17px;
    transition: all var(--transition-time);
    color: #333;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-product .right-to-left .cart-group a:hover i {
    color: var(--main-color);
}

.card-product:hover .buttons-wrapper.right-to-left {
    opacity: 1;
    visibility: visible;
}

.card-product .buttons-wrapper.down-to-top {
    position: absolute;
    overflow: hidden;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%, 0%, 0);
    z-index: -1;
}

.card-product .down-to-top .button-group {
    background: transparent;
    padding: 7px;
}

.card-product .btn-cart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-product:hover .down-to-top {
    position: absolute;
    overflow: hidden;
    width: 100%;
    left: 50%;
    transform: translate3d(-50%, -100%, 0);
    transition: all .4s;
    z-index: 999;
}


.card-product:hover .down-to-top .button-group {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition: all .4s;
    margin: 0;
    padding: 3px 0;
}


/* Product Detail */
.product-carousel-mobile {
    display: none;
}

.video-play {
    position: relative;
}

.video-play i {
    position: absolute;
    bottom: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 100%;
    line-height: 28px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    text-indent: 1px;
}


/* Responsive */

@media (max-width: 1400px) {

    header.desktop .header-bar .bar-user .link .line,
    header.desktop .header-bar .bar-favorite {
        display: none;
    }

    header.desktop .header-bar .bar-user .link .name {
        margin-right: 5px;
    }

    header.desktop .header-bar .bar-user .icon {
        margin: 0 !important;
        width: auto !important;
        margin-left: 3px !important;
    }
}

@media (max-width: 991px) {

    footer .logo-area .logo img {
        max-height: 70px;
        max-width: 230px;
    }

    .info-bar-1 .icons {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        color: #000;
        padding: 10px 0;
        flex-direction: column;
    }

    .login-body .p-g-mod-t-4 {
        padding: 7px;
    }

    .category-filter-order-desktop {
        display: none;
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
        height: auto;
    }

    .product-profile-1 .product-quantity {
        margin-right: 10px;
    }

    .product-badges .p-badge {
        height: 55px;
        flex: auto;
    }

    .product-buttons .btn-fast-buy {
        flex: 1;
    }

    .product-buttons .btn-cart {
        flex: 1;
        margin-left: 0;
    }

    .product-buttons .btn-wp {
        width: 100%;
    }

    .card-product .right-to-left {
        display: none !important;
    }

    .product-view-select {
        display: none;
    }

    .categories-body .p-g-mod-t-cat-filter {
        margin: 10px;
    }

    footer .bar .right-image {
        justify-content: center;
    }

    footer .bb .pr-5 {
        padding-right: 10px !important;
    }

    footer .mobile-app {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .product-carousel-desktop.normal {
        display: none;
    }

    .product-carousel-mobile {
        display: block;
    }

    .mobile-header-space {
        display: block;
    }

    header.desktop {
        display: none;
    }

    header.mobile {
        display: block;
    }

    .stores .cards {
        display: block;
        text-align: center;
    }

    .stores .card {
        display: inline-block;
        border-right: none;
        margin: 0;
        max-width: 45%;
        height: 50px;
        border: 0
    }

    footer .bar p {
        text-align: center !important;
    }

    footer .bar .right-image {
        margin: 10px 0;
        text-align: center !important;
    }

    footer .logo-area {
        text-align: center;
    }

    footer .bb {
        border-top: 0;
        border-bottom: 0;
    }

    footer .info {
        padding-top: 0;
    }

    footer .info .title {
        text-align: center !important;
        color: #000;
        border: 1px solid #000;
        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 #000;
        margin-bottom: 15px;
        color: #000 !important;
        padding: 10px;
    }

    footer .info ul {
        margin: 0;
    }

    footer .info ul li {
        color: #000 !important;
    }

    footer .info ul li a {
        color: #000;
    }

    footer .info ul li a:before {
        display: none;
    }

    footer .social-media {
        justify-content: center;
        margin: 10px 0;
    }

    footer .secure {
        text-align: center !important;
        margin: 10px 0;
    }

}

/* Header Shopping Cart */

header.desktop .header-cart-hover .nav-link::after {
    display: none;
}

/* Morliva sepet hover — eski davranış */
.header-morliva .header-cart-hover,
header.desktop .header-cart-hover {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    z-index: 30;
}

.header-morliva .header-cart-hover .dropdown-menu,
header.desktop .header-cart-hover .dropdown-menu {
    display: none;
    border: 2px solid #ececec;
    border-radius: 10px;
    background: #fff;
    width: 320px;
    left: auto;
    right: 0;
    top: 100%;
    position: absolute;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    margin-top: 0 !important;
    padding: 0;
    z-index: 1050;
}

/* hover boşluğu kapanmasın diye görünmez köprü */
.header-morliva .header-cart-hover .dropdown-menu::before,
header.desktop .header-cart-hover .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.header-morliva .header-cart-hover:hover .dropdown-menu,
.header-morliva .header-cart-hover .dropdown-menu:hover,
.header-morliva .header-cart-hover .dropdown-menu.active,
header.desktop .header-cart-hover:hover .dropdown-menu,
header.desktop .header-cart-hover .dropdown-menu:hover,
header.desktop .header-cart-hover .dropdown-menu.active {
    display: block !important;
}

.header-morliva .h-actions {
    overflow: visible;
    position: relative;
    z-index: 30;
}

.header-morliva .h-center,
.header-morliva .h-center-row,
.header-morliva .container {
    overflow: visible;
}

/* ===== Mini sepet dropdown — modern ===== */
.header-morliva .header-cart-hover .dropdown-menu,
header.desktop .header-cart-hover .dropdown-menu {
    width: 360px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Üst başlık */
.header-morliva .header-cart-hover .dropdown-menu .top-header,
header.desktop .header-cart-hover .dropdown-menu .top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.header-morliva .header-cart-hover .dropdown-menu .top-header .title,
header.desktop .header-cart-hover .dropdown-menu .top-header .title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    padding: 0;
}

.header-morliva .header-cart-hover .count2,
header.desktop .header-cart-hover .count2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.header-morliva .header-cart-hover .count2-description,
header.desktop .header-cart-hover .count2-description {
    font-size: 12px;
    font-weight: 500;
    color: #777;
}

.header-morliva .header-cart-hover .close-cart,
header.desktop .header-cart-hover .close-cart {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #444;
    text-decoration: none;
    transition: background 0.15s ease;
}

.header-morliva .header-cart-hover .close-cart:hover,
header.desktop .header-cart-hover .close-cart:hover {
    background: #eee;
    color: #111;
}

/* Ürün listesi */
.header-morliva .header-cart-hover .ajax-shopping-cart,
header.desktop .header-cart-hover .ajax-shopping-cart {
    padding: 8px 12px;
    max-height: 280px;
    overflow-y: auto;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product,
header.desktop .header-cart-hover .ajax-shopping-cart .product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product:last-child,
header.desktop .header-cart-hover .ajax-shopping-cart .product:last-child {
    border-bottom: 0;
    margin: 0;
    padding: 12px 0;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .image,
header.desktop .header-cart-hover .ajax-shopping-cart .product .image {
    flex: 0 0 64px;
    width: 64px;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .image a,
header.desktop .header-cart-hover .ajax-shopping-cart .product .image a {
    display: block;
    width: 64px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .image img,
header.desktop .header-cart-hover .ajax-shopping-cart .product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .info,
header.desktop .header-cart-hover .ajax-shopping-cart .product .info {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left !important;
    padding-right: 28px;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .info .name,
header.desktop .header-cart-hover .ajax-shopping-cart .product .info .name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #111;
    margin-bottom: 4px;
    text-decoration: none;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .variants,
header.desktop .header-cart-hover .ajax-shopping-cart .product .variants {
    font-size: 11px;
    color: #777;
    margin-bottom: 4px;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .variant,
header.desktop .header-cart-hover .ajax-shopping-cart .product .variant {
    margin: 0;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .price,
header.desktop .header-cart-hover .ajax-shopping-cart .product .price {
    flex: none;
    text-align: left !important;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

.header-morliva .header-cart-hover .ajax-shopping-cart .product .price .value,
header.desktop .header-cart-hover .ajax-shopping-cart .product .price .value {
    white-space: normal;
}

/* Sil butonu */
.header-morliva .header-cart-hover .btn-remove,
header.desktop .header-cart-hover .btn-remove {
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f1f1;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-morliva .header-cart-hover .btn-remove:hover,
header.desktop .header-cart-hover .btn-remove:hover {
    background: #111;
    color: #fff;
}

/* Özet */
.header-morliva .header-cart-hover .summary,
header.desktop .header-cart-hover .summary {
    padding: 12px 16px 16px;
    border-top: 1px solid #eee;
    background: #fff;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .table,
header.desktop .header-cart-hover .header-cart-summary-1 .table {
    margin-bottom: 12px;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .table th,
header.desktop .header-cart-hover .header-cart-summary-1 .table th {
    border: 0 !important;
    padding: 4px 0 !important;
    font-size: 12px !important;
    font-weight: 500;
    color: #666;
    vertical-align: middle;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .table tr:last-child th,
header.desktop .header-cart-hover .header-cart-summary-1 .table tr:last-child th {
    padding-top: 8px !important;
    font-size: 13px !important;
    font-weight: 700;
    color: #111;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .table th:last-child,
header.desktop .header-cart-hover .header-cart-summary-1 .table th:last-child {
    text-align: right;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .final,
header.desktop .header-cart-hover .header-cart-summary-1 .final {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

/* Butonlar */
.header-morliva .header-cart-hover .header-cart-summary-1 .buttons,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn {
    margin: 0 !important;
    padding: 11px 10px !important;
    border-radius: 8px;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 0;
    text-align: center;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn-color-1,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn-color-1 {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn-color-1:hover,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn-color-1:hover {
    background: #f7f7f7 !important;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2 {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2:hover,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2:hover {
    background: #000 !important;
}

.header-morliva .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2 i,
header.desktop .header-cart-hover .header-cart-summary-1 .buttons .btn-color-2 i {
    font-size: 10px;
    margin-left: 4px;
    padding: 0;
}

.ajax-shopping-cart .product .info .name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.sidebar-menu-type-2 .logo-area a img {
    max-height: 40px
}

.sidebar-menu-type-2 .mobil-area-title {
    font-size: 16px
}

.sidebar-menu-type-2 .categories ul li a {
    font-size: 15px;
    font-weight: 500
}

.sidebar-menu-type-2 .categories ul .multi a {
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400
}

.sidebar-menu-type-2 .categories ul .multi .multi a {
    font-size: 14px
}

.mobile-menu-close i {
    border: 1px solid #b8b8b8;
    color: #b8b8b8;
}

.sidebar-menu-type-2 .categories ul .multi li:first-child {
    display: block
}

@media (max-width: 991px) {
    .product-profile-1 .carousel .carousel-indicators li {
        max-width: 50px;
    }
}

@media (max-width: 991px) {
    .product-profile-1 h1.title {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .product-profile-1 .carousel .carousel-indicators {
        overflow: unset !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 767px) {
    .product-profile-1 .carousel .carousel-indicators {
        overflow: unset !important;
        max-height: unset !important;
    }

    .product-profile-1 .carousel .carousel-indicators li {
        max-width: 50px;
    }
}


@media (max-width:767px) {
    .product-body .product-carousel {
        flex-direction: column-reverse;
    }
}

@media (min-width: 768px) {
    .product-profile-1 .carousel .carousel-indicators {
        overflow: unset !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 767px) {
    .product-profile-1 .carousel .carousel-indicators {
        overflow: unset !important;
        max-height: unset !important;
    }

    .product-profile-1 .carousel .carousel-indicators li {
        max-width: 50px;
    }
}

.p-g-mod.p-g-mod-t-39 {
    margin-bottom: 10px;
    margin-top: -10px;
    border: 0 !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-header {
    height: 35px !important;
    padding: 10px !important;
    color: #333;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 14px !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body:not(.p-g-mod-body-p-0) {
    padding: 0 !important;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body input {
    padding: 0.275rem 0.7rem !important;
    height: 35px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

.p-g-mod.p-g-mod-t-39 .p-g-mod-body .btn-secondary {
    font-size: 13px;
    font-weight: 500;
    background: #818181;
    border-color: #818181;
}

.product-carousel-desktop.normal .carousel-item a img {
    width: 100%;
}

@media(max-width: 991px) {

    .ppc-ctype-2 .row:first-of-type,
    .ppc-ctype-3 .row:first-of-type {
        flex-direction: column-reverse;
    }
}

.category-short-description {
    font-size: 15px;
}

@media(max-width: 991px) {
    .category-short-description {
        font-size: 13px;
    }
}

/* ===== Footer Morliva ===== */
.footer-morliva {
    background: #fff;
    color: #222;
    border-top: 1px solid #e5e5e5;
}

.footer-morliva a {
    color: #333;
    text-decoration: none;
}

.footer-morliva a:hover {
    color: #000;
}

/* --- USP üst şerit --- */
.fm-usp {
    border-bottom: 1px solid #e5e5e5;
    padding: 32px 0;
}

.fm-usp-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    /* 4 dikey çizgi — ilk 3 sekme dahil, kenara değmez */
    background-image:
        linear-gradient(#d0d0d0, #d0d0d0),
        linear-gradient(#d0d0d0, #d0d0d0),
        linear-gradient(#d0d0d0, #d0d0d0),
        linear-gradient(#d0d0d0, #d0d0d0);
    background-size: 1px 72%;
    background-position:
        20% 50%,
        40% 50%,
        60% 50%,
        80% 50%;
    background-repeat: no-repeat;
}

.fm-usp-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 20px;
}

.fm-usp-item::after {
    display: none !important;
    content: none !important;
}

.fm-usp-icon {
    font-size: 26px;
    color: #111;
    margin-bottom: 12px;
    line-height: 1;
}

.fm-usp-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
}

.fm-usp-text span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: #777;
}

/* --- Ana footer --- */
.fm-main {
    padding: 36px 0 40px;
    border-bottom: 1px solid #e5e5e5;
}

.fm-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1.15fr 1fr;
    gap: 0;
    align-items: stretch;
    background-image: none;
    /* tüm sütun çizgilerini kaldır */
}

.fm-col {
    position: relative;
    padding: 4px 26px;
}

.fm-col::before,
.fm-col::after {
    display: none !important;
    content: none !important;
}

.fm-col:first-child {
    padding-left: 0;
}

.fm-col:last-child {
    padding-right: 0;
}

/* Sadece "Bize Ulaşın" — sol + sağ kısa dikey çizgi */
.fm-col-center {
    position: relative;
}

.fm-col-center::before,
.fm-col-center::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #d0d0d0;
    z-index: 2;
    pointer-events: none;
}

.fm-col-center::before {
    left: 0;
}

.fm-col-center::after {
    right: 0;
}

.fm-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.fm-title-sm {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 22px 0 10px;
}



.fm-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fm-links li {
    margin: 0 0 9px;
}

.fm-links a {
    font-size: 13px;
    line-height: 1.35;
    color: #333;
}

.fm-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #777;
    margin: 0 0 14px;
}

.fm-newsletter {
    display: flex !important;
    align-items: stretch;
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 14px;
}

.fm-newsletter .form-control {
    flex: 1;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    height: 44px;
    padding: 0 12px !important;
    font-size: 13px;
    background: #fff !important;
    border-radius: 0 !important;
}

.fm-newsletter .btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid #e8e8e8;
    background: #fff;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fm-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.fm-apps img {
    height: 38px;
    width: auto;
    display: block;
}

.fm-app-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #111 !important;
}

.fm-etbis {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    padding: 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.fm-etbis-qr {
    width: 120px;
    height: 120px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fm-etbis-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fm-etbis-text {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #c00;
}

.fm-phone {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #111 !important;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.fm-social {
    display: flex;
    gap: 8px;
    margin: 0 0 18px;
}

.fm-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
    border: 0;
}

.fm-payments {
    margin-top: 6px;
}

.fm-payments img,
.fm-payments .cards {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

.fm-shipping-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fm-ship-logo {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #222;
    opacity: 0.85;
}

.fm-bottom {
    padding: 14px 0;
    font-size: 12px;
    color: #777;
}

/* Bize Ulaşın + Müşteri Hizmetleri — ortalı + ikonlu başlık */
.fm-col-center,
.fm-col-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fm-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
    line-height: 1.2;
}

.fm-heading i {
    font-size: 16px;
    color: #111;
    line-height: 1;
}

.fm-heading-sm {
    font-size: 13px;
    margin: 22px 0 12px;
}

.fm-heading-sm i {
    font-size: 14px;
}

.fm-col-center .fm-desc {
    text-align: center;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.fm-col-center .fm-newsletter {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.fm-col-center .fm-apps {
    justify-content: center;
}

.fm-col-right .fm-phone {
    text-align: center;
    margin-bottom: 4px;
}

.fm-col-right .fm-social {
    justify-content: center;
}

.fm-col-right .fm-payments {
    display: flex;
    justify-content: center;
    width: 100%;
}

.fm-col-right .fm-payments img,
.fm-col-right .fm-payments .cards {
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .fm-usp-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
        background-image:
            linear-gradient(#d0d0d0, #d0d0d0),
            linear-gradient(#d0d0d0, #d0d0d0);
        background-size: 1px 70%;
        background-position: 33.33% 25%, 66.66% 25%;
    }

    .fm-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
        background-image:
            linear-gradient(#d0d0d0, #d0d0d0),
            linear-gradient(#d0d0d0, #d0d0d0);
        background-size: 1px calc(50% - 20px);
        background-position: 33.33% 25%, 66.66% 25%;
    }
}

@media (max-width: 991px) {

    .fm-usp-grid,
    .fm-grid {
        grid-template-columns: 1fr;
        background-image: none;
    }

    .fm-usp-item,
    .fm-col {
        padding: 16px 0;
    }

    .fm-usp-item {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        border-bottom: 1px solid #eee;
    }

    .fm-col {
        border-bottom: 1px solid #eee;
        padding-bottom: 18px;
        margin-bottom: 8px;
    }
}

/* Giriş / Üyelik */

/* Sayfa kartı */
.login-body .p-g-mod-t-4,
.register-body .p-g-mod,
.user-body .p-g-mod {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 28px 28px 32px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.login-body .p-g-mod-t-4 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Üye olmadan devam */
.login-body .btn-without-login,
.login-body .p-g-mod-t-4 .btn-without-login {
    width: 100%;
    height: 46px;
    margin-bottom: 20px;
    border: 0 !important;
    border-radius: 8px;
    background: #111 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-body .btn-without-login:hover {
    background: #000 !important;
}

/* Tablar — Giriş / Üye Ol */
.login-body .p-g-mod-t-4 .nav-tabs,
.login-body .nav-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto !important;
    margin: 0 0 24px;
    padding: 4px;
    border: 1px solid #ebebeb !important;
    border-radius: 10px;
    background: #f6f6f6 !important;
}

.login-body .p-g-mod-t-4 .nav-tabs .nav-item,
.login-body .nav-tabs .nav-item {
    flex: none;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 8px;
}

.login-body .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0 12px;
    border: 0 !important;
    border-radius: 8px;
    background: transparent;
    color: #777;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.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,
.login-body .nav-tabs .nav-link.active {
    background: #fff !important;
    color: #111 !important;
    border: 0 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Form alanları — giriş + üyelik */
.login-form label,
.common-register-form label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.login-form .form-control,
.common-register-form .form-control,
.login-form .m-input,
.common-register-form .m-input {
    height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    font-size: 14px;
    color: #111;
}

.login-form .form-control:focus,
.common-register-form .form-control:focus {
    border-color: #111 !important;
    outline: none;
}

.login-form .text-danger,
.common-register-form .text-danger {
    color: #c00 !important;
}

/* Ana butonlar */
.login-form .btn-success,
.common-register-form .btn-success,
.login-body .p-g-mod-t-4 .btn-success {
    width: 100%;
    height: 48px;
    margin: 8px 0 12px;
    border: 0 !important;
    border-radius: 8px;
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-form .btn-success:hover,
.common-register-form .btn-success:hover {
    background: #000 !important;
}

/* Sosyal giriş */
.login-body .btn-fb-login,
.login-body .p-g-mod-t-4 .btn-fb-login,
.login-body .btn-google-login,
.login-body .p-g-mod-t-4 .btn-google-login {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-shadow: none !important;
    background-image: none !important;
}

.login-body .btn-fb-login,
.login-body .p-g-mod-t-4 .btn-fb-login {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}

.login-body .btn-google-login,
.login-body .p-g-mod-t-4 .btn-google-login {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #222 !important;
}

.login-body .btn-google-login i {
    color: #db4437;
}

.login-form .text-center a {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: underline;
}

.login-form .text-center a:hover {
    color: #111;
}

/* Üyelik açıklama alert */
.common-register-form .register_description {
    margin-bottom: 18px;
}

.common-register-form .register_description .alert-info {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #e8e8e8;
    border-left: 3px solid #111;
    border-radius: 8px;
    background: #fafafa;
    color: #444;
    font-size: 13px;
    line-height: 1.45;
}

/* Checkbox satırları */
.common-register-form .d-flex,
.common-register-form .mws-form-inline>div:not(.row) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px;
}

.common-register-form .ibutton {
    margin-top: 3px;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    accent-color: #111;
}

.common-register-form label[for] {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    color: #555;
}

.common-register-form label[for] a {
    color: #111;
    font-weight: 700;
    text-decoration: underline;
}

/* Yan panel (giris_yap_aciklama) */
.login-body .box .userPanelTitle,
.userPanelTitle {
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    background: #fff;
}

.userPanelTitle h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.userPanelTitle {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.userPanelTitle .btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.userPanelTitle .btn-primary {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

.userPanelTitle .btn-danger {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #111 !important;
}

/* Standalone üye ol sayfası (uyelik_formu) */
.register-body .common-register-form,
.user-body .common-register-form {
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 767px) {

    .login-body .p-g-mod-t-4,
    .register-body .p-g-mod {
        padding: 20px 16px 24px !important;
        border-radius: 10px;
    }

    .login-form .form-control,
    .common-register-form .form-control {
        height: 44px !important;
    }
}

/* ===== Statik / alt sayfalar — Morliva ===== */

/* Ortak içerik kartı */
.content-body .p-g-mod,
.page-body .p-g-mod,
.static-body .p-g-mod {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px 28px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Sol menü */
.list-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.list-menu a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.list-menu a:last-child {
    border-bottom: 0;
}

.list-menu a:hover,
.list-menu a.active {
    background: #f7f7f7;
    color: #111;
    font-weight: 700;
}

/* --- Ortak form dili --- */
.contact-form label,
.order-detail-form label,
.eft-form label {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.contact-form .form-control,
.order-detail-form .form-control,
.eft-form .form-control,
.contact-form .m-input,
.order-detail-form .m-input,
.eft-form .m-input {
    height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    font-size: 14px;
    color: #111;
}

.contact-form textarea.form-control {
    height: auto !important;
    min-height: 140px;
    padding: 12px 14px !important;
    resize: vertical;
}

.contact-form .form-control:focus,
.order-detail-form .form-control:focus,
.eft-form .form-control:focus {
    border-color: #111 !important;
    outline: none;
}

.contact-form .btn-success,
.order-detail-form .btn-success,
.eft-form .btn-success {
    min-width: 160px;
    height: 48px;
    padding: 0 22px;
    border: 0 !important;
    border-radius: 8px;
    background: #111 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn-success:hover,
.order-detail-form .btn-success:hover,
.eft-form .btn-success:hover {
    background: #000 !important;
}

/* --- İletişim --- */
.contact_content {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}

.contact_content p {
    margin-bottom: 10px;
}

.contact_content iframe,
.content-body iframe,
.page-body iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 320px;
    margin: 0 0 24px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

.contact-form {
    max-width: 640px;
}

.contact-form h6,
.contact-form>h2 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.contact-form hr {
    margin: 0 0 18px;
    border: 0;
    border-top: 1px solid #eee;
}

.contact-form .col-md-12 {
    margin-bottom: 12px;
}

/* --- SSS --- */
.faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq>.btn-secondary,
.faq>a.btn-secondary {
    width: 100%;
    height: auto;
    min-height: 48px;
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #e6e6e6 !important;
    border-radius: 8px;
    background: #fff !important;
    color: #111 !important;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    white-space: normal;
    box-shadow: none;
}

.faq>.btn-secondary:hover,
.faq>a.btn-secondary:hover,
.faq>.btn-secondary:not(.collapsed),
.faq>a.btn-secondary[aria-expanded="true"] {
    background: #f7f7f7 !important;
    border-color: #ccc !important;
    color: #111 !important;
}

.faq .collapse .card-body {
    margin-top: 0;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.faq .mb-1 {
    display: none;
}

/* --- Sipariş takip --- */
.order-detail-form {
    max-width: 480px;
}

.order-detail-response {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    font-size: 13px;
}

.order-detail-response:empty {
    display: none;
}

/* --- Havale bildirimi --- */
.eft-form {
    max-width: 520px;
    margin-bottom: 24px;
}

.eft-form .bootstrap-select .dropdown-toggle,
.eft-form select.form-control {
    height: 46px !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
}

.eft-form+.table-responsive,
.content-body .table-responsive {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
}

.eft-form+.table-responsive .table,
.content-body .table {
    margin: 0;
    font-size: 13px;
}

.eft-form+.table-responsive .table thead th,
.content-body .table thead th {
    background: #f7f7f7;
    border-color: #eee;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.eft-form+.table-responsive .table td,
.content-body .table td {
    border-color: #f0f0f0;
    color: #444;
    vertical-align: middle;
}

/* --- Genel CMS sayfa içeriği (sayfa.twig) --- */
.content-body .p-g-mod-body,
.page-body .p-g-mod-body {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.content-body .p-g-mod-body h1,
.content-body .p-g-mod-body h2,
.content-body .p-g-mod-body h3,
.page-body .p-g-mod-body h1,
.page-body .p-g-mod-body h2,
.page-body .p-g-mod-body h3 {
    color: #111;
    font-weight: 700;
    margin: 1.2em 0 0.5em;
}

.content-body .p-g-mod-body p,
.page-body .p-g-mod-body p {
    margin-bottom: 0.9em;
}

.content-body .p-g-mod-body a,
.page-body .p-g-mod-body a,
.contact_content a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
}

.content-body .p-g-mod-body img,
.page-body .p-g-mod-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 767px) {

    .content-body .p-g-mod,
    .page-body .p-g-mod {
        padding: 18px 16px !important;
        border-radius: 10px;
    }

    .contact_content iframe,
    .content-body iframe {
        height: 220px;
    }

    .contact-form .btn-success,
    .order-detail-form .btn-success,
    .eft-form .btn-success {
        width: 100%;
    }
}

/* Çarpı ile kapatılınca hover açık tutmasın */
.header-morliva .header-cart-hover.is-closed .dropdown-menu,
.header-morliva .header-cart-hover.is-closed:hover .dropdown-menu,
.header-morliva .header-cart-hover.is-closed .dropdown-menu:hover,
.header-morliva .header-cart-hover.is-closed .dropdown-menu.active,
header.desktop .header-cart-hover.is-closed .dropdown-menu,
header.desktop .header-cart-hover.is-closed:hover .dropdown-menu,
header.desktop .header-cart-hover.is-closed .dropdown-menu:hover,
header.desktop .header-cart-hover.is-closed .dropdown-menu.active {
    display: none !important;
}