/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PIL PAKETÄ° â€” MARKA KÄ°MLÄ°ÄÄ° VE FARKLILAÅMA
   Outfit font (modern, gÃ¼Ã§lÃ¼, Poppins'ten farklÄ±)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Primary colour palette â€“ warm teal & coral */
  --body-bg: #f5f5f5;
  --main-color: hsl(190, 78%, 45%);   /* teal */
  --main-color2: hsl(10, 85%, 55%);   /* coral */
  --transition-time: 0.3s;
  /* Marka renk referanslarÄ± */
  --pp-red: #d7000a;
  --pp-black: #111111;
  --pp-cream: #f8f6ee;
  /* Boxed layout */
  --boxed-width: 1480px;
  --boxed-bg: #ffffff;
}

body {
    background: var(--boxed-bg) !important;
    font-family: 'Outfit', 'Poppins', sans-serif !important;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOXED LAYOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.no-container {
    max-width: var(--boxed-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* Ä°Ã§ container'lar kutu iÃ§ine sÄ±ÄŸsÄ±n, taÅŸmasÄ±n */
.no-container .container,
.no-container .container-sm,
.no-container .container-md,
.no-container .container-lg,
.no-container .container-xl,
.no-container .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
}

/* Mobilde tam geniÅŸlik */
@media (max-width: 1500px) {
    .no-container {
        max-width: 100% !important;
        box-shadow: none;
    }
}

/* â”€â”€â”€ TÃœM METÄ°NLERE OUTFIT UYGULA â”€â”€â”€ */
h1, h2, h3, h4, h5, h6,
.nav-link, .navbar-nav, .under-category,
.card-product, .btn, .footer, input, select, textarea {
    font-family: 'Outfit', 'Poppins', sans-serif !important;
}



/* 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;
}

/* Header (Desktop) */
header.desktop  {
    background: #fff;
}

header.desktop .h-contact {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.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);
}

header.desktop .h-contact .info {
    height: 40px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

header.desktop .h-contact .info .item {
    font-size: 12px;
    color: var(--header-top-color);
    transition: all var(--transition-time);
    margin-right: 13px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-right: 1px solid #000;
    padding-right: 12px;
}

header.desktop .h-contact .info .item:hover{
    color: var(--header-top-color-hover);
}

header.desktop .h-contact .info .item i {
    margin-right: 6px;
    font-size: 13px;
}

header.desktop .h-contact .info .item.wp i {
    font-weight: normal;
    font-size: 20px;
}

header.desktop .h-contact .social-media {
    height: 40px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

header.desktop .h-contact .social-media a {
    margin-left: 15px;
    font-size: 14px;
    color: var(--header-top-color);
    transition: all 0.2s ease-in-out;
}

header.desktop .h-contact .social-media a:hover {
    transform: scale(1.15);
}

header.desktop .h-contact .social-media a.fb:hover {
    color: #1877f2 !important;
}

header.desktop .h-contact .social-media a.tw:hover {
    color: #000000 !important;
}

header.desktop .h-contact .social-media a.ins:hover {
    color: #e1306c !important;
}

header.desktop .h-contact .social-media a.yt:hover {
    color: #ff0000 !important;
}

header.desktop .h-contact .social-media a.lnk:hover {
    color: #0a66c2 !important;
}

header.desktop .h-contact .social-media a.pnt:hover {
    color: #bd081c !important;
}

header.desktop .header-bar .bar-favorite {
    margin-left: 15px;
    color: #555555 !important;
    font-size: 18px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease-in-out !important;
}

header.desktop .header-bar .bar-favorite:hover {
    color: #ff3344 !important;
    border-color: #ff3344 !important;
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(255, 51, 68, 0.1) !important;
}

header.desktop .header-area {
    height: 120px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

header.desktop .header-area.last {
    align-items: flex-end;
}

header.desktop .logo {
    align-items: flex-start;
    -webkit-align-items: flex-start; 
}

header.desktop .logo a img {
    max-height: 90px;
}

header.desktop .search {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    max-width: 470px;
    position: relative;
    height: 46px;
    padding: 3px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    transition: all 0.25s ease-in-out;
}

header.desktop .search:hover,
header.desktop .search:focus-within {
    border-color: var(--main-color2);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

header.desktop .search form {
    width: 100%;
}

header.desktop .search form .input-box {
    width: 100%;
    padding-right: 70px;
    box-sizing: border-box;
}

header.desktop .search form input {
    float: left;
    color: #333;
    font-weight: 400;
    width: 100%;
    font-size: 13px;
    border-color: transparent !important;
    border-width: 0 !important;
    background: transparent !important;
    height: 38px;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    padding-left: 16px;
}

.easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
}

.easy-autocomplete-container ul .eac-category, .easy-autocomplete-container ul li {
    font-size: 13px;
    padding: 3px 10px;
    border-bottom: 1px solid #ebebeb;
}

header.desktop .search form input::placeholder {
    color: #888;
}

header.desktop .search form .btn-send {
    position: absolute;
    width: 60px;
    height: 38px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color2)) !important;
    border-width: 0;
    color: #fff;
    right: 3px;
    border-radius: 20px;
    font-size: 15px;
    top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

header.desktop .search form .btn-send:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header.desktop .easy-autocomplete-container {
    top: 47px;
}

header.desktop .menu {
    background: var(--menu-bg-color, #f8f6ee);
    height: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

header.desktop .mega-menu {\r
    padding: 0;
    position: relative;
}

header.desktop .mega-menu .navbar-nav {
    flex-direction: row;
    height: 60px;
    justify-content: center;
    gap: 2px;
}

header.desktop .mega-menu .nav-item {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    position: relative;
    height: 100%;
}

header.desktop .mega-menu .nav-link {
    padding: 8px 13px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--menu-color, #111111);
    line-height: normal;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    white-space: nowrap !important;
    overflow: visible;
    text-overflow: clip;
    position: relative;
    padding-bottom: 10px !important;
    height: 100%;
}

/* Alt Ã§izgi animasyonu */
header.desktop .mega-menu .nav-link:not(.nav-link-discount)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--main-color2);
    border-radius: 2px 2px 0 0;
    transition: width 0.25s ease-in-out;
}

header.desktop .mega-menu .nav-link::after {
    display: none;
}

header.desktop .mega-menu .nav-link:not(.nav-link-discount):hover {
    color: var(--menu-color-hover, var(--main-color2)) !important;
    background-color: transparent;
}

header.desktop .mega-menu .nav-link:not(.nav-link-discount):hover::before {
    width: 70%;
}

header.desktop .mega-menu .nav-item:last-child .nav-link {
    border-right: 0;
}

/* â”€â”€â”€ Ä°ndirimli ÃœrÃ¼nler â€” Ã–zel MenÃ¼ Stili â”€â”€â”€ */
header.desktop .mega-menu .nav-link.nav-link-discount {
    height: auto !important;
    position: relative;
    background: linear-gradient(135deg, #d7000a 0%, #ff4d00 100%) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 6px 14px 6px 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px;
    overflow: hidden;
    animation: discountPulse 2.8s ease-in-out infinite;
}

header.desktop .mega-menu .nav-link.nav-link-discount::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.18);
    transform: skewX(-20deg);
    animation: discountShine 2.8s ease-in-out infinite;
    pointer-events: none;
}

header.desktop .mega-menu .nav-link.nav-link-discount:hover {
    background: linear-gradient(135deg, #b5000a 0%, #e03a00 100%) !important;
    color: #ffffff !important;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(215, 0, 10, 0.35) !important;
    background-color: transparent !important;
}

header.desktop .mega-menu .nav-link.nav-link-discount .under-category {
    color: #ffffff !important;
}

header.desktop .mega-menu .nav-link.nav-link-discount::after {
    display: none !important;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #d7000a;
    font-size: 9px;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 5px;
    line-height: 1;
    vertical-align: middle;
    flex-shrink: 0;
    animation: badgeBounce 1.4s ease-in-out infinite;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

@keyframes discountPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(215, 0, 10, 0.25); }
    50%       { box-shadow: 0 4px 20px rgba(215, 0, 10, 0.5); }
}

@keyframes discountShine {
    0%   { left: -75%; }
    50%, 100% { left: 125%; }
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.2); }
}

  
header.desktop .mega-menu .dropdown {
    position: static;
}

header.desktop .mega-menu .dropdown-menu {
    border-radius: 0 0 8px 8px;
    background-color: #fff;
    width: 100%;
    left: -1px;
    right: 0;
    top: 59px;
    position: absolute;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    border-top: 3px solid var(--main-color2);
}

header.desktop .mega-menu .dropdown:hover .dropdown-menu,
header.desktop .mega-menu .dropdown .dropdown-menu:hover,
header.desktop .mega-menu .dropdown.touch-open .dropdown-menu {
    display:block!important;
}

header.desktop .h-banner{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Mega Menu Container */
.mega-menu-container {
    padding: 24px 30px;
}

.mega-menu-container .sub-cat{
    margin-bottom: 20px;
}

.mega-menu-container .sub-title {
    color: #111111;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 8px;
    border-left: 3px solid var(--main-color2);
    padding-left: 8px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: all var(--transition-time);
}

.mega-menu-container .sub-title:hover{
    color: var(--main-color2);
}

.mega-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.mega-menu-container ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    margin-bottom: 3px;
}

.mega-menu-container ul li a {
    font-size: 13px;
    color: #555555;
    font-weight: 400;
    line-height: 22px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    padding-left: 10px;
    position: relative;
}

.mega-menu-container ul li a::before {
    content: "â€¢";
    color: #cccccc;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    line-height: 22px;
    transition: all 0.2s ease-in-out;
}

.mega-menu-container ul li a.sub-title {
    color: #111111;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 13px;
    border-left: 3px solid var(--main-color2);
    padding-left: 8px;
}

.mega-menu-container ul li a:hover {
    color: var(--main-color2);
    background-color: rgba(0, 0, 0, 0.03);
    transform: translateX(4px);
    padding-left: 14px;
}

.mega-menu-container ul li a:hover::before {
    color: var(--main-color2);
    content: "â€º";
    font-size: 14px;
    font-weight: bold;
}




/* 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;
    height: 100%;
    width: 100%;
}

.single-menu-container .single-menu li .sub-single-item {
    font-weight: 400;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: #000;
    transition: all 0.2s ease-in-out 0s;
    font-size: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.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;
    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: 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: var(--footer-bg);
}

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: #fff;
    text-align: center;
    margin-bottom: 15px;
}

footer .title-2 {
    color: #fff;
    font-size: 13px;
    
}

footer .title-3 {
    color: #fff;
    font-size: 17px;
    
}

footer .secure .description {
    color: #fff;
    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: #fff;
    font-size: 13px;
}

footer .info ul li a {
    display: block;
    color: #fff;
    font-size: 13px;
    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;
}

footer .bar a {
    color: #333;
    text-align: center;
}

footer .bar a:hover {
    color: var(--main-color);
}

footer .bar p {
    margin: 0;
    color: #000;
}

footer .footer-contact,
footer .footer-contact *{
    color: #fff;
}

/* 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;
    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 */

.back-page-mobile{
    display: none;
}

header.desktop .header-bar .bar-user {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    color: #333333 !important;
    height: 40px !important;
    margin-right: 10px;
    width: 155px !important;
    padding: 0 12px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.2s ease-in-out !important;
}

header.desktop .header-bar .bar-user:hover {
    border-color: var(--main-color2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

header.desktop .header-bar .bar-user .icon i {
    color: var(--main-color2) !important;
    font-size: 18px !important;
    margin-right: 4px !important;
    transition: all 0.2s ease-in-out !important;
}

header.desktop .header-bar .bar-user .link a {
    color: #333333 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    transition: all 0.2s ease-in-out !important;
}

header.desktop .header-bar .bar-user .link a:hover {
    color: var(--main-color2) !important;
}

header.desktop .header-bar .header-cart-hover .bar-cart {
    background: var(--main-color) !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    height: 40px !important;
    width: 150px !important;
    padding: 0 15px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease-in-out !important;
}

header.desktop .header-bar .header-cart-hover .bar-cart:hover {
    background: var(--main-color2) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

header.desktop .header-bar .header-cart-hover .bar-cart .icon i {
    color: #ffffff !important;
    font-size: 18px !important;
    margin-right: 6px !important;
}

header.desktop .header-bar .header-cart-hover .bar-cart .name {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.product-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px !important;
}

.product-quantity input {
    width: 40px;
    height: 25px;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    border: 0 !important;
}

.product-quantity .btn {
    background: #000000;
    color: #ffffff;
    border-color: transparent!important;
    font-size: 10px;
    font-weight: 500;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50% !important;
}

.product-body .product-favourite {
    font-size: 13px;
    background: #f7f7f7;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.product-price-group .prices .sale-price {
    font-size: 27px;
    font-weight: 600;
    color: var(--main-color2);
}

.product-profile-info li {
    margin: 10px 0;
}

.product-profile-1 h1.title {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 0;
}

.product-profile-1 .carousel .carousel-inner {
    border: 1px solid #eaeaea;
    border-radius: 20px;
    overflow: hidden;
}

.product-profile-1 .carousel .carousel-indicators li {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    border: 1px solid #eaeaea;
    margin-bottom: 5px;
    max-width: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.product-body .p-g-mod-base-content{
    border: 0 !important;
}

.card-product .card-product-inner .image-wrapper .image {
    display: block;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.pattern-group .p-g-mod-showcase .p-g-mod-header {
    height: 70px;
}

.pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: initial;
    color: var(--main-color2);
}

.pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info{
    display: flex;
    position: relative;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info:after {
    content: '';
    position: absolute;
    width: 10%;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--main-color2);
    z-index: 1;
}

.home-body .pattern-group .pattern-group-header {
    padding: 15px 0;
    display: flex;
    position: relative;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.home-body .pattern-group .pattern-group-header:after {
    content: '';
    position: absolute;
    width: 10%;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--main-color2);
    z-index: 1;
}

.pattern-group .pattern-group-header .p-g-h-info .p-g-h-i-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: initial;
    color: var(--main-color2);
}

.page-item.active .page-link{
    z-index: 3;
    color: #fff;
    background-color: #222;
    border-color: #222
}

.page-item .page-link{
    color: #222;
}

.p-g-mod-t-44 .banner-item .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.p-g-mod-t-44 .banner-item .image img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    transform: scale(1);
    transition: all var(--transition-time);
}

.p-g-mod-t-44 .banner-item:hover .image img {
    transform: scale(1.09);
    transition: all var(--transition-time);
}

.footer-top-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f6ee;
    padding: 0px 0 150px 0;
    position: relative;
    bottom: -100px;
    z-index: 1;
}

.wave{
    position: relative;
    z-index: 2;
}

.wave-2{
    position: relative;
    bottom: -100px;
}

.newsletter-content .newsletter-title {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: center;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 10px !important;
}

.home-headline{
    margin-top: -20px;
}

.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: #f8f6ee;
}

.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: #000;
}

.info-bar-1 .icons .icon-group .inf .name {
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: #000;
}

.info-bar-1 .icons .icon-group .inf .description {
    font-size: 13px;
    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: #eeeeee;
    border-radius: 5px;
    padding: 10px 20px;
}

.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: 17px;
    font-weight: 600;
    color: var(--main-color2);
    line-height: normal;
}

.card-product-content{
    text-align: center;
    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 .p-badge {
    height: 55px;
}

.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;
    align-content: center;
    cursor: pointer;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
}

.contact-info .contact-item i {
    margin-right: 10px;
    font-size: 23px;
    margin-bottom: 10px;
    transition: all var(--transition-time);
}

.contact-info .contact-item a {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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: 25px;
    height: 25px;
    color: #fff;
    font-size: 10px;
    border: 0;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 50%;
}

.card-product .card-product-inner .quantity .btn:hover {
    color: #fff;
    background: var(--main-color2);
}

.card-product .card-product-inner .quantity input {
    min-width: 25px;
    max-width: 40px;
    height: 25px;
    border-radius: 0;
    background: #fff;
    color: #000;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border: none !important;
}

.subtitle-img {
    max-height: 25px;
    margin-right: 7px;
}

header.desktop .mega-menu .nav-link {
    display: flex;
}

.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;
}

.single-menu-container .single-menu li .sub-single-item{
    padding: 0 10px;
}

/* 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;
    color: #fff;
}

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-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.newsletter-content .newsletter-title {
    color: #000;
    font-weight: 400;
    font-size: 19px;
    margin-bottom: 18px;
}
    
.newsletter-input {
    height: 40px;
    background: transparent !important;
    display: block;
    color: #000;
    position: relative;
    line-height: 23px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 15px;
    box-shadow: none;
    border: 1px solid #000000;
}

.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%;
    max-width: 400px;
}

/* SMS BÃ¼lteni */

.sms-newsletter-content .newsletter-title{
    color: #000;
    font-weight: 400;
    font-size: 19px;
    margin-bottom: 18px;
}
    
.sms-newsletter-input{
    height: 40px;
    background: transparent !important;
    display: block;
    color: #000;
    position: relative;
    line-height: 23px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 15px;
    box-shadow: none;
    border: 1px solid #000000;
}

.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-top-content .social-media a {
    color: #fff;
    font-size: 20px;
    margin-right: 20px;
    background: #000;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-time);
}

.footer-top-content .social-media a:hover{
    background: var(--main-color2);
    transition: all var(--transition-time);
}

.footer-top-content .social-media a:last-child{
    margin-right:0;
}

.card-product .card-product-inner .price-group .prices .list-price{
    text-decoration: line-through;
}

/* 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;
}

.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: 80%;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
}

.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);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    border-radius: 10px;
}

.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);
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    border-radius: 10px;
}

.product-buttons .btn-fast-buy:hover{
    background: var(--buy-now-bg-hover);
    border-color: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}

.product-buttons .btn-wp {
    font-size: 14px;
    background: #33aa29;
    border-color: #33aa29;
    color: #fff;
    font-weight: 600;
    margin: 10px 10px 10px 0;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    border-radius: 10px;
}

.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: 0;
    z-index: 2;
}

.product-favourite-kart a{
    font-size: 20px;
}
/* Header  */

header.desktop .header-bar .bar-link .icon{
    position:relative;
}

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{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: normal;
    font-weight: 400;
    transition: all var(--transition-time);
}

header.desktop .header-bar .bar-link a{
    color: #fff;
}

header.desktop .header-bar .bar-user .link{
    display: flex;
    flex-direction: column;
}

header.desktop .header-bar .bar-link i{
    margin-right: 7px;
    font-size: 23px;
}

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 {
    overflow: hidden;
    opacity: 0;
    position: absolute;
    top: 0px;
    right: -30px;
    transition: all 0.4s;
    background: #fff;
    z-index: 9;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}

.card-product .right-to-left .button-group{
    background: transparent;
    padding: 7px;
}

.card-product .right-to-left .cart-group{
    display: flex;
    flex-direction: column;
}

.card-product .right-to-left .cart-group a{
    padding: 0;
    margin: 5px 0;
}

.card-product .right-to-left .cart-group a i{
    font-size: 17px;
    transition: all var(--transition-time);
}

.card-product .right-to-left .cart-group a:hover i{
    color: var(--main-color);
}

.card-product:hover .right-to-left{
    opacity:1;
    right: 0px;
    transition: all var(--transition-time);
}

.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: 991px) {
    
    .back-page-mobile{
        display: flex;
    }
    
    .back-page-mobile .btn {
        width: 100%;
        background: #fac213;
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
    }
    
    .back-page-mobile .btn i {
        font-size: 11px;
        margin-right: 8px;
    }
    
    .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%;
        font-weight: 600;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .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;
        margin-right: 0;
    }
    
    .product-buttons .btn-cart {
        flex: auto;
        margin-left: 0;
        width: 100%;
        margin-right: 0;
    }
    
    .product-buttons .btn-wp {
        width: 100%;
    }
    
    .card-product .right-to-left{
        display: none !important;
    }
    
    .product-view-select{
        display: none;
    }
    
    .pattern-group .p-g-mod-t-26 .p-g-mod-body .buttons .btn-secondary {
        width: auto;
        margin: 5px;
        border-radius: 3px;
    }
    
    .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;
    }
    
    .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: #fff;
        border: 1px solid #fff;
        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 #fff;
        margin-bottom: 15px;
        color: #fff !important;
        padding: 10px;
    }

    footer .info ul {
        margin: 0;
    }

    footer .info ul li {
        color: #fff !important;
    }

    footer .info ul li a {
        color: #fff;
    }

    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;
}

  
header.desktop .header-cart-hover {
    position: relative;
    display: flex;
    flex: 1;
}

header.desktop .header-cart-hover .dropdown-menu {
    border: 0;
    border-radius: 0;
    background-color: #fff;
    width: 300px;
    left: inherit;
    right: 0;
    top: 41px;
    position: absolute;
    border: 2px solid #ececec;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    margin-top:0 !important;
    padding-top:0 !important;
    padding-bottom: 0;
}

header.desktop .header-cart-hover .dropdown-menu .top-header{
    background: #f7f7f7;
    display: flex;
    justify-content: space-evenly;
    padding: 5px 0;
}

header.desktop .header-cart-hover .dropdown-menu .top-header .title{
    font-size: 14px;
    padding: 5px 0;
    font-weight: 500;
}   

header.desktop .header-cart-hover:hover .dropdown-menu, 
header.desktop .header-cart-hover .dropdown-menu:hover {
    display:block!important;
}
 
header.desktop .header-cart-hover .dropdown-menu ul.user-links {
    margin: 0;
    padding: 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 10px;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li:hover{
    background: #f7f7f7;
    
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li a {
    display: block;
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #ebebeb;
    padding: 5px 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li:last-child a{
    border-bottom: 0px;
}

header.desktop .header-cart-hover .dropdown-menu ul.user-links li a i {
    margin-right: 5px;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links {
    margin: 0;
    padding: 0;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

header.desktop .header-cart-hover .dropdown-menu ul.auth-links li a {
    display: block;
    text-align: center;
    padding: 10px 5px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
}


header.desktop .header-cart-hover .dropdown-menu ul.auth-links li a i {
    margin-right: 10px;
}

header.desktop .header-cart-hover .btn-remove{
    background: #dedede;
    border: none;
    color: #000;
    font-size: 12px;
    width: 25px;
    height: 25px;
    border-radius: 20px;
    display: flex;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}


.header-cart-summary-1 {
        
}

.header-cart-summary-1 .table th {
    font-size: 12px !important;
    font-weight: 500;
        
}
        
.header-cart-summary-1 .buttons {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
}

.header-cart-summary-1 .buttons .btn {
    font-size: 12px !important;
    padding: 5px 3px !important;
    margin: 5px;
    background: var(--add-cart-list-bg);
    color: var(--add-cart-list);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn:hover {
    background: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 {
    background: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn-color-2:hover{
    background: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 i{
    font-size: 8px;
    padding-left: 3px;
}


.ajax-shopping-cart {
    padding: 15px;
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.ajax-cart-empty{
    font-size: 13px !important;
    text-align: center;
    padding: 20px 0;
}

.ajax-shopping-cart .product {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    padding-top: 10px;
}

.ajax-shopping-cart .product:last-child{
    display: flex;
    margin-bottom: 10px;
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.ajax-shopping-cart .product .image {
    flex: 2;
}

.ajax-shopping-cart .product .price {
    flex: 2;
    font-size: 13px;
    text-align: right;
}

.ajax-shopping-cart .product .info {
    flex: 3;
    text-align:right;
}

.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;
    }
}

.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;
    } 
}

.under-category {
    text-transform: capitalize !important;
}


/* =====================================================
   ÃœRÃœN DETAY SAYFASI â€“ AKSIYON BUTONLARI & SEKMELER
   ===================================================== */

/* â”€â”€â”€ 1. Gereksiz Aksiyon ButonlarÄ±nÄ± Gizle â”€â”€â”€ */
/* Tavsiye Et */
.product-body .p-g-mod-t-12 .social-share a[onclick*="tavsiye"],
.product-body .p-g-mod-t-12 .social-share a[href*="tavsiye"],
.product-body .social-share-special .jssocials-share-googleplus,
.product-body .p-g-mod-body .social-share a[title*="Tavsiye"],
.product-body .p-g-mod-body .social-share a[title*="tavsiye"] {
    display: none !important;
}

/* Telefonla SipariÅŸ */
.product-body .p-g-mod-body .social-share a[title*="Telefon"],
.product-body .p-g-mod-body .social-share a[title*="telefon"],
.product-body .p-g-mod-body .social-share a[href*="telefon"] {
    display: none !important;
}

/* ÃœrÃ¼n Ã–nerileri (aksiyon Ã§ubuÄŸundaki) */
.product-body .p-g-mod-body .social-share a[title*="neri"],
.product-body .p-g-mod-body .social-share a[href*="oneri"] {
    display: none !important;
}

/* KarÅŸÄ±laÅŸtÄ±r */
.product-body .p-g-mod-body .social-share a[title*="arÅŸÄ±laÅŸtÄ±r"],
.product-body .p-g-mod-body .social-share a[title*="Karsilastir"],
.product-body .p-g-mod-body .social-share a[href*="karsilastir"] {
    display: none !important;
}

/* Yorum Yaz â€“ sekme iÃ§ine taÅŸÄ±nacak */
.product-body .p-g-mod-body .social-share a[title*="Yorum Yaz"],
.product-body .p-g-mod-body .social-share a[title*="yorum"] {
    display: none !important;
}

/* â”€â”€â”€ 2. Kalan Aksiyon Ã‡ubuÄŸu ModernleÅŸtirme â”€â”€â”€ */
.product-body .p-g-mod-t-12 .p-g-mod-body .social-share,
.product-body .p-g-mod-t-12 .p-g-mod-body {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 8px !important;
}

.product-body .p-g-mod-t-12 .social-share {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    border-top: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-body .p-g-mod-t-12 .social-share a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px !important;
    border-radius: 24px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    background: #f5f5f5 !important;
    border: 1px solid #e8e8e8 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.product-body .p-g-mod-t-12 .social-share a:hover {
    background: #fff !important;
    border-color: var(--main-color) !important;
    color: var(--main-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-1px);
}

.product-body .p-g-mod-t-12 .social-share a i {
    font-size: 14px !important;
}

/* â”€â”€â”€ 3. Favori Butonu Yeniden TasarÄ±m â”€â”€â”€ */
.product-body .product-favourite {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 12px !important;
    border-radius: 0 !important;
}

.product-body .product-favourite a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px !important;
    border-radius: 28px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #666 !important;
    background: #fafafa !important;
    border: 1px solid #e8e8e8 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1 !important;
}

.product-body .product-favourite a:hover {
    color: #e74c5e !important;
    background: #fff5f6 !important;
    border-color: #e74c5e !important;
    box-shadow: 0 4px 16px rgba(231, 76, 94, 0.15) !important;
    transform: translateY(-1px);
}

.product-body .product-favourite a i.fa-heart,
.product-body .product-favourite a i.far.fa-heart {
    font-size: 16px !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-body .product-favourite a:hover i {
    transform: scale(1.2) !important;
    color: #e74c5e !important;
}

/* Favorilerdeyken */
.product-body .product-favourite a.remove-favorite {
    color: #e74c5e !important;
    background: #fff5f6 !important;
    border-color: #e74c5e !important;
}

.product-body .product-favourite a.remove-favorite i {
    color: #e74c5e !important;
}


/* â”€â”€â”€ 4. Sekmeler ModernleÅŸtirme â”€â”€â”€ */
.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav {
    border: none !important;
    background: #fafafa !important;
    border-radius: 16px !important;
    padding: 6px !important;
    margin-bottom: 16px !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
    gap: 4px;
    height: auto !important;
    padding: 0 !important;
    flex-wrap: wrap;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-link,
.pattern-group .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
    border: none !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666 !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-link:hover {
    color: var(--main-color) !important;
    background: rgba(0, 0, 0, 0.03) !important;
}

.product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-link.active {
    color: #fff !important;
    background: var(--main-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.product-details-tab-product-details-tab-colorful .tab-content {
    border: none !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f0f0f0 !important;
}


/* â”€â”€â”€ 5. Sosyal PaylaÅŸÄ±m ButonlarÄ± ModernleÅŸtirme â”€â”€â”€ */
.product-body .social-share-special {
    margin-top: 16px !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.product-body .social-share-special .jssocials-shares {
    display: flex !important;
    gap: 8px;
    flex-wrap: wrap;
}

.product-body .social-share-special .jssocials-share {
    margin: 0 !important;
}

.product-body .social-share-special .jssocials-share-link {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0.7;
    border: 1px solid #e8e8e8 !important;
    background: #fafafa !important;
    color: #555 !important;
    padding: 0 !important;
}

.product-body .social-share-special .jssocials-share-link:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Twitter/X */
.product-body .social-share-special .jssocials-share-twitter .jssocials-share-link:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Facebook */
.product-body .social-share-special .jssocials-share-facebook .jssocials-share-link:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #fff !important;
}

/* LinkedIn */
.product-body .social-share-special .jssocials-share-linkedin .jssocials-share-link:hover {
    background: #0a66c2 !important;
    border-color: #0a66c2 !important;
    color: #fff !important;
}

/* Pinterest */
.product-body .social-share-special .jssocials-share-pinterest .jssocials-share-link:hover {
    background: #bd081c !important;
    border-color: #bd081c !important;
    color: #fff !important;
}

/* WhatsApp */
.product-body .social-share-special .jssocials-share-whatsapp .jssocials-share-link:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

/* Google Plus gizle (devre dÄ±ÅŸÄ± platform) */
.product-body .social-share-special .jssocials-share-googleplus {
    display: none !important;
}


/* â”€â”€â”€ 6. ÃœrÃ¼n Bilgi AlanÄ± GeliÅŸtirmeleri â”€â”€â”€ */

/* Badge'ler modernleÅŸtirme */
.product-badges {
    margin-top: 20px !important;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.product-badges .p-badge {
    height: auto !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: #fafafa !important;
    border: 1px solid #eeeeee !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    font-size: 12px !important;
    color: #555 !important;
    transition: all 0.25s ease !important;
    flex: 0 0 auto;
}

.product-badges .p-badge:hover {
    background: #fff !important;
    border-color: var(--main-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-1px);
}

.product-badges .p-badge i {
    font-size: 16px !important;
    color: var(--main-color) !important;
}

.product-badges .p-badge.shipping-fast i {
    color: #22c55e !important;
}

.product-badges .p-badge.door-payment i {
    color: #3b82f6 !important;
}

.product-badges .p-badge.credit-card i {
    color: #f59e0b !important;
}


/* â”€â”€â”€ 7. Fiyat AlanÄ± GeliÅŸtirme â”€â”€â”€ */
.product-price-group {
    background: #fafbfc !important;
    border: 1px solid #eef0f2 !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    margin: 12px 0 !important;
    position: relative;
}

.product-price-group .discount {
    position: absolute !important;
    top: -10px !important;
    right: 12px !important;
    background: linear-gradient(135deg, #ff4757, #ff6b81) !important;
    color: #fff !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.product-price-group .discount .rate {
    font-weight: 800 !important;
}

.product-price-group .prices .sale-price {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: var(--main-color2) !important;
    letter-spacing: -0.5px;
}

.product-price-group .prices .list-price {
    font-size: 15px !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.product-price-group .free-cargo-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px;
    background: #ecfdf5 !important;
    color: #059669 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
    border: 1px solid #a7f3d0 !important;
}


/* â”€â”€â”€ 8. ÃœrÃ¼n ButonlarÄ± GeliÅŸtirme â”€â”€â”€ */
.product-body .product-buttons {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px !important;
    align-items: center;
}

.product-body .product-buttons .btn-cart {
    flex: 1;
    min-width: 160px;
    height: 50px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
}

.product-body .product-buttons .btn-cart:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.product-body .product-buttons .btn-fast-buy {
    flex: 0 0 auto;
    height: 50px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 24px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
}

.product-body .product-buttons .btn-fast-buy:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Adet seÃ§ici modernleÅŸtirme */
.product-body .product-quantity {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    height: 50px !important;
    background: #fafafa !important;
}

.product-body .product-quantity .btn {
    width: 42px !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    color: #555 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
}

.product-body .product-quantity .btn:hover {
    background: #f0f0f0 !important;
    color: var(--main-color) !important;
}

.product-body .product-quantity input {
    width: 50px !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    height: 100% !important;
    padding: 0 !important;
}


/* â”€â”€â”€ 9. ÃœrÃ¼n BaÅŸlÄ±ÄŸÄ± GeliÅŸtirme â”€â”€â”€ */
.product-profile-1 h1.title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.3px;
}


/* â”€â”€â”€ 10. ÃœrÃ¼n Bilgi Listesi â”€â”€â”€ */
.product-profile-info {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.product-profile-info li {
    margin: 6px 0 !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

.product-profile-info li .value {
    color: #333 !important;
    font-weight: 500 !important;
}

.product-profile-info li a {
    color: var(--main-color) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.product-profile-info li a:hover {
    color: var(--main-color2) !important;
}


/* â”€â”€â”€ 11. Galeri / Carousel Ä°yileÅŸtirme â”€â”€â”€ */
.product-profile-1 .carousel .carousel-inner {
    border: 1px solid #f0f0f0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.product-profile-1 .carousel .carousel-indicators li {
    border: 2px solid #eee !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    opacity: 0.7;
}

.product-profile-1 .carousel .carousel-indicators li:hover {
    opacity: 1;
    border-color: #ccc !important;
}

.product-profile-1 .carousel .carousel-indicators li.active {
    border-color: var(--main-color) !important;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}


/* â”€â”€â”€ 12. Stok Durumu GÃ¶sterimi â”€â”€â”€ */
.product-profile-info .text-success {
    color: #059669 !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-profile-info .text-success::before {
    content: "âœ“";
    font-size: 11px;
    background: #059669;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.product-profile-info .text-danger {
    color: #dc2626 !important;
    font-weight: 600 !important;
}


/* â”€â”€â”€ 13. Responsive â€“ Mobil DÃ¼zenlemeler â”€â”€â”€ */
@media (max-width: 991px) {
    .product-body .p-g-mod-t-12 .social-share {
        justify-content: center;
    }

    .product-body .p-g-mod-t-12 .social-share a {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav {
        border-radius: 12px !important;
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav .nav-link {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    .product-details-tab-product-details-tab-colorful .tab-content {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .product-badges .p-badge {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }

    .product-price-group {
        padding: 14px 16px !important;
        border-radius: 12px !important;
    }

    .product-price-group .prices .sale-price {
        font-size: 24px !important;
    }

    .product-body .product-buttons .btn-cart,
    .product-body .product-buttons .btn-fast-buy {
        height: 46px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
    }

    .product-profile-1 h1.title {
        font-size: 18px !important;
    }

    .product-body .social-share-special .jssocials-share-link {
        width: 34px !important;
        height: 34px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 575px) {
    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav::-webkit-scrollbar {
        display: none;
    }

    .product-body .product-buttons {
        gap: 8px;
    }

    .product-body .product-buttons .btn-cart {
        min-width: 0;
    }

    .product-body .product-favourite a {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
}


/* â”€â”€â”€ 14. PaylaÅŸ Butonu Stili â”€â”€â”€ */
.product-body .social-share-special .jssocials-share-link-copy .jssocials-share-link {
    background: linear-gradient(135deg, var(--main-color), var(--main-color2)) !important;
    border-color: transparent !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.product-body .social-share-special .jssocials-share-link-copy .jssocials-share-link:hover {
    transform: translateY(-2px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}


/* =====================================================
   SEPET SAYFASI DÃ–NÃœÅÃœM ORANI GELÄ°ÅTÄ°RMELERÄ°
   ===================================================== */

/* â”€â”€â”€ 1. Kargo Bedava Ä°lerleme Ã‡ubuÄŸu â”€â”€â”€ */
.free-shipping-container {
    background: #f4fdf6;
    border: 1px solid #d1f2d6;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.free-shipping-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.free-shipping-header i {
    font-size: 18px;
    color: var(--main-color2);
}

.free-shipping-header i.text-success {
    color: #27ae60 !important;
}

/* Kamyon ikonu animasyonu */
@keyframes truckBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
.shipping-icon-anim {
    animation: truckBounce 1.5s infinite ease-in-out;
}

.free-shipping-bar-bg {
    background: #eaedf1;
    border-radius: 8px;
    height: 16px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.free-shipping-bar-fill {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    height: 100%;
    border-radius: 8px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.free-shipping-percent {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding-right: 8px;
    line-height: 16px;
}

/* â”€â”€â”€ 2. GÃ¼ven Rozetleri â”€â”€â”€ */
.cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.badge-item i {
    font-size: 18px;
    color: #27ae60;
    background: #e8f8f0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    font-size: 11px;
    color: #333;
    line-height: 1.2;
}

.badge-text span {
    font-size: 9px;
    color: #777;
}

/* â”€â”€â”€ 3. CanlÄ± Destek Widget'Ä± â”€â”€â”€ */
.cart-support-box {
    margin-top: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 18px;
}

/* â”€â”€â”€ 4. Ã–deme LogolarÄ± â”€â”€â”€ */
.cart-payment-logos {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.payment-icons-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #95a5a6;
    margin-bottom: 8px;
}

.troy-badge {
    font-size: 10px;
    font-weight: 800;
    border: 1.5px solid #95a5a6;
    padding: 1px 4px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.safe-checkout-footer {
    font-size: 10px;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* â”€â”€â”€ 5. Mobil GÃ¶rÃ¼nÃ¼m Modernizasyonu (Responsive Table to Card) â”€â”€â”€ */
@media (max-width: 991px) {
    /* table-responsive overflow kaldÄ±r */
    .shopping-cart-1 .table-responsive {
        overflow: visible !important;
    }

    /* Tablo yapÄ±sÄ±nÄ± dÃ¼zleÅŸtir */
    .shopping-cart-1 table,
    .shopping-cart-1 tbody {
        display: block !important;
        width: 100% !important;
        border: none !important;
    }

    .shopping-cart-1 thead,
    .shopping-cart-1 th {
        display: none !important;
    }

    /* TR: sadece bloklayÄ±cÄ±, gÃ¶rsel kart stili YOK */
    .shopping-cart-1 tr {
        display: block !important;
        width: 100% !important;
        margin-bottom: 16px;
        position: relative;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    /* TD: her biri kartÄ±n bir parÃ§asÄ± */
    .shopping-cart-1 td {
        display: block !important;
        width: 100% !important;
        background: #fff;
        border-left: 1px solid #eef0f3 !important;
        border-right: 1px solid #eef0f3 !important;
        border-top: none !important;
        border-bottom: none !important;
        padding: 0 16px !important;
        margin: 0 !important;
        text-align: left;
        box-sizing: border-box;
    }

    /* Ä°lk td: kartÄ±n Ã¼st kÄ±smÄ± */
    .shopping-cart-1 td:first-child {
        border-top: 1px solid #eef0f3 !important;
        border-radius: 12px 12px 0 0;
        padding-top: 16px !important;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.02);
    }

    /* Son td: kartÄ±n alt kÄ±smÄ± */
    .shopping-cart-1 td:last-child {
        border-bottom: 1px solid #eef0f3 !important;
        border-radius: 0 0 12px 12px;
        padding-bottom: 16px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    /* Tek td varsa tam yuvarlak */
    .shopping-cart-1 td:first-child:last-child {
        border-radius: 12px;
        border: 1px solid #eef0f3 !important;
    }

    /* â”€â”€â”€ ÃœrÃ¼n Bilgisi AlanÄ± â”€â”€â”€ */
    .shopping-cart-1 .td-product {
        padding-bottom: 12px !important;
    }

    .shopping-cart-1 .product {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .shopping-cart-1 .product .image {
        width: 80px !important;
        height: 80px !important;
        flex-shrink: 0;
        border: 1px solid #f2f2f2;
        border-radius: 8px;
        overflow: hidden;
    }

    .shopping-cart-1 .product .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .shopping-cart-1 .product .p-info {
        flex-grow: 1;
        padding-right: 36px; /* Sil butonu iÃ§in boÅŸluk */
    }

    .shopping-cart-1 .product .p-info .name {
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 6px;
    }

    .shopping-cart-1 .product .p-info .variants {
        font-size: 11px;
        color: #7f8c8d;
        margin-bottom: 8px;
    }

    /* â”€â”€â”€ Sil Butonu (td-product'a gÃ¶re konumlandÄ±r) â”€â”€â”€ */
    .shopping-cart-1 .td-product {
        position: relative;
    }

    .shopping-cart-1 .btn-remove {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 0 !important;
        width: 28px;
        height: 28px;
        padding: 0 !important;
        background: #fff9f9 !important;
        border: 1px solid #fbc4c4 !important;
        color: #e74c3c !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .shopping-cart-1 .btn-remove::before {
        content: "\f2ed";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 12px;
    }

    .shopping-cart-1 .btn-remove:hover {
        background: #e74c3c !important;
        border-color: #e74c3c !important;
        color: #fff !important;
    }

    /* â”€â”€â”€ Birim Fiyat â”€â”€â”€ */
    .shopping-cart-1 .td-price {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-top: 1px dashed #eef0f3 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .shopping-cart-1 .td-price::before {
        content: "Birim Fiyat:";
        font-size: 12px;
        font-weight: 500;
        color: #7f8c8d;
    }

    .shopping-cart-1 .td-price .value {
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
    }

    /* â”€â”€â”€ Miktar SeÃ§ici â”€â”€â”€ */
    .shopping-cart-1 .td-quantity {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-top: 1px dashed #eef0f3 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .shopping-cart-1 .td-quantity::before {
        content: "Miktar:";
        font-size: 12px;
        font-weight: 500;
        color: #7f8c8d;
    }

    .shopping-cart-1 .td-quantity .product-quantity {
        margin: 0 !important;
        display: inline-flex;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        height: 32px;
        background: #fff;
    }

    .shopping-cart-1 .td-quantity .product-quantity .btn {
        width: 32px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: none;
        color: #555;
    }

    .shopping-cart-1 .td-quantity .product-quantity input {
        width: 40px !important;
        height: 100% !important;
        text-align: center;
        border: none !important;
        font-size: 13px !important;
        font-weight: 600;
        padding: 0 !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .shopping-cart-1 .product-quantity-type {
        display: none !important;
    }

    /* â”€â”€â”€ Kargo (Aktif ise) â”€â”€â”€ */
    .shopping-cart-1 .td-cargo {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-top: 1px dashed #eef0f3 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .shopping-cart-1 .td-cargo .label {
        font-size: 12px !important;
        font-weight: 500 !important;
        color: #7f8c8d !important;
    }

    .shopping-cart-1 .td-cargo .value {
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
    }

    /* â”€â”€â”€ Toplam Tutar â”€â”€â”€ */
    .shopping-cart-1 .td-total-price {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-top: 1px dashed #eef0f3 !important;
        padding-top: 10px !important;
    }

    .shopping-cart-1 .td-total-price::before {
        content: "Tutar:";
        font-size: 12px;
        font-weight: 500;
        color: #7f8c8d;
    }

    .shopping-cart-1 .td-total-price .value {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: var(--main-color2) !important;
    }

    /* â”€â”€â”€ 6. Mobil YapÄ±ÅŸkan (Sticky) AlÄ±ÅŸveriÅŸi Tamamla Butonu â”€â”€â”€ */
    .cart-checkout-sticky-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px !important;
        z-index: 999;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    .cart-checkout-sticky-wrapper .btn-complete {
        width: 100%;
        max-width: 500px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px !important;
        font-weight: 600;
        border-radius: 8px;
        margin: 0 !important;
    }

    /* Sayfa altÄ±nda boÅŸluk bÄ±rakalÄ±m ki sticky buton iÃ§erikleri Ã¶rtmesin */
    body.cart-body {
        padding-bottom: calc(85px + env(safe-area-inset-bottom)) !important;
    }
}


/* =====================================================
   FOOTER MODERNÄ°ZASYONU & TASARIM GÃœNCELLEMELERÄ°
   ===================================================== */

/* â”€â”€â”€ 1. Yeni E-BÃ¼lten & Ãœst Footer AlanÄ± â”€â”€â”€ */
.footer-top-content-modern {
    background-color: #f8f6ee;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #eae5d4;
    position: relative;
    z-index: 2;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Glassmorphism BÃ¼lten KartlarÄ± */
.newsletter-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(181, 169, 131, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(181, 169, 131, 0.18);
}

.newsletter-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.newsletter-card-header i {
    font-size: 28px;
    color: var(--main-color2);
    background: rgba(215, 0, 10, 0.05);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-title-modern strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.newsletter-title-modern span {
    font-size: 12px;
    color: #7f8c8d;
}

/* Form ElemanlarÄ± TasarÄ±mÄ± */
.newsletter-form-modern, 
.sms-newsletter-form-modern {
    display: flex;
    gap: 10px;
}

.newsletter-form-modern .form-control,
.sms-newsletter-form-modern .form-control {
    border: 1.5px solid #eae5d4 !important;
    border-radius: 10px !important;
    height: 46px !important;
    font-size: 13px !important;
    background: #fff !important;
    padding: 10px 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.newsletter-form-modern .form-control:focus,
.sms-newsletter-form-modern .form-control:focus {
    border-color: var(--main-color2) !important;
    background: #fff !important;
}

.btn-submit-modern {
    background: linear-gradient(135deg, var(--main-color), var(--main-color2)) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 0 24px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
    height: 46px;
}

.btn-submit-modern:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(215, 0, 10, 0.3) !important;
    opacity: 0.95;
}

/* â”€â”€â”€ 2. Sosyal Medya Ä°konlarÄ± Modernizasyonu â”€â”€â”€ */
.footer-social-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #eae5d4;
    padding-top: 30px;
}

.social-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.social-media-modern {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #eae5d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d !important;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.social-link:hover {
    transform: translateY(-4px);
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Sosyal Medya Hover Renkleri */
.social-link.fb:hover { background: #3b5998 !important; }
.social-link.tw:hover { background: #1da1f2 !important; }
.social-link.ins:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.social-link.yt:hover { background: #ff0000 !important; }
.social-link.lnk:hover { background: #0077b5 !important; }
.social-link.pnt:hover { background: #bd081c !important; }

/* â”€â”€â”€ 3. Link Hover AnimasyonlarÄ± â”€â”€â”€ */
footer ul li {
    margin-bottom: 10px;
    list-style: none;
}

footer ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding-left: 0;
}

footer ul li a:hover {
    color: var(--main-color2) !important;
    padding-left: 6px;
}

/* â”€â”€â”€ 4. Ä°letiÅŸim KartlarÄ± â”€â”€â”€ */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-modern .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.contact-info-modern .contact-item a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-modern .contact-item a:hover {
    color: var(--main-color2) !important;
}

.contact-info-modern .contact-item i {
    font-size: 16px;
    color: var(--main-color2);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* â”€â”€â”€ 5. Ã–deme LogolarÄ± Monochrome â”€â”€â”€ */
footer .right-image img,
.payment-icons-fallback i {
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.3s ease;
}

footer .right-image img:hover,
.payment-icons-fallback i:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* â”€â”€â”€ 6. Mobil Responsive AyarlarÄ± â”€â”€â”€ */
@media (max-width: 991px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-social-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    footer .col-md-4,
    footer .col-md-8 {
        text-align: center !important;
        padding-right: 15px !important;
        margin-bottom: 30px;
    }
    
    .contact-info-modern {
        align-items: center;
    }
    
    .contact-info-modern .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
}


/* =====================================================
   KATEGORÄ° SAYFASI VE ÃœRÃœN KARTLARI OPTÄ°MÄ°ZASYONU
   ===================================================== */

/* â”€â”€â”€ 1. ÃœrÃ¼n KartÄ± Resim Hover Zoom â”€â”€â”€ */
.card-product .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.card-product .image-wrapper img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease !important;
}

.card-product:hover .image-wrapper img {
    transform: scale(1.05);
}

/* â”€â”€â”€ 2. Modern Rozet TasarÄ±mlarÄ± â”€â”€â”€ */
/* Ä°ndirim Rozeti */
.card-product .price-group .discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.2) !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Kargo Bedava Etiketi */
.card-product .free-cargo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.15) !important;
    z-index: 10;
    border: none !important;
}

/* â”€â”€â”€ 3. Kategori AÃ§Ä±klamasÄ± DevamÄ±nÄ± Oku BÃ¶lÃ¼mÃ¼ â”€â”€â”€ */
.category-description-wrapper {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #eae5d4;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.category-detail-single.description-collapsed {
    height: 120px !important;
    max-height: 120px !important;
    overflow: hidden !important;
    position: relative;
    transition: all 0.4s ease-out;
}

.category-detail-single.description-expanded {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative;
    transition: all 0.5s ease-in;
}

.category-detail-single .description-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-detail-single.description-expanded .description-fade {
    opacity: 0;
}

.btn-read-more-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 15px auto 0 auto !important;
    background: #f8f9fa !important;
    border: 1px solid #eaeaea !important;
    color: #2c3e50 !important;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-read-more-modern:hover {
    background: #eaeaea !important;
    color: var(--main-color2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-read-more-modern i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* â”€â”€â”€ 4. Mobil 2 SÃ¼tunlu Grid (Borderless / EÅŸit Kart TasarÄ±mÄ±) â”€â”€â”€ */
@media (max-width: 767px) {
    /* Mobil 2'li ÃœrÃ¼n Grid Sistemi */
    .category-detail-single + .row,
    .category-products .row,
    .catalog-products .row,
    .product-list .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 5px !important;
    }
    
    /* Bootstrap varsayÄ±lan sÃ¼tun geniÅŸliklerini sÄ±fÄ±rlayalÄ±m */
    .category-detail-single + .row > [class*="col-"],
    .category-products .row > [class*="col-"],
    .catalog-products .row > [class*="col-"],
    .product-list .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* KartlarÄ±n Mobilde EÅŸit BoyutlandÄ±rÄ±lmasÄ± */
    .card-product {
        border: 1px solid #f0f0f0 !important;
        border-radius: 12px !important;
        padding: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 100% !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.01) !important;
    }
    
    .card-product .card-product-inner {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: space-between !important;
    }
    
    .card-product .image-wrapper {
        margin-bottom: 6px !important;
        border-radius: 6px !important;
    }
    
    /* Kart BaÅŸlÄ±klarÄ±nÄ±n Mobilde 2 SatÄ±rla Sabitlenmesi */
    .card-product .title {
        font-size: 11.5px !important;
        height: 32px !important;
        line-height: 1.4 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        margin-bottom: 4px !important;
        font-weight: 500 !important;
    }
    
    .card-product .price-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        margin-bottom: 6px !important;
    }
    
    .card-product .prices {
        flex-wrap: wrap !important;
        gap: 2px !important;
        align-items: center !important;
    }
    
    .card-product .sale-price {
        font-size: 12.5px !important;
        font-weight: 700 !important;
    }
    
    .card-product .list-price {
        font-size: 9.5px !important;
    }
    
    .card-product .discount {
        font-size: 8.5px !important;
        padding: 2px 5px !important;
    }
    
    /* Mobil Sepete Ekle Butonu */
    .card-product .buttons .btn-cart {
        width: 100% !important;
        font-size: 10.5px !important;
        height: 34px !important;
        line-height: 34px !important;
        padding: 0 !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .card-product .buttons .btn-cart i {
        font-size: 10.5px !important;
        margin-right: 4px !important;
    }
    
    .card-product .quantity,
    .card-product .product-unit {
        display: none !important; /* Mobil kartta yer kazanmak iÃ§in adet kutusunu gizliyoruz */
    }
}

/* =====================================================
   PIL UYUMLULUK VE GRUP KONTROL BANNER STILI
   ===================================================== */
.cart-compatibility-alert {
    background: #fffdf5 !important;
    border: 1px solid #ffeaa7 !important;
    border-radius: 12px !important;
    padding: 18px 20px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.08) !important;
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
    color: #5d4037 !important;
}

.cart-compatibility-alert .alert-icon-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.cart-compatibility-alert .pulse-warning-icon {
    font-size: 24px !important;
    color: #d35400 !important;
    animation: warningPulse 2s infinite alternate;
}

@keyframes warningPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(211, 84, 0, 0.2)); }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(211, 84, 0, 0.6)); }
}

.cart-compatibility-alert .alert-content-wrapper {
    flex-grow: 1;
}

.cart-compatibility-alert .alert-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    color: #d35400 !important;
}

.cart-compatibility-alert p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    color: #5d4037 !important;
}

.cart-compatibility-alert .conflict-list {
    margin: 0 !important;
    padding-left: 20px !important;
    list-style-type: disc !important;
}

.cart-compatibility-alert .conflict-list li {
    font-size: 13.5px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
}

.cart-compatibility-alert .conflict-list li:last-child {
    margin-bottom: 0 !important;
}

.cart-compatibility-alert .conflict-details {
    margin-top: 4px !important;
    padding: 6px 12px !important;
    background: rgba(211, 84, 0, 0.04) !important;
    border-left: 3px solid #d35400 !important;
    border-radius: 4px !important;
    font-family: inherit !important;
    line-height: 1.6 !important;
}

.cart-compatibility-alert .badge {
    display: inline-block !important;
    padding: 2px 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    margin-right: 4px !important;
}

.cart-compatibility-alert .badge-braketli {
    background: #e8f8f5 !important;
    color: #117a65 !important;
    border: 1px solid #a3e4d7 !important;
}

.cart-compatibility-alert .badge-braketsiz {
    background: #fdf2e9 !important;
    color: #a04000 !important;
    border: 1px solid #f5cba7 !important;
}

@media (max-width: 991px) {
    .cart-compatibility-alert {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 14px 16px !important;
    }
    
    .cart-compatibility-alert .pulse-warning-icon {
        font-size: 20px !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BOÅ SEPET SAYFASI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.empty-cart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 80px;
    text-align: center;
    min-height: 520px;
    background: linear-gradient(160deg, #fff5f5 0%, #ffffff 60%);
    border-radius: 16px;
    margin: 24px 0;
}

/* SVG Ä°llÃ¼strasyon */
.empty-cart-illustration {
    margin-bottom: 36px;
}

.empty-cart-svg {
    width: 260px;
    height: 230px;
    filter: drop-shadow(0 12px 32px rgba(215, 0, 10, 0.12));
}

/* Sepet gÃ¶vdesi hafif sallanma */
.cart-body-group {
    animation: cartSway 3.5s ease-in-out infinite;
    transform-origin: 164px 117px;
}

.sad-face-group {
    animation: cartSway 3.5s ease-in-out infinite;
    transform-origin: 164px 117px;
}

@keyframes cartSway {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-3deg); }
    75%       { transform: rotate(3deg); }
}

/* GÃ¶zyaÅŸÄ± */
.tear-drop {
    animation: tearFall 2.4s ease-in-out infinite;
}

@keyframes tearFall {
    0%, 40%  { opacity: 0; transform: translateY(0); }
    60%      { opacity: 1; transform: translateY(4px); }
    100%     { opacity: 0; transform: translateY(12px); }
}

/* Floating elementler */
.float-1 {
    animation: floatAnim 4s ease-in-out infinite;
}
.float-2 {
    animation: floatAnim 3.2s ease-in-out 0.8s infinite;
}
.float-3 {
    animation: floatAnim 3.8s ease-in-out 0.4s infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-8px); }
}

/* Metin */
.empty-cart-title {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.empty-cart-desc {
    font-size: 15px;
    color: #777777;
    margin-bottom: 32px;
    max-width: 400px;
    line-height: 1.6;
}

/* CTA Butonlar */
.empty-cart-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-empty-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #d7000a 0%, #ff3300 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(215, 0, 10, 0.30);
    transition: all 0.25s ease-in-out;
    letter-spacing: 0.2px;
}

.btn-empty-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(215, 0, 10, 0.42);
    color: #ffffff !important;
}

.btn-empty-primary i {
    font-size: 16px;
}

.btn-empty-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    color: #d7000a !important;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    border: 2px solid #d7000a;
    transition: all 0.25s ease-in-out;
}

.btn-empty-secondary:hover {
    background: #d7000a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(215, 0, 10, 0.25);
}

.btn-empty-secondary i {
    font-size: 15px;
}

/* GÃ¼ven Rozetleri */
.empty-cart-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #f0e8e8;
    padding-top: 28px;
}

.ecb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecb-item i {
    font-size: 22px;
    color: #d7000a;
    opacity: 0.7;
}

/* Mobil */
@media (max-width: 768px) {
    .empty-cart-wrapper {
        padding: 40px 16px 60px;
        min-height: 460px;
    }

    .empty-cart-svg {
        width: 200px;
        height: 180px;
    }

    .empty-cart-title {
        font-size: 19px;
    }

    .empty-cart-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-empty-primary,
    .btn-empty-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .empty-cart-badges {
        gap: 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PIL PAKETÄ° â€” MARKA KÄ°MLÄ°ÄÄ° STÄ°LLERÄ°
   Pil Evreni'nden farklÄ±laÅŸma paketi
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1. Ãœst Marka Kimlik BandÄ± â”€â”€ */
.brand-identity-bar {
    background: var(--pp-black, #111111);
    color: #ffffff;
    padding: 7px 0;
    font-family: 'Outfit', sans-serif;
    border-bottom: 2px solid var(--pp-red, #d7000a);
}

.bib-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.bib-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.bib-badge i {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.bib-badge-highlight {
    color: #ffffff !important;
    font-weight: 700 !important;
    background: var(--pp-red, #d7000a);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.bib-badge-highlight i {
    color: #ffcc44 !important;
}

/* â”€â”€ 2. Logo Tagline â”€â”€ */
.logo-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none !important;
}

.logo-tagline {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pp-red, #d7000a);
    margin-top: 3px;
    opacity: 0.85;
    line-height: 1;
}

/* â”€â”€ 3. ÃœrÃ¼n KartÄ± Garanti Rozeti â”€â”€ */
.card-product {
    position: relative;
}

.pp-guarantee-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    width: 30px;
    height: 30px;
    background: var(--pp-red, #d7000a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(215, 0, 10, 0.35);
    transition: transform 0.2s ease;
    cursor: default;
}

.pp-guarantee-badge:hover {
    transform: scale(1.15);
}

.pp-guarantee-badge::after {
    content: 'Orijinal ÃœrÃ¼n';
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pp-guarantee-badge:hover::after {
    opacity: 1;
}

/* â”€â”€ 4. Footer Marka AÃ§Ä±klamasÄ± â”€â”€ */
.footer-brand-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.60);
    margin-top: 14px;
    margin-bottom: 20px;
}

/* â”€â”€ 5. Footer GÃ¼ven Rozetleri â”€â”€ */
.footer-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.ftb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 8px 10px;
    transition: background 0.2s;
}

.ftb-item:hover {
    background: rgba(215, 0, 10, 0.15);
    border-color: rgba(215, 0, 10, 0.3);
}

.ftb-item i {
    font-size: 14px;
    color: var(--pp-red, #d7000a);
    flex-shrink: 0;
}

.ftb-item span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* â”€â”€ Mobil Uyarlamalar â”€â”€ */
@media (max-width: 991px) {
    .brand-identity-bar {
        display: none; /* Mobilde sabit header ile Ã§akÄ±ÅŸmamasÄ± iÃ§in */
    }
    .logo-tagline {
        display: none;
    }
    .pp-guarantee-badge::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-trust-badges {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-desc {
        font-size: 12px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STOK DURUM STÄ°LLERÄ°
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* ÃœrÃ¼n Profili â€” TÃ¼keniyor UyarÄ± BarÄ± */
.profil-low-stock-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d7000a, #ff4500);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    animation: lowStockPulse 1.8s ease-in-out infinite;
    box-shadow: 0 4px 14px rgba(215, 0, 10, 0.28);
}

.profil-low-stock-bar i {
    font-size: 16px;
    animation: firePulse 0.9s ease-in-out infinite alternate;
    flex-shrink: 0;
}

/* ÃœrÃ¼n KartÄ± â€” Az Stok Rozeti */
.low-stock-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #d7000a, #ff4500);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    letter-spacing: 0.4px;
    border-radius: 0 0 6px 6px;
    animation: lowStockPulse 1.8s ease-in-out infinite;
    width: 100%;
}


.low-stock-badge i {
    font-size: 10px;
    animation: firePulse 0.9s ease-in-out infinite alternate;
}

@keyframes lowStockPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.82; }
}

@keyframes firePulse {
    from { transform: scale(1) rotate(-5deg); }
    to   { transform: scale(1.25) rotate(5deg); }
}

/* ÃœrÃ¼n Profili â€” Az Stok Rozeti */
.badge-low-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #d7000a, #ff4500);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    animation: lowStockPulse 1.8s ease-in-out infinite;
    box-shadow: 0 3px 12px rgba(215, 0, 10, 0.3);
}

.badge-low-stock i {
    animation: firePulse 0.9s ease-in-out infinite alternate;
}

/* Stokta Mevcut */
.text-success i.fa-check-circle {
    margin-right: 3px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBÄ°L STÄ°CKY SEPETE EKLE BUTONU
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mobile-sticky-cart {
    display: none; /* Sadece mobilde */
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 2px solid var(--pp-red, #d7000a);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px 16px;
}

.mobile-sticky-cart.msc-show {
    bottom: 0;
}

.msc-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.msc-product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.msc-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.msc-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--pp-red, #d7000a);
    line-height: 1.3;
}

.msc-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--pp-red, #d7000a);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.msc-btn:active {
    transform: scale(0.96);
    background: #b50008;
}

@media (max-width: 991px) {
    .mobile-sticky-cart { display: block; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Ä°NDÄ°RÄ°M ORANI ROZETÄ° â€” ÃœRÃœN KARTI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.discount-badge-new {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pp-red, #d7000a);
    color: #fff;
    border-radius: 8px;
    padding: 5px 10px;
    min-width: 52px;
    margin-bottom: 6px;
    line-height: 1;
    box-shadow: 0 3px 8px rgba(215, 0, 10, 0.25);
}

.discount-pct {
    font-size: 18px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.discount-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
    margin-top: 1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SAYFANIN ÃœSTÃœNE DÃ–N BUTONU
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.back-to-top-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--pp-black, #111);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}

.back-to-top-btn.btt-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top-btn:hover {
    background: var(--pp-red, #d7000a);
}

@media (max-width: 991px) {
    .back-to-top-btn {
        bottom: 72px; /* sticky cart'Ä±n Ã¼stÃ¼nde */
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   404 SAYFASI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.error-404-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.error-404-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.error-404-illustration svg {
    filter: drop-shadow(0 8px 24px rgba(215,0,10,0.10));
}

.error-code {
    font-size: 96px;
    font-weight: 900;
    color: var(--pp-red, #d7000a);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -4px;
    opacity: 0.15;
    margin-bottom: -20px;
}

.error-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.error-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-404-primary, .btn-404-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-404-primary {
    background: var(--pp-red, #d7000a);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(215,0,10,0.3);
}

.btn-404-primary:hover {
    background: #b50008;
    transform: translateY(-2px);
}

.btn-404-secondary {
    background: #f5f5f5;
    color: #333 !important;
    border: 1px solid #e0e0e0;
}

.btn-404-secondary:hover {
    background: #ebebeb;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .error-404-inner { gap: 30px; }
    .error-title { font-size: 22px; }
    .btn-404-primary, .btn-404-secondary { width: 100%; justify-content: center; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRE-FOOTER â€” GÃœVEN ÅERÄ°DÄ°
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pp-prefooter {
    background: #1a1a1a;
    border-top: 3px solid #d7000a;
    padding: 24px 0;
}
.pp-prefooter-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pp-prefooter-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-width: 180px;
}
.pp-prefooter-item:last-child { border-right: none; }
.pp-pf-icon {
    width: 42px; height: 42px;
    background: rgba(245,197,24,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pp-pf-icon i { color: #f5c518; font-size: 18px; }
.pp-pf-text strong { display: block; color: #fff; font-size: 13px; font-weight: 700; font-family: Outfit,sans-serif; line-height: 1.3; }
.pp-pf-text span { display: block; color: rgba(255,255,255,0.45); font-size: 11px; }
.pp-prefooter-newsletter { flex: 1.5; min-width: 280px; }
.pp-newsletter-inline { display: flex; align-items: center; gap: 8px; width: 100%; }
.pp-newsletter-inline i { color: #f5c518; font-size: 18px; flex-shrink: 0; }
.pp-newsletter-inline input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 9px 14px; color: #fff; font-size: 13px; font-family: Outfit,sans-serif; outline: none; transition: border 0.2s; }
.pp-newsletter-inline input::placeholder { color: rgba(255,255,255,0.4); }
.pp-newsletter-inline input:focus { border-color: #f5c518; }
.pp-newsletter-inline button { background: #d7000a; border: none; border-radius: 8px; color: #fff; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.pp-newsletter-inline button:hover { background: #b50008; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER ANA BÃ–LÃœM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pp-footer { background: #111111; padding-top: 56px; font-family: Outfit,sans-serif; }
.pp-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pp-footer-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #f5c518; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.pp-footer-col-title-sm { margin-top: 28px; font-size: 11px; }
.pp-footer-toggle-icon { display: none; font-size: 11px; color: rgba(255,255,255,0.4); }
.pp-footer-logo img { max-height: 48px; width: auto; margin-bottom: 16px; display: block; }
.pp-footer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }
.pp-footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pp-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.65) !important; text-decoration: none !important; font-size: 13px; transition: color 0.2s; line-height: 1.5; }
.pp-footer-contact-item:hover { color: #f5c518 !important; }
.pp-footer-contact-item i { color: #f5c518; font-size: 13px; margin-top: 2px; flex-shrink: 0; width: 14px; }
.pp-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6) !important; font-size: 14px; text-decoration: none !important; transition: background 0.2s,color 0.2s; border: 1px solid rgba(255,255,255,0.08); }
.pp-footer-social a:hover { background: #f5c518; color: #111 !important; border-color: #f5c518; }
.pp-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-footer-links li a { color: rgba(255,255,255,0.55) !important; font-size: 13px; text-decoration: none !important; transition: color 0.2s,padding-left 0.2s; display: block; line-height: 1.5; }
.pp-footer-links li a:hover { color: #f5c518 !important; padding-left: 6px; }
.pp-footer-payment { margin-bottom: 20px; }
.pp-footer-payment img { max-width: 100%; filter: brightness(0.7); transition: filter 0.2s; }
.pp-footer-payment img:hover { filter: brightness(1); }
.pp-footer-apps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pp-footer-apps img { max-width: 130px; opacity: 0.75; transition: opacity 0.2s; }
.pp-footer-apps img:hover { opacity: 1; }
.pp-footer-certs { display: flex; flex-direction: column; gap: 8px; }
.pp-cert-item { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.pp-cert-item i { color: #f5c518; font-size: 11px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER ALT BAR â€” SARI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pp-footer-bar { background: #f5c518; padding: 14px 0; }
.pp-footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.pp-footer-bar-copy { font-size: 12px; color: #111; font-weight: 500; }
.pp-footer-bar-copy a { color: #111 !important; text-decoration: none !important; font-weight: 600; }
.pp-footer-bar-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(0,0,0,0.6); font-weight: 500; }
.pp-footer-bar-tag { background: #111; color: #f5c518; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .pp-prefooter-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .pp-prefooter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .pp-prefooter-newsletter { grid-column: 1 / -1; }
    .pp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pp-footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
    .pp-prefooter-grid { grid-template-columns: 1fr; }
    .pp-footer-grid { grid-template-columns: 1fr; }
    .pp-footer-toggle-icon { display: block; }
    .pp-footer-links { display: none; padding-bottom: 12px; }
    .pp-footer-links.open { display: flex; }
    .pp-footer-bar-inner { flex-direction: column; text-align: center; gap: 8px; }
}

/* Yasal Linkler BandÄ± */
.pp-footer-legal {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
}
.pp-footer-legal-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    align-items: center;
}
.pp-footer-legal-inner a {
    color: rgba(255,255,255,0.35) !important;
    font-size: 11px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s;
    font-family: Outfit, sans-serif;
}
.pp-footer-legal-inner a:hover {
    color: #f5c518 !important;
}
.pp-footer-legal-inner a + a::before {
    content: "Â·";
    margin-right: 20px;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
}

/* =======================================================
   404 SAYFASI BOXED YAPISI
   ======================================================= */
.e404-body .pattern-group-p-404 > .container,
.e404-body .pattern-group:has(.pp-404-page) > .container,
.e404-body .p-g-b-c-inner:has(.pp-404-page) > .container {
    max-width: var(--boxed-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1500px) {
    .e404-body .pattern-group-p-404 > .container,
    .e404-body .pattern-group:has(.pp-404-page) > .container,
    .e404-body .p-g-b-c-inner:has(.pp-404-page) > .container {
        max-width: 100% !important;
        box-shadow: none;
    }
}

/* =======================================================
   KAMPANYA BARI BOXED YAPISI
   ======================================================= */
.addons-campaign-bar {
    max-width: var(--boxed-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-shadow: 0 0 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1050;
}

@media (max-width: 1500px) {
    .addons-campaign-bar {
        max-width: 100% !important;
        box-shadow: none;
    }
}


/* ═══════════════════════════════════════════════════════
   KATEGORİ İKONLARI (DESKTOP & MOBİL)
   ═══════════════════════════════════════════════════════ */
/* Desktop Mega Menu */
.under-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.under-category::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--main-color2, #d7000a);
    transition: transform 0.2s;
}
.nav-item:hover .under-category::before {
    transform: scale(1.15);
}

/* Desktop Single Menu */
.sub-single-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sub-single-item::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--main-color2, #d7000a);
    transition: transform 0.2s;
}
.single-menu li:hover .sub-single-item::before {
    transform: scale(1.15);
}

/* Mobil Menü */
.sidebar-menu li a::before,
.sidebar-menu-type-2 li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    margin-right: 10px;
    color: var(--main-color, #111111);
    display: inline-block;
    width: 18px;
    text-align: center;
}

/* İkon Atamaları */
/* 1. Batarya Malzemesi (ID: 3) -> fa-tools (\f7d9) */
#mega-menu-3 .under-category::before,
#single-menu-3::before,
.sidebar-menu .sc-3 > a::before,
.sidebar-menu-type-2 .sc-3 > a::before {
    content: "\f7d9";
}

/* 2. Şarj Cihazı (ID: 35) -> fa-plug (\f1e6) */
#mega-menu-35 .under-category::before,
#single-menu-35::before,
.sidebar-menu .sc-35 > a::before,
.sidebar-menu-type-2 .sc-35 > a::before {
    content: "\f1e6";
}

/* 3. Endüstriyel Piller (ID: 6) -> fa-battery-full (\f240) */
#mega-menu-6 .under-category::before,
#single-menu-6::before,
.sidebar-menu .sc-6 > a::before,
.sidebar-menu-type-2 .sc-6 > a::before {
    content: "\f240";
}

/* 4. Kullanıcı Pilleri (ID: 93) -> fa-battery-half (\f242) */
#mega-menu-93 .under-category::before,
#single-menu-93::before,
.sidebar-menu .sc-93 > a::before,
.sidebar-menu-type-2 .sc-93 > a::before {
    content: "\f242";
}

/* 5. Gelecek Ürünler (ID: 151) -> fa-clock (\f017) */
#mega-menu-151 .under-category::before,
#single-menu-151::before,
.sidebar-menu .sc-151 > a::before,
.sidebar-menu-type-2 .sc-151 > a::before {
    content: "\f017";
}

/* 6. Akü (ID: 8) -> fa-car-battery (\f5df) */
#mega-menu-8 .under-category::before,
#single-menu-8::before,
.sidebar-menu .sc-8 > a::before,
.sidebar-menu-type-2 .sc-8 > a::before {
    content: "\f5df";
}

/* 7. İndirimli Ürünler (ID: 99) -> fa-percent (\f295) */
#mega-menu-99 .under-category::before,
#single-menu-99::before,
.sidebar-menu .sc-99 > a::before,
.sidebar-menu-type-2 .sc-99 > a::before {
    content: "\f295";
}

/* 8. Pil Şarj Devreleri (ID: 10) -> fa-microchip (\f2db) */
#mega-menu-10 .under-category::before,
#single-menu-10::before,
.sidebar-menu .sc-10 > a::before,
.sidebar-menu-type-2 .sc-10 > a::before {
    content: "\f2db";
}

/* 9. Pil Punta (ID: 37) -> fa-bolt (\f0e7) */
#mega-menu-37 .under-category::before,
#single-menu-37::before,
.sidebar-menu .sc-37 > a::before,
.sidebar-menu-type-2 .sc-37 > a::before {
    content: "\f0e7";
}

/* 10. Geliştirme Kartları (ID: 90) -> fa-microchip (\f2db) */
#mega-menu-90 .under-category::before,
#single-menu-90::before,
.sidebar-menu .sc-90 > a::before,
.sidebar-menu-type-2 .sc-90 > a::before {
    content: "\f2db";
}

/* 11. Hazır Lityum İyon Batarya (ID: 2) -> fa-battery-full (\f240) */
#mega-menu-2 .under-category::before,
#single-menu-2::before,
.sidebar-menu .sc-2 > a::before,
.sidebar-menu-type-2 .sc-2 > a::before {
    content: "\f240";
}

/* 12. Hazır Lifepo4 Batarya (ID: 42) -> fa-battery-full (\f240) */
#mega-menu-42 .under-category::before,
#single-menu-42::before,
.sidebar-menu .sc-42 > a::before,
.sidebar-menu-type-2 .sc-42 > a::before {
    content: "\f240";
}

/* 13. Demonte Lityum İyon Batarya (ID: 57) -> fa-cogs (\f085) */
#mega-menu-57 .under-category::before,
#single-menu-57::before,
.sidebar-menu .sc-57 > a::before,
.sidebar-menu-type-2 .sc-57 > a::before {
    content: "\f085";
}

/* 14. Demonte Lifepo4 Batarya (ID: 72) -> fa-cogs (\f085) */
#mega-menu-72 .under-category::before,
#single-menu-72::before,
.sidebar-menu .sc-72 > a::before,
.sidebar-menu-type-2 .sc-72 > a::before {
    content: "\f085";
}

/* 15. Test Cihazları (ID: 33) -> fa-tachometer-alt (\f3fd) */
#mega-menu-33 .under-category::before,
#single-menu-33::before,
.sidebar-menu .sc-33 > a::before,
.sidebar-menu-type-2 .sc-33 > a::before {
    content: "\f3fd";
}
