/* ========== MODERN ULTRA THEME ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Modern Color Palette */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --secondary-50: #f5f3ff;
    --secondary-100: #ede9fe;
    --secondary-200: #ddd6fe;
    --secondary-300: #c4b5fd;
    --secondary-400: #a78bfa;
    --secondary-500: #8b5cf6;
    --secondary-600: #7c3aed;
    --secondary-700: #6d28d9;
    --secondary-800: #5b21b6;
    --secondary-900: #4c1d95;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --success-500: #10b981;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    /* Additional Modern Colors */
    --accent-50: #f0fdfa;
    --accent-100: #ccfbf1;
    --accent-200: #99f6e4;
    --accent-300: #5eead4;
    --accent-400: #2dd4bf;
    --accent-500: #14b8a6;
    --accent-600: #0d9488;
    --accent-700: #0f766e;
    --accent-800: #115e59;
    --accent-900: #134e4a;
    
    --info-500: #3b82f6;
    
    /* Gradient Colors */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Modern Spacing System */
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-7: 1.75rem;   /* 28px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-9: 2.25rem;   /* 36px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-11: 2.75rem;  /* 44px */
    --spacing-12: 3rem;     /* 48px */
    
    /* Modern Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-3xl: 2rem;     /* 32px */
    --radius-full: 9999px;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Modern Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Modern Typography */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    
    /* Z-index System */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--neutral-100);
    background-attachment: fixed;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: var(--font-family);
    position: relative;
    line-height: 1.5;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
    }
}

.gradient-animation {
    animation: gradientShift 3s ease infinite;
}
.homebottomcontainer .pattern-group-body {
    border: 2px solid var(--neutral-100);
    padding: var(--spacing-6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-6);
    background: white;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease-out;
}

.homebottomcontainer .pattern-group-body:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--neutral-200);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-body .snow-effect {
    position:fixed !important;
    height:100%;
    width:100%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:999999;
    pointer-events:none;
    background-image: url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-53284798-sw500sh500.webp"),
      url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-44118424-sw300sh300.webp"),
      url("https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-66650421-sw400sh400.webp");
    background-size: 160px;
    opacity: .9;
    font-family: helvetica, arial;
    -webkit-animation: snow 20s linear infinite;
    -moz-animation: snow 20s linear infinite;
    -ms-animation: snow 20s linear infinite;
    animation: snow 8s linear infinite;
  }

  /* ------------------Snow Kar Effecti Kayframess-------------*/
  
  /* Animation */
  
  @keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-moz-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-webkit-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  
  @-ms-keyframes snow {
    0% {
      background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
      background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
  }
  

/* Reset */
a {
    color: var(--primary-600);
    text-decoration: none;
    transition: all var(--transition-normal);
}

a:hover {
    text-decoration: none;
    color: var(--primary-800);
    transform: translateY(-2px);
}

a:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* 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: white;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: var(--spacing-4) var(--spacing-6);
}

header.desktop::before {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-down {
    animation: slideDown var(--transition-normal) cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.shimmer {
    animation: shimmer 2s infinite;
}

header.desktop .h-contact {
    background: #ffffff;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-languages-1 .dropdown-toggle {
    color: #b6b6b6;
    transition: all var(--transition-time);
}

.dropdown-languages-1 .dropdown-toggle:hover{
    color: var(--main-color);
}

.dropdown-currencies-1 .dropdown-toggle {
    color: #b6b6b6;
    transition: all var(--transition-time);
}

.dropdown-currencies-1 .dropdown-toggle:hover{
    color: var(--main-color);
}

header.desktop .h-contact .info {
    height: 35px;
    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: 13px;
    color: var(--header-top-color);
    transition: all var(--transition-time);
    margin-right: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

header.desktop .h-contact .info .item:hover{
    color: #f00;
}
header.desktop .h-contact .info .itemMail:hover{
    color: #0b00ff;
}

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: 35px;
    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);
}

header.desktop .h-contact .social-media a:hover{
    color: var(--header-top-color-hover);
    transition: all var(--transition-time);
}

header.desktop .header-area {
    height: 80px;
    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;
    width: 170px;
}

header.desktop .logo a img {
    max-height: 60px;
}

header.desktop .search {
    width: 100%;
    position: relative;
    transition: all var(--transition-time);
}

header.desktop .search form {
    width: 100%;
}

header.desktop .search form .input-box {
    width: 100%;
    padding-right: 45px;
    box-sizing: border-box;
}
.header-area .search input{
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-area .search input:focus {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    transform: translateY(-1px);
    outline: none;
    background: #fff;
    border-color: rgba(99, 102, 241, 0.2);
}
.header-area .search input::placeholder{
    font-size:12px;
}

header.desktop .search form input {
    float: left;
    color: #333;
    font-weight: 500;
    width: 100%;
    font-size: 14px;
    border: none;
    border-radius: 20px!important;
    background: rgba(255, 255, 255, 0.95) !important;
    height: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding-left: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.desktop .search form input:hover {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.15);
}

header.desktop .search form input:focus {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    outline: none;
    background: #fff !important;
    border-color: rgba(99, 102, 241, 0.2);
}
.mobile-search .easy-autocomplete{
    width:100%!important;
    
}

.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: #666;
}

header.desktop .search:hover,
header.desktop .search:focus,
header.desktop .search:active{
    border-color: var(--main-color2);
}

section.h-center {
    height: 100px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    animation: fadeIn 0.8s ease-out;
}

section.h-center:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

header.desktop .search form .btn-send {
    position: absolute;
    right:50px ;
    height: 40px;
    border-width: 0;
    color: var(--main-color2);
    border-radius: 0;
    font-size: 16px;
    top: 0px;
    transition: all var(--transition-time);
}

header.desktop .easy-autocomplete-container {
    top: 47px;
}

header.desktop .menu {
    background: var(--menu-bg-color);
    height: 48px;
    border: 1px solid #ebebeb;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid #f4f4f4;
    box-shadow: 0 0 12px -13px rgb(0 0 0 / 75%);
}

header.desktop .mega-menu {
    padding: 0;
    position: relative;
}

header.desktop .mega-menu .navbar-nav {
    flex-direction: row;
    height: 45px;
    justify-content: space-evenly;
}

header.desktop .mega-menu .nav-item {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
}

header.desktop .mega-menu .nav-link {
    padding: 0;
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--menu-color);
    line-height: normal;
    font-weight: 600;
    font-size: 14px;
    padding: 0 5px;
    white-space: unset !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-time);
}

header.desktop .mega-menu .nav-link::after {
    display: none;
}

header.desktop .mega-menu .nav-link:hover {
    color: var(--menu-color-hover);
}

/*header.desktop .mega-menu .nav-item:last-child .nav-link {
    border-right: 0;
    color: red;
    animation: blink 1s infinite;
}
*/
header.desktop .mega-menu .nav-item:nth-child() {
    background: linear-gradient(90deg,rgba(245,255,0,1) 0%,rgba(0,194,255,1) 25%,rgba(255,0,249,1) 50%,rgba(112,255,131,1) 75%,rgba(245,197,19,1) 100%);
    background-size: 900% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 9s linear infinite
}

@keyframes blink{
     0%{opacity:2;}
     50%{opacity:0;}
     100%{opacity:2;}
}
  
header.desktop .mega-menu .dropdown {
    position: static;
}

header.desktop .mega-menu .dropdown-menu {
    border-radius: 0;
    background-color: #fff;
    width:100%;
    left:-1px;
    right:0;
    top:45px;
    position: absolute;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 5%);
    border: 1px solid #ebebeb;
    border-top: 0;
}

header.desktop .mega-menu .dropdown:hover .dropdown-menu, 
header.desktop .mega-menu .dropdown .dropdown-menu:hover {
    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: 20px;
}

.mega-menu-container .sub-cat{
    margin-bottom: 15px;
}

.mega-menu-container .sub-title {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
    transition: all var(--transition-time);
}

.mega-menu-container .sub-title:hover{
    color: var(--main-color);
}

.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;
}

.mega-menu-container ul li a {
    font-size: 13px;
    color: #222;
    font-weight: 400;
    line-height: 25px;
    transition: var(--transition-time);
}


.mega-menu-container ul li a.sub-title {
    color: #333;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
}

.mega-menu-container ul li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}




/* 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: 46px;
    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;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 100;
}

.single-menu-container .single-menu li .sub-single-item{
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--menu-color);
    line-height: normal;
    font-weight: 600;
    font-size: 14px;
    padding: 0 5px;
    white-space: unset !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all var(--transition-time);
}

.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;
    top: 45px;
    min-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: rgba(255, 255, 255, 0.98);
    height: 60px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.mobile .left {
    width: 40%;
    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: 20%;
    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 i {
    color: #000;
    font-size: 30px;
    margin-right: 10px;
}

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: red;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.mobile .mobile-search {
    padding: 0;
    background: #fff;
    max-height: 40px;
    border: 1px solid #bfbfbf;
    border-radius: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}
header.mobile .menuName {
    color: #fff;
    font-size: 18px;
}

header.mobile .mobile-search form {
    width: 100%;
}

header.mobile .mobile-search form .input-box {
    width: 100%;
}

header.mobile .mobile-search form input {
    float: left;
    color: #444;
    width: 100%;
    font-size: 15px;
    height: 38px;
    background-color: #fff;
    border: none;
    position: absolute;
    left: 0px;
    border-radius: 47px;
    border: none;
    box-shadow: none;
}

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;
}
select {
    outline: none;
    box-shadow: none;
}

input:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}


header.mobile .mobile-search form .btn-send {
    float: right;
    width: 20%;
    color: #757575;
    height: 40px;
}

header.mobile .h-banner{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sidebar User */
.sidebar-user {
    background: #fff;
    width: 325px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 21;
    right: 0;
    margin-right: -325px;
}

.sidebar-user.active {
    margin-right: 0;
}

.sidebar-user .title {
    padding: 10px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
}
.sidebar-user .title .logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sidebar-user .title .btn-close {
    color: #000;
}

.sidebar-user .login-menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin:10px;
}

.sidebar-user .login-menu a i {
    width: 30px;
    text-align: left;
    margin-right: 10px;
}

.sidebar-user .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 150px;
    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: 300px;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -300px;
}

.sidebar-menu.active {
    margin-left: 0;
}

.sidebar-menu .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu .title .btn-close {
    color: #fff;
}

.sidebar-menu .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu .links a i {
    float: right;
}

.sidebar-menu .categories {
    /*display: none;*/
}

.sidebar-menu .categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-menu .categories ul li {
    padding: 0;
    list-style: none;
}

.sidebar-menu .categories ul li a {
    display: flex;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
}

.sidebar-menu .categories ul li a .name {
    width: 100%;
}

.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 li:nth-child(1) {
   display:none;
}
.sidebar-menu .categories ul .multi .multi a {
    padding-left: 40px;
}

.sidebar-menu .categories ul .multi .multi .multi a {
    padding-left: 60px;
}

/* Stores */
.stores {
    background: #fff;
    border-top: solid 1px #e6e6e6;
    padding: 10px 0;
}

.stores .cards {
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row
}

.stores .card {
    border: none;
    box-shadow: none;
    margin: 0 !important;
    border-left: 1px solid #e6e6e6;
}

.stores .card:first-child {
    border-left: 0;
}

.stores .card .card-body {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}

.stores .card .card-body img {
    max-height: 80%;
    max-width: 60%!important;
    margin: 0 auto;
}

.stores .card .card-header {
    display: none;
}

.stores .text-white {
    font-weight: bold;
    font-size: 12px !important;
}

/* Footer */

footer {
    background: #fff;
}

footer .bb {
    padding: 20px 0;
    background-color: #fff;
}
footer .bt-2{
    border-top:2px solid #f1f1f1;
    margin-bottom: 30px;
}

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: #535353;
    text-align: center;
}
footer .titleLogo {
    font-size: 20px;
    font-weight: bold;
    color: #535353;
    text-align: center;
    margin-bottom: 15px;
}

footer .secure .description {
    color: #000;
    margin: 5px 0;
}

footer .secure img {
    opacity: .5;
}

footer .info ul {
    padding: 0;
    margin: 0;
}

footer .info ul li {
    list-style: none;
    padding: 3px 0;
}

footer .info ul li a {
    display: block;
    color: #a1a1a1;
    font-size: 15px;
    line-height: 25px;
    transition: all var(--transition-time);
    }
footer .info ul li a span{
    display: inline;
    color: rgb(18, 25, 38);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.24px;
    border-radius: 4px;
    border: 1px solid var(--Neon-500, #dcfb6e);
    background: var(--Neon-400, #e4ff7c);
    padding: 1px 6px;
    margin-left:12px;
}

footer .info ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "";
}

footer .info ul li a:hover {
    color: rgb(80 84 255);
}

footer .bar {
    padding: 10px 0;
}

footer .bar a {
    color: #a1a1a1;
    text-align: center;
    font-size: 14px;
}



footer .bar p {
    margin: 0;
    color: #333;
    text-align: center;
}

/* Mobile Menu Tip 2 */

.sidebar-menu-type-2 {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    height: calc(100vh);
    transition: all .3s;
    z-index: 9999;
    left: 0;
    margin-left: -100%;
}

.sidebar-menu-type-2.active {
    margin-left: 0;
}

.sidebar-menu-type-2 .scrollbar {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidebar-menu-type-2 .title {
    padding: 10px;
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu-type-2 .title .btn-close {
    color: #fff;
}

.sidebar-menu-type-2 .title-alt {
    padding: 10px;
    background: rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-menu-type-2 .links a {
    display: block;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
    color: #333;
    font-size: 14px;
}

.sidebar-menu-type-2 .links a i {
    float: right;
}

.sidebar-menu-type-2 .categories {
    /*display: none;*/
}

.sidebar-menu-type-2 .categories ul {
    margin: 0;
    padding: 10px;
}

.sidebar-menu-type-2 .categories ul li {
    padding: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    margin-bottom: 15px;
    position: relative;
}

.sidebar-menu-type-2 .categories ul li a img{
    height: 35px;
    margin-right: 10px;
}

.sidebar-menu-type-2 .categories ul li a {
    display: flex;
    padding: 10px;
    border-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
}

.sidebar-menu-type-2 .categories ul li a .name {
    width: 80%;
}

.sidebar-menu-type-2 .categories ul li a .icon {
    color: #000;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    position: absolute;
    right: 22px;
}

.sidebar-menu-type-2 .categories .multi li a .icon {
    right: 13px;
}

.sidebar-menu-type-2 .easy-autocomplete-container ul {
    border-top: 1px solid #ebebeb;
    top: 50px;
}

.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: 27px;
    margin-right: 10px;
    position: absolute;
    top: 0;
    right: 0px;
}

.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 {
    max-width: 150px;
}

.sidebar-menu-type-2 .logo-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px;
    background-color: #000;
}

.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;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #fff;
    padding-top: 4px;
    padding-left: 0px;
}

.mobil-area-2 {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar-menu-type-2 .short-link {
    width: 50%;
    padding: 15px 10px;
}

.sidebar-menu-type-2 .short-link.border-1{
    border-right: 0px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-2{
    border-bottom: 0px solid #e2e2e2;
}

.sidebar-menu-type-2 .short-link.border-3 {
    border-right: 0px 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%;
    display: inline-block;
    padding: 10px;
}

/* Custom */
.renkSecenek {
    position: absolute;
    z-index: 1;
    bottom: 5px;
    right: 5px;
    padding: 3px 10px;
    display: flex;
    background: linear-gradient(45deg, #832891, #F77737, #D62976);
    color:#fff;
    align-items: center;
    font-size: 12px;
    justify-content: space-around;
    border-radius: 5px;
}

.renkSecenek img {
    width: 22px !important;
}

.kvkk-aydinlatma_metnini {
  font-weight: 600;
}
.bayilik-sozlesmesini {
  font-weight: 600;
}

td.image-order img {
    max-width: 70px;
}

.category-filter-list .lag-checkbox label {
    padding-left: 1.8rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.categories-body .list .lag-checkbox img {
    margin-right: 7px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.category-filter-list .list-wrap .list li a{
    font-weight: 600!important;
    color: #222!important;
}
.dil-para {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.advanced-product-search .aps-content .items .item .p-info .name{
    max-height: 40px;
    overflow: hidden;
}
.product-profile-1 .video video{
    max-height: 601px;
}
.product-profile-1 h1.title {
    color: var(--neutral-800);
    font-weight: 600;
    margin-left: var(--spacing-1);
    border-bottom: 0;
    font-size: var(--font-size-xl);
    border-bottom: 0;
    margin-bottom: var(--spacing-4);
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb {
  background: #888; 
}


.product-body .product-rate{
    padding: 5px 10px;
    color: #111;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    display: inline-flex;
}
.carousel-indicators li{
     box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity:.9; 
    transition:opacity .6s ease;
}

.product-profile-1 .carousel .carousel-indicators {
    max-height: calc(100% + 5px);
    background-color: #fff;
    display: flex;
    flex-direction: row;
    min-height: 65px;
}
.product-profile-1 .carousel .carousel-indicators li {
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    padding: 0;
    border: 2px solid transparent;
    margin-bottom: 8px;
    max-width: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.product-profile-1 .carousel .carousel-indicators li:hover {
    opacity: 1;
    border-color: rgba(99, 102, 241, 0.3);
}
.product-profile-1 .carousel .carousel-indicators li img{
    border-radius: 8px;
}
.product-profile-1 .carousel .carousel-inner{
    border-radius: 16px;
    border: none !important;
    background-color: #f8f9fa;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.product-body .product-rate{
    padding: 8px 14px;
    color: #1f2937;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: inline-flex;
    background: rgba(99, 102, 241, 0.05);
    font-weight: 600;
    align-items: center;
    gap: 6px;
}

.product-profile-1 .carousel .carousel-indicators {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: 75px;
    margin: 0;
    z-index: 0;
    flex-direction: row;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    max-height: 500px;
    overflow: scroll;
}
.card-category .image{
    border-radius: 50%;
    overflow: hidden;
}
.login-body .p-g-mod-t-4{
    padding: 0px;
}

.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: 16px;
    height: 45px;
    align-items: center;
    font-weight: 600;
}

.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: 600;
    font-size: 16px;
}

.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: 600;
    font-size: 16px;
}

.login-body .p-g-mod-t-4 .btn-google-login i{
    padding-right: 10px!important;
    border-right: 0 !important;
}

.product-body .variant-box ul li .options a{
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 2.5px;
    margin-top: 2.5px;
    box-sizing: border-box;
    border-radius: 10px;
    min-width: 48px;
    padding: 0 14px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    font-weight: 500;
}

.product-body .variant-box ul li .options a:hover{
   background-color: rgba(99, 102, 241, 0.1);
   color: #4f46e5;
   border-color: rgba(99, 102, 241, 0.3);
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.product-body .variant-box ul li .options a.active{
   background: #1f2937;
   color: #fff;
   border-color: #1f2937;
   font-weight: 600;
   box-shadow: 0 4px 12px rgba(31, 41, 55, 0.25);
}
.product-body .accordion-product .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
    border: 0;
}

.accordion-product {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0;
    border-radius: 0;
}

.accordion-product .btn-link {
    color: #1f2937;
    text-decoration: none !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.3s ease;
}

.accordion-product .btn-link:hover {
    background: rgba(31, 41, 55, 0.05);
    color: #1f2937;
}

.accordion-product .card-header i {
    font-size: 11px;
    padding-top: 3px;
}

.product-contact {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px;
    color: #374151;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-contact:hover {
    border-color: rgba(31, 41, 55, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-body .product-favourite {
    font-size: 20px;
    position: relative;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-body .product-favourite:hover {
    background: rgba(31, 41, 55, 0.05);
    border-color: rgba(31, 41, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(31, 41, 55, 0.15);
}
.faq-item .faq-question:focus{
    outline:none!important; 
    outline:none!important; 
}

.product-body .product-buttons{
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    align-items: center;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.product-body .product-favourite a i{
    margin: 0 !important;
}

.product-body .product-code-area{
    display: flex;
    flex-direction: column;
}

.product-contact .fa-whatsapp {
    color: #25d366;
    font-size: 23px;
    display: inline-block;
    margin: 4%;
}

.code-area-value{
    font-weight: 600;
}
.product-contact a {
   color: #000;
    font-weight: 500;
    text-align: center;
    vertical-align: text-bottom;
}

.product-contact i {
    color: #b61414;
    font-size: 20px;
    display: inline-block;
    margin: 5%;
}

.product-price-group .free-cargo-badge{
    background: #1f2937;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    width: inherit;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.25);
}

.product-profile-1 .variant-box{
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.product-profile-1 .variant-box .variant:nth-child(1){
    display:none;
}

.product-profile-1 .discount{
    height: 44px;
    width: 44px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 10px;
    z-index: 1;
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-body{
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-body .product-profile-info li{
    display: flex;
    margin: 5px 0;
}

.product-body .product-profile-info .sale-price-discount{
    background: var(--main-color2);
    color: #ffffff;
    border-radius: 5px;
}

.product-price-group .prices .sale-price{
    margin-top: 20px;
    font-size: 0px!important;
    font-weight: 400;
    
}
.product-price-group .prices .sale-price .kdvHaricFiyat{
    font-size:16px!important;
}
.product-price-group .prices .sale-price title{
    font-size:12px!important;
}

.product-price-group .prices .list-price{
    font-size: 14px;
}

.product-body .product-profile-info{
    background: rgba(255, 255, 255, 0.98);
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
}

.product-body .product-info-name{
    flex: 0 0 auto;
    width: 30%;
    color: #5e5e5e;
}

.product-body .product-profile-info .value{
    flex: 1 1 auto;
    display: none;
    align-items: baseline;
    word-break: break-word;
}

.product-body .p-g-mod-base-content{
    background: transparent !important;
    border: 0 !important;
}
.card-product .card-product-inner {
    padding: var(--spacing-3);
    padding-bottom: var(--spacing-4);
    background: white;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-product .card-product-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #1f2937;
    background-size: 200% 200%;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card-product .card-product-inner:hover::before {
    opacity: 0.03;
}

.card-product .card-product-inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-product .card-product-inner .image-wrapper {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.card-product .card-product-inner .image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-product .card-product-inner .image-wrapper img {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.card-product .card-product-inner:hover .image-wrapper img {
    transform: scale(1.05);
}

.card-product .card-product-inner .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(31, 41, 55, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-product .card-product-inner:hover .image-wrapper::after {
    opacity: 1;
}
.card-product .card-product-inner .price-group .discount{
    background: #000000;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 5px 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.categories-body .category-filter-list .list-wrap .list li{
    float: left;
    font-size: 13px;
    color: #212529;
    display: inline-block;
    line-height: 18px;
    font-weight: 400;
    width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.categories-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info{
    align-items: flex-start;
}
.pattern-group .p-g-mod .p-g-mod-body{
    padding: 0;
}
.categories-body .pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title{
    display: block;
    line-height: 22px;
    font-size: 15px;
    color: #212529;
    font-weight: 600;
    padding: 0 0 10px;
}

.home-blog{
    background: var(--main-color3) !important;
    padding: 40px 0;
}

.home-blog .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-description{
    padding-top: 20px;
    margin-bottom: 20px;
}

.home-blog .p-g-mod-header.p-g-mod-header-p-0{
    height: auto;
}

.card-blog .title{
    display: block;
    margin-top: 10px;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #444;
    font-weight: 400;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 20px;
}

.story-manset .p-g-mod-t-44 .col-list-p-v-1{
    padding-top: 0 !important;
}
.advanced-product-search .aps-content .items .item .p-info .prices{
    display: none!important;
}
.card-product .card-product-inner .price-group .prices .list-price{
    text-decoration: line-through;
    display:flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.butik-story{
    border: 1px solid #e9e9e9;
}

.show-category .card-product .card-product-inner .price-group .prices .list-price,
.butik-story .card-product .card-product-inner .price-group .prices .list-price{
    line-height: 20px;
    height: 20px;
    margin-bottom: 5px;
    color: #b4b4b4;
    -moz-text-decoration-color: #b4b4b4;
    text-decoration-color: #b4b4b4;
    font-weight: 400;
    line-height: 25px;
}

.show-category .card-product .card-product-inner .price-group,
.butik-story .card-product .card-product-inner .price-group{
    justify-content: flex-start;
}

.show-category .card-product .card-product-inner .price-group .prices .sale-price,
.butik-story .card-product .card-product-inner .price-group .prices .sale-price{
    padding: 8px 16px;
    background: #1f2937;
    color: #fff;
    border-radius: 12px;
    margin-top: 5px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.show-category .homepage-sale-desc,
.butik-story .homepage-sale-desc{
    font-size: 11px;
    margin-right: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.five-banners{
    padding: 10px 25px 10px 25px;
    background: #f9f9f9 !important;
}

.card-product .card-product-inner .title{
    display: block;
    width: 100%;
    padding: 0;
    line-height: 19px;
    height: 19px;
    font-weight: 600;
    font-size: 13px;
    color: #1f2937;
    white-space: nowrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.card-product .card-product-inner:hover .title {
    color: #000000;
}

.card-category .title{
    font-weight: 400;
    font-size: 13px;
    color:#000;
}

.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;
    width: 100%;
}

.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: 3px;
    height: 9px;
    background: #e2e6eb;
    border-radius: 0px;
    margin: 0 2px;
}

.categories-body .product-view-select a.active div {background: #ff6100;}

.categories-body .product-view-select a {
    background: #fff;
    height: 25px;
    border-radius: 0px;
    border: 1px solid #c5c5c5;
    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: #f5f5f5;
    border-radius: 0px;
    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: 16px;
    font-weight: 700;
    color: #1f2937;
    line-height: normal;
    background-color: #fff;
    text-align: center;
    transition: color 0.3s ease;
}

.card-product-content{
    text-align: center;
    color: #555;
}

.card-product .card-product-inner .product-label img {
    height: 65px;
    max-height: 70px;
}
.card-product .card-product-inner .top-left img{
    height: 30px;
    max-height: 35px;
}
.card-product .card-product-inner .product-label.top-left{
    top:-10px;
}
.card-product .card-product-inner .product-label.top-right{
    top: -18px;
    right: -7px;
}
.card-product .card-product-inner .bottom-right img {
    max-height: 65px;
}

.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{
    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: #6366f1;
    border-radius: 8px;
    background-color: #f8f9fa;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}
.product-badges{
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}


.product-badges .p-badge {
    width: 148px;
    min-height: 75px;
    max-height: 75px;
    background: #fff;
    border: 0px;
    box-shadow: -1px 1px 3px 2px #cfcfcf;
}
.product-badges .p-badge:hover{
    background-color:#f1f1f1;
    
}
.product-badges .p-badge i{
    font-size: 25px!important;
    color:#555;
}
.product-badges .fa-check-circle,.coreicon-loop-alt-1{
    color:#555!important;
}
.product-badges .fa-truck,.coreicon-credit-card{
    color:#555!important;
}
.product-badges .p-badge span{
    font-weight: 400!important;
}


.p-g-mod-base-content{
    border: 0px solid #ebebeb;
}

.p-g-mod-t-10 .p-g-mod-body a,
.p-g-mod-t-2 .p-g-mod-body a{
    transition: all var(--transition-time);
}

.contact-info{
    display: flex;
    flex-direction: column;
    
}

.contact-info .contact-item{
    margin: 5px 0;
    display: flex;
    align-content: center;
    cursor: pointer;
}

.contact-info .contact-item i{
    margin-right: 10px;
    font-size: 17px;
    transition: all var(--transition-time);
}

.contact-info .contact-item a{
    color: #a1a1a1;
    font-size:14px;
}

.contact-info .contact-item:hover i{
    color: #a1a1a1;
}

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: center;
}

.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: #f78018;
    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;
    display: none;
}

.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-direction: row;
    justify-content: space-evenly;
}

.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;
}

*[data-toggle=tooltip]:hover::after{
    z-index: 99;
    top:-53px;
    width: 80%;
  
}
/* Urun Detay - Birim */

.product-body .product-profile-1 .product-unit {
    display: flex;
    justify-content: center;
    font-weight: 600;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    width: 95px;
    padding: 8px 0;
    margin-right: 10px !important;
    height: 46px;
    margin: 10px 0;
    background: #fff;
    transition: all 0.3s ease;
}

.product-body .product-profile-1 .product-unit:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
}

.product-body .product-profile-1 .product-unit  input[type=checkbox],
.product-body .product-profile-1 .product-unit  input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;
}

.product-body .product-profile-1 .product-unit input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #96be67;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid #ebebeb;
}

/* ÃœrÃ¼n KartÄ± - Adet SeÃ§imi */

.card-product .card-product-inner .quantity {
    margin: 5px 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-basis: auto;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn {
    display: flex;
    width: 35px;
    height: 35px;
    color: #555;
    font-size: 10px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    align-items: center;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn:first-child {
    border-radius: 0;
}

.card-product .card-product-inner .quantity .btn:hover {
    color: #333;
    background: #f2f2f2;
    border-color: #f5f5f5;
}

.card-product .card-product-inner .quantity input {
    min-width: 35px;
    max-width: 50px;
    height: 35px;
    border-radius: 0;
    border-color: #dbdbdb !important;
    background: #fff;
    color: #555;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border-right: 0;
    border-left: 0;
}

.subtitle-img img {
    max-height: 25px;
    margin-bottom: 3px;
}

header.desktop .mega-menu .nav-link{
    margin-top:5px;
    display: flex;
    height: 100%;
}

.single-menu-container .single-menu li .subtitle-img{
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    display: block;
    color: #fff;
    transition: all 0.2s ease-in-out 0s;
    font-size: 16px;
}

.single-menu-container .single-menu li{
    text-align: center;
}

.single-menu-container .single-menu li .sub-single-item{
    padding: 0 15px;
}

/* 404 SayfasÄ± */

.e404-body{
    background: repeating-linear-gradient(45deg,transparent, transparent 10px,
        #f8f8f8 10px, #f8f8f8 20px),linear-gradient(to bottom,#fff, #fff
     );
}

.e404-btn{
    background: #ffffff;
    border-radius: 45px;
    color: #212121;
    padding: 20px 50px;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    -moz-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px #333, 0 5px 0 #222, 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    text-decoration: none;
}

.e404-btn:hover{
    color:var(--main-color);
    -moz-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 -1px 1px var(--main-color), 0 5px 0 var(--main-color), 0 6px 8px rgba(0, 0, 0, 0.35);
}

/* 404 SayfasÄ± - Tip 1 */

.e404-content .e404-logo img{
    max-height: 100px;
    border: none !important;
}

.e404-page-type-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-1 .e404-pic {
    height: 200px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-1 .e404-title{
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 2rem;
    margin: 30px 0px 0px 0px;
}

.e404-description{
    color: #808080;
    font-size: 1rem;
    margin: 5px;
    text-align: center;
    font-weight: 300;
}
    
/* Ä°ki BÃ¶lÃ¼mlÃ¼ 404 SayfasÄ± - Tip 2*/

.e404-page-type-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.e404-page-type-2 .e404-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    padding: 0 10%;
    border-top: 0;
    border-left: 0;
}

.e404-page-type-2 .e404-pic{
    height: 400px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    border-radius: 10px;
}

.e404-page-type-2 .e404-title{
    color: #3b3a39;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 2rem;
    margin: 30px 0px 0px 0px;
}

/* Mobil Uygulama Ä°konlarÄ±  */

footer .mobile-app-title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

footer .mobile-app img{
    max-height: 40px;
}

/* MÃ¼ÅŸteri EtkileÅŸim ButonlarÄ± */

.product-customer-actions{
    padding: 10px 0;
    background: #fff;
}

.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: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    padding: 14px;
    width: 100%;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

/* Fiyatlar Page */
.pricing-container-main{
    display: flex;
    justify-content: center;
}

.pricing-container {
       display: flex;
       gap: 2rem;
       padding: 1rem;
       -webkit-overflow-scrolling: touch;
       overflow-x: auto;
   }

   .pricing-container::-webkit-scrollbar {
       height: 6px;
   }

   .pricing-container::-webkit-scrollbar-thumb {
       background: #7366ff;
       border-radius: 3px;
   }

   .pricing-card {
       border: 1px solid #ddd;
       border-radius: 10px;
       padding: 2rem;
       background-color: #f8f9fa;
       max-width: 315px;
       text-align: center;
       position: relative;
       display: flex;
       flex-direction: column;
       align-items: stretch;
       justify-content: space-between;
       flex-wrap: wrap;
   }

   .pricing-card.popular {
       border: 2px solid #7366ff;
       background-color: #f2f0ff;
   }

   .popular-badge {
       position: absolute;
       top: -10px;
       right: -10px;
       background-color: #d4ff00;
       color: #000;
       font-weight: bold;
       padding: 5px 10px;
       font-size: 0.8rem;
       border-radius: 5px;
   }

   .plan-title {
       font-size: 1.3rem;
       font-weight: bold;
       text-align: start;
   }

   .plan-subtitle {
       font-size: 0.9rem;
       color: #777;
       margin-bottom: 1rem;
       text-align: start;
   }

   .pricing {
       font-size: 1.8rem;
       font-weight: bold;
       margin-bottom: 0.5rem;
   }

   .duration {
       color: #666;
       margin-bottom: 1rem;
       text-align: start;
   }

   .demo-btn {
       display: inline-block;
       padding: 10px 22px;
       border-radius: 8px;
       background: linear-gradient(90deg, #a084ee 0%, #7de2fc 100%);
       color: #fff;
       font-weight: 600;
       font-size: 1rem;
       text-decoration: none;
       margin-bottom: 24px;
       border: none;
       transition: background 0.2s;
   }

   .demo-btn:hover {
       background: linear-gradient(90deg, #7de2fc 0%, #a084ee 100%);
       color: #fff;
   }

    .features-container{
       max-width:1000px;
       margin:60px auto 30px;
       border:5px solid #dadada;
       border-radius:16px;
   }
   
   .features {
       max-width: 1000px;
       margin: auto;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1rem;
       padding: 2rem;
   }

   .feature-item {
       display: flex;
       align-items: flex-start;
       gap: 0.5rem;
   }

   .feature-item::before {
       content: '✔';
       color: #7366ff;
       font-weight: bold;
   }

   .partnership {
       text-align: center;
       padding: 2rem;
   }

   .highlight {
       font-weight: bold;
       color: #7366ff;
       font-size: 20px;
   }

   @media screen and (min-width: 600px) {
       .newOrder {
          display: none;
       }
   }

/* E-BÃ¼lten */

.newsletter-content .newsletter-title{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
    
.newsletter-input{
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.newsletter-form .btn-submit{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.newsletter-form{
    position: relative;
    width: 100%;
}

/* SMS BÃ¼lteni */

.sms-newsletter-content .newsletter-title{
    color: #222;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
    
.sms-newsletter-input{
    height: 40px;
    background: #fff !important;
    display: block;
    color: #a3a2a2;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid #ebecee;
}

.sms-newsletter-form .btn-submit{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.sms-newsletter-form{
    position: relative;
    width: 100%;
}

/* Footer Social Media*/

footer .socialMedia{
    display:flex;
    align-items: center;
}
footer .social-media-title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color:#a1a1a1;
}

footer .social-media a{
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 26px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  z-index: 1;
}

footer .social-media a{
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}
footer .social-media .fb:hover{
  color: #4267b2;
  transform: rotateZ(360deg);
}
footer .social-media .ins:hover{
  color: #c13584;
  transform: rotateY(360deg);
}
footer .social-media .tw:hover{
  color: #0088cc;
  transform: rotateY(360deg);
}
footer .social-media .yt:hover{
  color: #f00;
  transform: rotateY(360deg);
}
/* Buttons */


.card-product .card-product-inner .free-cargo-badge {
    position: absolute;
    left: 10px;
    background: #1f2937;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    top: 10px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-product .card-product-inner .buttons .btn-cart,
.modal-content .buttons .btn-cart{
    background: #ffffff;
    border: 2px solid #1f2937;
    color: #1f2937 !important;
    transition: all 0.3s ease;
    width:100%;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: #1f2937;
    border-color: #1f2937;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-product .down-to-top .btn-cart{
    background: #ffffff;
    border: 2px solid #1f2937;
    color: #1f2937 !important;
    transition: all 0.3s ease;
    font-size: 13px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-product .down-to-top .btn-cart:hover{
    background: #1f2937;
    border-color: #1f2937;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.product-buttons .btn-cart{
    background: white;
    border: 2px solid var(--neutral-800);
    color: var(--neutral-800);
    transition: all var(--transition-normal);
    flex: 1;
    border-radius: var(--radius-lg);
    font-weight: 600;
    padding: var(--spacing-3) var(--spacing-6);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
}

.product-buttons .btn-cart:hover{
    background: var(--neutral-800);
    border-color: var(--neutral-800);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-buttons .btn-fast-buy{
    background: var(--neutral-800);
    border: 2px solid var(--neutral-800);
    color: white;
    transition: all var(--transition-normal);
    flex: 1;
    border-radius: var(--radius-lg);
    font-weight: 600;
    padding: var(--spacing-3) var(--spacing-6);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
}

.product-buttons .btn-fast-buy:hover{
    background: black;
    border-color: black;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.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: #fff;
    border-color: #000;
    color: #000;
}

.product-favourite-kart{
    display: inline-block;
    position: absolute;
    right: 5px;
    z-index: 2;
}

.product-favourite-kart a{
    font-size: 20px;
}
/* Header  */
.btn-thm .icon{
    position: absolute;
    background: #e4ff7c;
    border-radius: 17px;
    padding: 8px;
    float: right;
    top: -11px;
    right: -14px;
    font-size: 0;
}
.btn-thm .count{
    font-size: 10px;
    position: absolute;
    font-weight: 500;
    top: 0;
    right: 5px;
    color: rgb(18, 25, 38);
}

/* 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: 40%;
    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;
}

.cateogory-image img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

.home-headline .p-g-mod-t-44 .col-list-p-v-1{
    padding-top:0 !important;
}
.cat-responsive-buttons{
   
}
.show-category{
    padding: 10px 25px 10px 25px;
    background: var(--main-color3) !important;
}
.show-category .p-g-mod-header.p-g-mod-header-p-0,
.butik-story .p-g-mod-header.p-g-mod-header-p-0{
    display: flex;
    flex-direction: column;
}
.pattern-group .p-g-mod .p-g-mod-header{
    margin-top: 0px;
    margin-bottom: 0px;
    border-bottom: 0px solid #fff;
}
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info,
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button{
    align-items: center;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title .staticPage{
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.pattern-group .p-g-mod .p-g-mod-header .p-g-m-h-button .btn-mod{
    color:#fff;
    font-weight: 600;
    background: #181818;
    border-radius: 12px;
}

.five-banners .banner-item .title{
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding-top: 5px;
    background: #fff;
}

.five-banners .banner-item .description{
    font-size:13px;
    font-weight: 400;
    text-align: center;
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .renkSecenek {
        position: absolute;
        z-index: 1;
        bottom: 3px;
        top: auto;
        right: 3px;
        padding: 1px 5px;
        display: flex;
        background: linear-gradient(45deg, #832891, #F77737, #D62976);
        color:#fff;
        align-items: center;
        font-size: 10px;
        justify-content: space-around;
        border-radius: 5px;
    }
    header.mobile .logo img {
    max-height: 45px;
    margin-right: 8px;
    margin-left: 8px;
}
 header.mobile .logo span {
    font-weight: 500;
    font-size: 20px;
}
    .card-product .card-product-inner .product-label.top-right img{
        height: 55px;
        max-height: 60px;
}
.card-product .card-product-inner .top-left img{
    height: 25px;
    max-height: 30px;
}
    
    .hizmetler{
        display: none;
    }
    
    .category-filter-order-desktop{
        
    }
    
    .product-details-tab-product-details-tab-colorful .p-g-tab-wrapper .p-g-t-nav .nav{
        height: auto;
    }
    
.product-profile-1 .product-quantity{
    display: none;
}
    
    .product-badges .p-badge {
        height: auto;
        flex: auto;
    }
    
    .product-buttons .btn-fast-buy {
        flex: 1;
    }
    
    .product-buttons .btn-cart{
        flex:1;
        margin-left:0;
    }
    
    .product-buttons .btn-wp {
        width: 100%;
    }
    
    .card-product .right-to-left{
        display: none !important;
    }
    
    .product-view-select{
        display:none;
    }
    
    .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;
        background-color: #fff;
        height: 70px;
    }
    
    .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 {
        display: none;
    }
    
    footer .bb {
        border-top: 0;
        border-bottom: 0;
    }

    footer .info {
        padding-top: 0;
    }

    footer .info .title {
        color: #1a1a1a;
        padding: 20px;
        position: relative;
        border-top:1px solid #d3d3d3;
    }
    footer .info .titleLogo {
        color: #1a1a1a;
        padding: 8px;
        position: relative;
    }
    

   footer .info .title::after {
    background: url(https://percdn.com/f/499569/bzR6WWFtNG0vcUp3ZW1Gc1U4OG5hUT09/i/image-47061860-sw32sh32.webp) no-repeat 100% 50%;
    content: "";
    height: 30px;
    position: absolute;
    right: 0;
    top: 15px;
    transition: transform 0.3s;
    width: 30px;
    transform: rotate(0deg);
}

footer .info .title.rotate::after {
    transform: rotate(180deg);
}
    



    footer .info .fs {
        display: none;
        margin-bottom: 15px;
        padding: 20px;
    }
    footer .info ul {
        margin: 0;
    }

    footer .info ul li a {
    display: block;
    color: #a1a1a1;
    font-size: 15px;
    line-height: 10px;
    transition: all var(--transition-time);
    margin-bottom: 20px;
    }

    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;
    }

}

@media(max-width: 400px){
    .show-category .card-product .card-product-inner .price-group .prices .list-price,
    .butik-story .card-product .card-product-inner .price-group .prices .list-price{
        height: 14px;
        line-height: 14px;
    }
    .show-category .card-product .card-product-inner .price-group .prices .sale-price,
    .butik-story .card-product .card-product-inner .price-group .prices .sale-price{
        line-height: 16px;
        font-size: 13px;
        font-weight: 600;
    }

}

.product-profile-1 .product-label img{
    display: none!important;
}


/* Header Shopping Cart */

header.desktop .header-cart-hover .nav-link::after {
    display: none;
}

  
header.desktop .header-cart-hover {
    position: relative;
    display: flex;
}

header.desktop .header-cart-hover .dropdown-menu {
    border: 0;
    border-radius: 0;
    background-color: #fff;
    width: 300px;
    left: inherit;
    right: 0;
    top: 37px;
    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: var(--font-size-sm) !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: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-1);
    color: var(--neutral-900);
}

@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;
        display: none;
    }

    .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 {
        
    }
    
}

.category-short-description {
    font-size: 15px;
} 

@media(max-width: 991px){
    .category-short-description {
        font-size: 13px;
    } 
}

.copyy{
    text-align:center;
    background-color: #2d2d2d;
    color: #fff;
}

.box {
justify-content: center;
align-items: center;
display: flex;
}

.glow {
    font-size: 80px;
    color: #fff;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 5px #bbc000, 0 0 10px #bbc000, 0 0 20px #bbc000, 0 0 30px #bbc000, 0 0 40px #bbc000, 0 0 50px #bbc000, 0 0 40px #bbc000, 0 0 30px #bbc000, 0 0 20px #bbc000, 0 0 10px #bbc000, 0 0 5px #bbc000;
    }
    
    to {
      text-shadow: 0 0 20px #bbc000, 0 0 30px #bbc000, 0 0 40px #bbc000, 0 0 50px #bbc000, 0 0 60px #bbc000, 0 0 70px #bbc000, 0 0 80px #bbc000;
    }
  }
  /* Urun Detay Ozel*/
  
.product-favourite a:hover{
    color:red;
    font-size:25px;
}
.product-contact .col-md-2{
    padding:0 10px;
}
.product-contact .margin-bottom-mobile{
    border:1px solid #42aa45;
    display:inline-block;
    border-radius:40px;
    
}
.product-contact .telefon{
    border:1px solid #f00;
    display: inline-block;
    border-radius:40px;
}
.product-contact .telefon:hover{
background-color: rgba(232,16,16,.25)
}
.product-contact .margin-bottom-mobile:hover{
    background-color: rgba(66,170,69,.25)
}
.user-dashboard .alert{
    display:none;
}
.card-product .card-product-inner .price-group,.compare-wrapper .price-group {
    display: flex;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #333;
    flex-direction: row;
}
.related-products a{
    height: 90px!important;
}
.related-products a img{
    border-radius: 14px;
}

.related-products a img:hover {
    border: 2px solid #fff;
    border-radius: 14px;
    box-shadow: 0 4px 8px #00000024;
}

.related-products a.active img {
    border:2px solid #ff1;
    border-radius: 14px;
}
.variant-box ul li .options a.active {
   background-color:#ff1;
   color:#000; 
   border-color: #ff1;
   box-shadow: 0 4px 8px #00000060;
}
.variant-box ul li:nth-child(1){
    display:none;
}
.btn-secondary{
    background-color: #fff;
    color: #000;
}
.btn-secondary:hover{
    color:#000;
    background-color: #ff1;
}
.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle {
    color: #000;
    background-color: #ff1;
    border-color: #000000;
}
.btn-secondary.focus,.btn-secondary:focus {
    color: #000;
    background-color: #ff1;
    border-color: #000;
    box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
}
.product-quantity .btn {
    background: #000000;
    color: #ffffff;
}
.product-quantity .btn:hover {
    background: #ff1;
    color:#000;
}
.XmlBayilikWp {
    font-size: 20px;
    background: #33aa29;
    border-color: #33aa29;
    color: #fff;
    font-weight: 500;
    margin: 10px 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    border-radius: 0;
    height: 50px;
    width: 100%;
}
.XmlBayilikWp:hover{
    background-color:#26931d;
    color:#fff;
}
.BayilikBasvuruBtn {
  align-self: center;
  background-color: #fff;
  background-image: none;
  background-position: 0 90%;
  background-repeat: repeat no-repeat;
  background-size: 4px 3px;
  border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
  border-style: solid;
  border-width: 2px;
  box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
  box-sizing: border-box;
  color: #41403e;
  cursor: pointer;
  display: inline-block;
  font-family: Neucha, sans-serif;
  font-size: 1rem;
  line-height: 23px;
  outline: none;
  padding: .75rem;
  text-decoration: none;
  transition: all 235ms ease-in-out;
  border-bottom-left-radius: 15px 255px;
  border-bottom-right-radius: 225px 15px;
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.BayilikBasvuruBtn:hover {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
  transform: translate3d(0, 2px, 0);
}

.BayilikBasvuruBtn:focus {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}
.sssBackground{
    background-color: #f1f1f1;
}
.special-field-box{
    border:0;
}
.special-field-box ul li{
    align-items: stretch;
    flex-direction: column;
}
.special-field-box .multiple-file-wrapper .control{
    justify-content: flex-start;
}
.special-field-box .multiple-file-wrapper .control .btn-upload {
    flex: 1;
    background: #ff6100;
    color: #fff;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 500;
    margin-right: 7px;
    border-radius: 10px;
    max-width: 250px;
}
@media(max-width: 1200px){
    .product-contact{
        font-size:11px;
    }
}

@media(max-width: 767px){
    .telefon{
    margin-top: 6px;
}
    .product-contact{
        font-size:14px;
    }
    
    .ppc-ctype-2 .row:first-of-type,
    .ppc-ctype-3 .row:first-of-type {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    .btn-thm .icon{
    position: relative;
    background: #e4ff7c;
    border-radius: 17px;
    padding: 8px;
    float: right;
    top: -11px;
    right: -14px;
    font-size: 0;
}
}


/* Sistem Nasil Çalışır */

.SistemNasilCalisir{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding:0;
    margin:0px 0px;
    justify-content: space-evenly;
}
.CardNo1{
    border-radius: 10px;
    text-align: center;
    width: 299px;
    height: auto;
    padding: 10px;
    margin: 10px 0px;
    border:1px solid rgb(255, 255, 255 0.5);
    box-shadow: 0px 15px 40px #d8d8d8;
}

.CardNo1 i{
    color:#1f6191;
    font-size: 45px;
    margin-bottom: 20px;
}
.SistemNasilCalisirBaslik {
    margin: 0 0 var(--spacing-5);
    color: var(--neutral-600);
    text-align: center;
    font-weight: 600;
    font-size: var(--font-size-2xl);
}
.CardNo1Baslik{
    color:#525252;
    font-weight:500;
    font-size:17px;
    margin:7px 30px 30px;
   
}
.CardNo1:hover{
    box-shadow: 0px 0px 25px 1px rgb(108, 108, 108);
    background-color: #ffffff;
   
   
    
   
}
.CardNo1Aciklama{
    color:rgb(118, 118, 118);
    font-weight: 400;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    div.CardNo1 {
        width: 47%;
        height: auto;
    }
    div.CardNo1 i{
        font-size:35px;
    }
    .CardNo1Baslik{
    font-size: 16px;
}
    .CardNo1Aciklama{
    font-size: 14px;
}

  }
  @media screen and (min-width: 992px) {
    div.CardNo1 {
        width: 22%;
        height: auto;
       
    }
  }
  
  @media (max-width: 991px){
.clearfix footer .info {
    display: contents;
}
}
  
.Etbis{
    width: 100px;
    background-color: #fff;
    padding: 3px;
    display: contents;
  }
  
  .p-g-mod-t-44 .carousel-type-2 .carousel-indicators li,.p-g-mod-t-45 .carousel-type-1 .carousel-indicators li {
    width: 30px!important;
    height: 6px!important;
    border-radius: 0px!important;
    background-color: #000000!important;
}

.p-g-mod-t-44 .carousel-type-2 .carousel-indicators,.p-g-mod-t-45 .carousel-type-1 .carousel-indicators {
    z-index: 5;
    margin: 0;
}

.fa-chevron-right {
    font-weight: 900;
    color: #000;
}
.fa-chevron-left {
    font-weight: 900;
    color: #000;
}
  
   /* SystemBoxesContainer */
  
  
  .SystemBoxesContainer{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding:0;
    margin:0px 0px;
    justify-content: center;
}
.SystemBoxesOne{
    border-radius: 10px;
    text-align: center;
    width: 299px;
    height: auto;
    padding: 10px;
    margin: 10px 10px;
    border:1px solid rgb(255, 255, 255 0.5);
   
}
.SystemBoxes{
    margin-top:40px;
    margin-bottom:35px;
}
.SystemBoxes h2 {
    margin: 0 0 var(--spacing-5);
    color: var(--neutral-600);
    text-align: center;
    font-weight: 600;
    font-size: var(--font-size-2xl);
}
.SystemBoxesTitle{
    color:#525252;
    font-weight:500;
    font-size:17px;
    margin:7px 30px 30px;
}
.SystemBoxesOne:hover{
    box-shadow: 0px 0px 25px 1px rgb(228 228 228);
    background-color: #eeeeee;  
}
.SystemBoxesDetail{
    color:rgb(118, 118, 118);
    font-weight: 400;
    font-size: 16px;
}
.SystemBoxesOne img{
    width: 180px;
    height: auto;
}
@media screen and (max-width: 768px) {
    div.SystemBoxesOne {
        width: 100%;
        height: auto;
    }
    div.SystemBoxesOne img{
        width:100px;
    }
    .SystemBoxesTitle{
    font-size: 16px;
}
    .SystemBoxesDetail{
    font-size: 14px;
}

    .contact-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
  }
  @media screen and (min-width: 992px) {
    div.SystemBoxesOne {
        width: 27%;
        height: auto;
       
    }
  }
  
.BrandName h1{
   text-align: center;  
}
.KitapcikTitle h2{
    text-align: center;
    color:#1f6191;
}
.KitapcikDetail{
    text-align: center;
}
.KitapcikDetail p{
    text-align: center;
}




/*Tum cozum ortaklarimiz*/

.CoTitle{
    text-align: center;
    align-items: center;
}
.CoTitle h2{
    font-size: 22px;
    color: #000;
    margin: 25px;
    font-weight: 600;
}
.CoDetail .CoLogo{
    margin: 5px;
    width: 144px;
}
.CoDetail{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.CoLogo img{
    width: 190px;
    background: #f3f3f3;
    border-radius: 0px;
    padding: 3px;
    }
.CoLogo img:hover{
    box-shadow: 0px 0px 10px 3px rgb(118 118 118);
    background:#fff;
    border-radius:10px;
}

.CozumOrtaklari{
    text-align:center;
}

/*Ingilizce AnaSayfa*/

.card-list-product .card-list-product-inner .info .title {
    height: 100px!important;
    }

#zuck-modal-content .story-viewer.loading .head .loading, #zuck-modal-content .story-viewer.muted .tip.muted{

    display: none!important;
}

/*form*/

.BayiForm{
  max-width: 360px;
  margin: 10px auto;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 0px;
  border: 1px solid #ffffff;
  color: #ff6100;
  box-shadow: 0px 1px 20px 3px rgb(161, 161, 161);
}
.BayiForm select {
    max-width: 359px;
    width: 100%;
    height: 45px;
    border-radius: var(--radius-md);
    color: var(--neutral-800);
    font-weight: 500;
    background-color: white;
    text-align: center;
    font-size: var(--font-size-base);
    border: 1px solid var(--neutral-300);
}

.BayiForm option {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.BayiForm option:nth-child(1) {
    display: none;
}

.BayiForm .IletisimForm {
    width: 100%;
    height: 53px;
    border-radius: var(--radius-md);
    margin: 0 0 var(--spacing-3);
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 400;
    background-color: white;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-3);
    transition: all var(--transition-normal);
}

.BayiForm .IletisimForm:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
    outline: none;
}
.BayiForm .SatisForm{
  display: inline-block;

  
}
.BayiForm .SatisFormTitle{
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.number {
  background-color: #00c753;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 20px;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  border-radius: 100%;
}

.SatisForm .CheckForm{
  margin:6px;
  width: 20px;
  height: 20px;
}
.FormTitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--neutral-800);
    padding: var(--spacing-3) 0;
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}
.btn-form{
  width: 100%;
  height: 50px;
  background-color:#00c753;
  border:none;
  border-radius:8px;
  font-size:20px;
  font-weight:400;
  color:#fff;
}
.btn-form:hover{
    color:#fff;
    background-color:#218838;
    transition: all 0.3s ease;
}
.btn-form:focus{
    color: #000;    
    background-color: #1ab43c;    
    border-color: #1e7e34;    
    box-shadow: 0 0 0 .2rem rgb(0 157 66 / 50%)
}
.SatisForm .light{
  font-size: 17px;
  margin: 2px 11px;
}
@media screen and (max-width: 385px) {
  .SatisForm .light{
font-size: 13px;
  }
  .BayiForm option{
font-size: 12px;
} }




.IsOrtaklarimiz {
    overflow: hidden;
  }
  .IsOrtaklarimiz-container {
    animation: bannermove 25s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-bottom: 8px;
    position: relative;
    top: 0px;
    left: 0px;
    overflow: hidden;
    white-space: nowrap;
}

  .IsOrtaklarimiz img{
    width: 160px;
    height: 70px;
    padding: 10px;
  }
  .IsOrtaklari{
    background: #f1f1f1;
    border-radius: 20px;
    padding: 0;
    margin: 0 10px;
}
  
  
  
  
  
  @keyframes bannermove {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-50%, 0);
    }
    
  }
  
  .border-bold{
    border:2px solid #626262;
    padding:20px
}
  
  /*Paketler*/
  .eklentiler{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: stretch;
}
.eklenti{
    width: 304px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 2px 24px rgb(0 0 0 / 8%);
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-wrap: wrap;
    margin:10px 5px;
    justify-content: space-between;

}
.eklenti .eklentiImg img{
    width: 100px;
    height: 100px;
}
.eklenti .eklentiName{
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 0;
    color: #181c32;
    font-size: 25px;
}
.eklenti .eklentiText{
    line-height: 34px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #181c32;
    font-size: 15px;
}
.eklenti .eklentiPriceGroup{
    display: flex;
    align-items: center;
    justify-content: center;
}
.eklenti .eklentiPrice{
    font-size:18px;
    font-weight: 600;
    word-break: unset;
}
.eklenti .eklentiListPrice{
    font-weight: 400;
    color:red;
    text-decoration: line-through;
    font-size: 15px;
    margin-left: 10px;
}
.eklenti .eklentiRenewal{
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 3px 0;
    margin-top:20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color:#333;
    font-weight: 500;

}
.eklenti .eklentiPrice{
    color:#5f6269;
}
.eklenti-btn{
    font-size: 20px;
    border-radius: 3px;
    background-color: #181c32;
    border-color: #181c32;
    color: #fff;
    width: 200px;
    font-weight: 500;
    height: 40px;
    display: flex;
    justify-content: center;
    transition: all .4s;
    text-decoration: none;
    flex-direction: column;
    margin:10px 40px;
}
.eklenti .eklenti-btn a{
    color:#fff;
}
.eklenti .eklenti-btn:hover{
    background-color: #6d80e9;
    color:#ffffff;

}
.bill-payment-methods .method .name .image img,.dealer-payment-methods .method .name .image img,.door-payment-methods .method .name .image img,.shipment-methods .method .name .image img {
    max-width: 90px!important;
    max-height: 60px!important;
}
.kargoSablonu{
    justify-content:center;
}


header.mobile .sidebar-menu-type-2 .mobile-search form .input-box{
    z-index: 0!important;
}
label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: 500;
    color: var(--neutral-700);
    font-size: var(--font-size-base);
}
.text-danger{
    font-size: 15px!important;
    color: #ff0000!important;
}
.category-price-inputs .btn, .category-search-inputs .btn{
    flex: 1;
    margin-left: 5px;
    height: 47px;
    border: 0px solid #b7b7b7;
    border-radius: 25px;
    background: #1adab9;
}

/*tryoto kargo butonlari*/
.tryotoBtn span{
    margin: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    display: inline-block;
}
.tryotoBtn{
    margin-bottom:20px;
    display: flex;
    justify-content: center;
}
.tryotoBtn .tryotoKayit{
    font-size:15px;
    color:#000;
    border-radius:8px;
    transition:background-color .4s;
}
.tryotoBtn .tryotoVideo{
    font-size:15px;
    color:#000;
    border-radius:8px;
    transition:background-color .4s;
}
.tryotoBtn .tryotoKayit:hover{
    color:white;
    background-color:#25d366;
    border:none;
  
}
.tryotoBtn .tryotoVideo:hover{
    color:white;
    background-color:#f00;
    border:none;  
}


/* Order Notifications */
.order-notifications {
    position: fixed;
    left: 10px;
    bottom: 130px;
    z-index: 10;
}

.order-notifications .item {
    background: #fff;
    border-radius: 3px;
    padding: 10px;
    align-items: center;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    position: relative;
    display: none;
}

.order-notifications .item.active {
    display: flex;   
}

.order-notifications .item .close {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 15px;
}

.order-notifications .item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, .1);
    border-radius: 100%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: rgba(0, 0, 0, .8);
}

.order-notifications .item .info {
    flex: 1;
    
}

.order-notifications .item .info .title {
    font-size: 14px;
    font-weight: 500;
}

.order-notifications .item .info .message {
    font-size: 13px;
}

@media (max-width: 991px) {
    .order-notifications {
        bottom: 5px;    
    }
    
    .order-notifications .item { 
        width: 200px;
        padding: 5px;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    }
    
    .order-notifications .item .close {
        font-size: 13px;
    }
    
    .order-notifications .item .icon {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }
    
    .order-notifications .item .info .title {
        font-size: 12px;
    }
    
    .order-notifications .item .info .message {
        font-size: 12px;
    }
}
.pattern-group .satici-login{
    margin-bottom: 0px!important;
}
.pattern-group .register-form{
    margin-bottom: 0px!important;
}

.curruncyLanguage{
    display:flex;
    justify-content: center;
    flex-direction: row;
}
.curruncyLanguage .currency{
    color:#fff;
    border:1px solid #f1f1f1;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
    margin-right: 12px;
}
.curruncyLanguage .language{
    color:#fff;
    border:1px solid #f1f1f1;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}
.categoryGif{
    width:420px;
    border:10px solid #181818;
    border-radius:16px;
}
.categoryGif img{
 border-radius:4px;   
}



    /*Buttons*/
button:focus {
    outline: 0px dotted!important;
    outline: 0px auto -webkit-focus-ring-color!important;
}

.btn-thm{
    background:#fffefe;
    border:1px solid #f1f1f1;
}
.btn-thm1{
    background:#1a1a1a;
    border:1px solid #2a2a2a;
}
.btn-thm2{
    background:#F44336;
    border:0px solid #2a2a2a;
    
}
/*Buttons Name*/
.btn-thm-name{
    color:#212529;
    transition: all var(--transition-time);
    font-size: 16px;    
}
.btn-thm1-name{
    color:#fff;
    transition: all var(--transition-time);
    font-size: 16px;
}
.btn-thm2-name{
    color:#fff;
    transition: all var(--transition-time);
    font-size: 16px;
}


/*Buttons Hover*/
.btn-thm:hover{
    transition: all var(--transition-time);
    border: 1px solid #e3e8ef;
    box-shadow: rgba(221, 231, 242, 0.5) 0px -3px 1px 0px inset, 
                rgba(81, 114, 148, 0) 0px 12px 3px 0px, 
                rgba(81, 114, 148, 0.01) 0px 8px 3px 0px, 
                rgba(81, 114, 148, 0.02) 0px 4px 3px 0px, 
                rgba(81, 114, 148, 0.04) 0px 2px 2px 0px, 
                rgba(81, 114, 148, 0.05) 0px 0px 1px 0px;
}
.btn-thm1:hover{
    transition: all var(--transition-time);
    border: 1px solid #727276;
    background: #2e2e33;
    box-shadow: rgba(34, 34, 34, 0.5) 0px -3px 2px 0px inset, 
                rgba(46, 46, 51, 0) 0px 8px 2px 0px, 
                rgba(46, 46, 51, 0.01) 0px 5px 2px 0px, 
                rgba(46, 46, 51, 0.05) 0px 3px 2px 0px, 
                rgba(46, 46, 51, 0.08) 0px 1px 1px 0px, 
                rgba(46, 46, 51, 0.1) 0px 0px 1px 0px;
}
.btn-thm2:hover{
   transition: all var(--transition-time);
   background: #ff1100;
   box-shadow: rgba(34, 34, 34, 0.5) 0px -3px 2px 0px inset, 
               rgba(46, 46, 51, 0) 0px 8px 2px 0px, 
               rgba(46, 46, 51, 0.01) 0px 5px 2px 0px, 
               rgba(46, 46, 51, 0.05) 0px 3px 2px 0px, 
               rgba(46, 46, 51, 0.08) 0px 1px 1px 0px, 
               rgba(46, 46, 51, 0.1) 0px 0px 1px 0px;
} 

/* Typography System */

/* Headings */
h1, .h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
    color: var(--neutral-900);
}

h2, .h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
    color: var(--neutral-900);
}

h3, .h3 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: var(--spacing-3);
    color: var(--neutral-800);
}

h4, .h4 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-3);
    color: var(--neutral-800);
}

h5, .h5 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-2);
    color: var(--neutral-700);
}

h6, .h6 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: var(--spacing-2);
    color: var(--neutral-700);
}

/* Responsive Headings */
@media (max-width: 575.98px) {
    h1, .h1 {
        font-size: var(--font-size-4xl);
    }
    
    h2, .h2 {
        font-size: var(--font-size-3xl);
    }
    
    h3, .h3 {
        font-size: var(--font-size-2xl);
    }
}

/* Text Utilities */
.text-xs {
    font-size: var(--font-size-xs);
}

.text-sm {
    font-size: var(--font-size-sm);
}

.text-base {
    font-size: var(--font-size-base);
}

.text-lg {
    font-size: var(--font-size-lg);
}

.text-xl {
    font-size: var(--font-size-xl);
}

.text-2xl {
    font-size: var(--font-size-2xl);
}

.text-3xl {
    font-size: var(--font-size-3xl);
}

.text-4xl {
    font-size: var(--font-size-4xl);
}

.text-5xl {
    font-size: var(--font-size-5xl);
}

.text-6xl {
    font-size: var(--font-size-6xl);
}

/* Font Weights */
.font-thin {
    font-weight: 100;
}

.font-extralight {
    font-weight: 200;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

/* Text Colors */
.text-primary {
    color: var(--primary-600);
}

.text-secondary {
    color: var(--secondary-600);
}

.text-success {
    color: var(--success-500);
}

.text-warning {
    color: var(--warning-500);
}

.text-error {
    color: var(--error-500);
}

.text-neutral {
    color: var(--neutral-600);
}

.text-neutral-light {
    color: var(--neutral-400);
}

.text-neutral-dark {
    color: var(--neutral-800);
}

.text-white {
    color: white;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.normal-case {
    text-transform: none;
}

/* Text Decoration */
.underline {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

.no-underline {
    text-decoration: none;
}

/* Line Height */
.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

/* Letter Spacing */
.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-normal {
    letter-spacing: 0;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}
.mt10{
    margin-top:10px;
}
.mt20{
    margin-top:20px;
}
.mt30{
    margin-top:30px;
}
.mt40{
    margin-top:40px;
}
.mt50{
    margin-top:50px;
}
.mt60{
    margin-top:60px;
}
.mt90{
    margin-top:90px;
}
.mt100{
    margin-top:100px;
}
.mt120{
    margin-top:120px;
}
 @media (max-width: 576px){
     .homebottomcontainer .pattern-group-body{
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
 }

/* ========== MODERN ANIMATION SYSTEM ========== */

/* Animation Durations */
.duration-75 {
    animation-duration: 75ms;
}

.duration-100 {
    animation-duration: 100ms;
}

.duration-150 {
    animation-duration: 150ms;
}

.duration-200 {
    animation-duration: 200ms;
}

.duration-300 {
    animation-duration: 300ms;
}

.duration-500 {
    animation-duration: 500ms;
}

.duration-700 {
    animation-duration: 700ms;
}

.duration-1000 {
    animation-duration: 1000ms;
}

/* Animation Timing Functions */
.ease-linear {
    animation-timing-function: linear;
}

.ease-in {
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation Delays */
.delay-75 {
    animation-delay: 75ms;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-150 {
    animation-delay: 150ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.delay-700 {
    animation-delay: 700ms;
}

.delay-1000 {
    animation-delay: 1000ms;
}

/* Fade Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn var(--transition-normal) ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp var(--transition-normal) ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-down {
    animation: fadeInDown var(--transition-normal) ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft var(--transition-normal) ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight var(--transition-normal) ease-out;
}

/* Scale Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn var(--transition-normal) ease-out;
}

@keyframes scaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.scale-out {
    animation: scaleOut var(--transition-normal) ease-out;
}

/* Slide Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft var(--transition-normal) ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight var(--transition-normal) ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.slide-in-up {
    animation: slideInUp var(--transition-normal) ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.slide-in-down {
    animation: slideInDown var(--transition-normal) ease-out;
}

/* Bounce Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 1s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Ping Animation */
@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Modern Transition Classes */
.transition-all {
    transition-property: all;
    transition-timing-function: var(--transition-normal);
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: var(--transition-normal);
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--transition-normal);
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: var(--transition-normal);
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: var(--transition-normal);
}

/* Overlay with Gradient */
.overlay {
    display: flex;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    animation: fadeIn var(--transition-normal) ease-out;
}

.overlay .spin {
    color: var(--primary-500);
    width: 3rem;
    height: 3rem;
    font-size: var(--font-size-lg);
    animation: spin 1s linear infinite;
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, var(--neutral-200) 25%, var(--neutral-300) 50%, var(--neutral-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

/* Parallax Scroll Effect */
.parallax {
    transition: transform 0.1s ease-out;
}

/* Bounce on Hover */
.bounce-hover:hover {
    animation: bounce 0.6s;
}

/* Shake Animation */
.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Rotate Animation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate {
    animation: rotate 2s linear infinite;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(0.9); }
    20%, 40% { transform: scale(1.1); }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Card Variants */
.card-primary {
    border-top: 4px solid var(--primary-500);
}

.card-secondary {
    border-top: 4px solid var(--secondary-500);
}

.card-success {
    border-top: 4px solid var(--success-500);
}

.card-warning {
    border-top: 4px solid var(--warning-500);
}

.card-error {
    border-top: 4px solid var(--error-500);
}

/* Card Sizes */
.card-sm {
    border-radius: var(--radius-lg);
}

.card-lg {
    border-radius: var(--radius-2xl);
}

/* Card Components */
.card-header {
    padding: var(--spacing-5);
    margin-bottom: 0;
    background-color: white;
    border-bottom: 1px solid var(--neutral-200);
}

.card-header:first-child {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--spacing-5);
}

.card-footer {
    padding: var(--spacing-5);
    background-color: white;
    border-top: 1px solid var(--neutral-200);
}

.card-footer:last-child {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.card-title {
    margin-bottom: var(--spacing-3);
    font-weight: 600;
    line-height: 1.2;
}

.card-subtitle {
    margin-top: calc(var(--spacing-3) * -1);
    margin-bottom: 0;
    font-weight: 400;
    color: var(--neutral-500);
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: var(--spacing-5);
}

/* Card Image */
.card-img-top {
    width: 100%;
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: var(--radius-xl);
    border-bottom-left-radius: var(--radius-xl);
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--spacing-5);
}

/* Image Hover Zoom Effect */
img {
    transition: transform var(--transition-slow);
    max-width: 100%;
    height: auto;
}

.card-product .card-product-inner:hover img {
    transform: scale(1.05);
}

/* Image Hover Effects */
.img-zoom-hover:hover {
    transform: scale(1.05);
}

.img-rotate-hover:hover {
    transform: scale(1.05) rotate(2deg);
}

.img-lift-hover:hover {
    transform: translateY(-5px);
}

/* Image Shapes */
.img-rounded {
    border-radius: var(--radius-lg);
}

.img-circle {
    border-radius: 50%;
}

.img-square {
    border-radius: 0;
}

/* Image Borders */
.img-border {
    border: 1px solid var(--neutral-200);
}

.img-border-primary {
    border: 2px solid var(--primary-500);
}

.img-border-secondary {
    border: 2px solid var(--secondary-500);
}

/* Text Gradient Effect */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gradient-animation {
    animation: gradientFlow 3s ease infinite;
}

/* Gradient Backgrounds */
.bg-gradient-1 {
    background: var(--gradient-1);
}

.bg-gradient-2 {
    background: var(--gradient-2);
}

.bg-gradient-3 {
    background: var(--gradient-3);
}

.bg-gradient-4 {
    background: var(--gradient-4);
}

.bg-gradient-5 {
    background: var(--gradient-5);
}

/* Gradient Buttons */
.btn-gradient-1 {
    background: var(--gradient-1);
    background-size: 200% 200%;
    color: white;
    font-weight: 600;
    border: none;
    animation: gradientMove 3s ease infinite;
}

.btn-gradient-2 {
    background: var(--gradient-2);
    color: white;
}

.btn-gradient-3 {
    background: var(--gradient-3);
    color: white;
}

.btn-gradient-4 {
    background: var(--gradient-4);
    color: white;
}

.btn-gradient-5 {
    background: var(--gradient-5);
    color: white;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animation {
    animation: gradientFlow 3s ease infinite;
}

/* Skeleton Loading Animation */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Neon Glow Effect */
.neon-glow {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5),
                    0 0 10px rgba(102, 126, 234, 0.4),
                    0 0 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.8),
                    0 0 20px rgba(102, 126, 234, 0.6),
                    0 0 30px rgba(102, 126, 234, 0.4);
    }
}

.neon-glow {
    animation: neonPulse 2s ease-in-out infinite;
}

.neon-glow {
    animation: neonPulse 2s ease-in-out infinite;
}

/* Parallax Scroll Effect */
.parallax {
    transition: transform 0.1s ease-out;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.glass-primary {
    background: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: var(--shadow-lg);
}

.glass-secondary {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.glass-success {
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-lg);
}

/* Bounce on Hover */
.bounce-hover:hover {
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.bounce-hover:hover {
    animation: bounce 0.6s;
}

/* ========== MODERN TEMPLATE CLASSES ========== */

/* Responsive Improvements */
@media (max-width: 991px) {
    body::before {
        animation: gradientShift 10s ease infinite;
    }
    
    .card-product .card-product-inner {
        border-radius: 15px;
    }
    
    .homebottomcontainer .pattern-group-body {
        border-radius: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    header.desktop {
        border-radius: 20px;
    }
    
    section.h-center {
        border-radius: 20px;
    }
}

/* Accessibility */
*:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* ========== MODERN TEMPLATE CLASSES ========== */

/* Modern Table Styling */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

table thead {
    background-color: var(--neutral-50);
    font-weight: 600;
}

table th {
    padding: var(--spacing-4);
    text-align: left;
    color: var(--neutral-700);
    font-weight: 600;
    border-bottom: 1px solid var(--neutral-200);
}

table td {
    padding: var(--spacing-4);
    border-bottom: 1px solid var(--neutral-100);
}

table tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: var(--neutral-50);
}

/* Striped Tables */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--neutral-50);
}

.table-striped tbody tr:nth-of-type(odd):hover {
    background-color: var(--neutral-100);
}

/* Bordered Tables */
.table-bordered th,
.table-bordered td {
    border: 1px solid var(--neutral-200);
}

.table-bordered th {
    border-bottom-width: 2px;
}

/* Hoverable Tables */
.table-hover tbody tr:hover {
    background-color: var(--neutral-50);
}

/* Small Tables */
.table-sm th,
.table-sm td {
    padding: var(--spacing-2) var(--spacing-3);
}

/* Responsive Tables */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.modern-card {
    transition: all var(--transition-normal);
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: var(--neutral-800);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.modern-badge i {
    font-size: 14px;
}

.modern-profile {
    animation: fadeIn 0.6s ease-out;
}

.modern-back-button {
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
}

.modern-back-button:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    background: var(--neutral-50);
}

.modern-info-box {
    list-style: none;
    padding: 0;
}

.modern-info-box li {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.modern-info-box li:hover {
    background: rgba(14, 165, 233, 0.02);
    padding-left: var(--spacing-3);
}

.modern-title {
    font-weight: 700 !important;
    color: var(--neutral-800) !important;
    margin-bottom: var(--spacing-5) !important;
}

.modern-price-group {
    padding: var(--spacing-5);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

.modern-prices {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.modern-discount-badge {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-500);
}

.modern-transfer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.modern-rate-badge {
    font-size: var(--font-size-base);
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--radius-full);
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.modern-variant-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Modern Button Styles */
.btn-cart,
.btn-show,
.btn-preview {
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    font-weight: 500;
    background: white;
    border: 2px solid var(--neutral-800);
    color: var(--neutral-800);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-3) var(--spacing-5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    cursor: pointer;
}

.btn-cart:hover,
.btn-show:hover,
.btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--neutral-800);
    color: white;
}

.btn-cart:focus,
.btn-show:focus,
.btn-preview:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Product Carousel Modern */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #1f2937;
    transform: scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #1f2937;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: #fff;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .modern-profile {
        padding: 10px;
    }
    
    .modern-price-group {
        padding: 15px;
    }
    
    .modern-back-button {
        width: 100%;
        text-align: center;
    }
}
* {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== MODERN BUTTON SYSTEM ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-family);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-3) var(--spacing-5);
    font-size: var(--font-size-base);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--spacing-4) var(--spacing-6);
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: var(--spacing-5) var(--spacing-8);
    font-size: var(--font-size-xl);
}

/* Button Variants */
.btn-primary {
    background: var(--primary-600);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-700);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-600);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--secondary-700);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--success-500);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    background: #059669;
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background: var(--warning-500);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    background: #d97706;
    box-shadow: var(--shadow-lg);
}

.btn-error {
    background: var(--error-500);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-error:hover {
    background: #dc2626;
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-300);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-600);
    border: 1px solid var(--primary-300);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--neutral-700);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--neutral-100);
}

.btn-link {
    background: transparent;
    color: var(--primary-600);
    box-shadow: none;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--primary-800);
    background: var(--primary-50);
}

/* Button Shapes */
.btn-rounded {
    border-radius: var(--radius-full);
}

.btn-square {
    border-radius: 0;
}

/* Button States */
.btn:disabled,
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-loading {
    opacity: 0.8;
    cursor: wait;
}

.btn-loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

/* ========== LOADING SPINNER ========== */
.modern-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-primary {
    border-color: rgba(14, 165, 233, 0.3);
    border-top-color: var(--primary-500);
}

.spinner-secondary {
    border-color: rgba(139, 92, 246, 0.3);
    border-top-color: var(--secondary-500);
}

.spinner-success {
    border-color: rgba(16, 185, 129, 0.3);
    border-top-color: var(--success-500);
}

.spinner-warning {
    border-color: rgba(245, 158, 11, 0.3);
    border-top-color: var(--warning-500);
}

.spinner-error {
    border-color: rgba(239, 68, 68, 0.3);
    border-top-color: var(--error-500);
}

/* Spinner Sizes */
.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.spinner-md {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

.spinner-lg {
    width: 50px;
    height: 50px;
    border-width: 4px;
}

.spinner-xl {
    width: 70px;
    height: 70px;
    border-width: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== MICRO INTERACTIONS ========== */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

/* ========== NOTIFICATION BADGE ========== */
.badge-modern {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(245, 87, 108, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========== TOAST NOTIFICATION ========== */
.toast-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10000;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== PROGRESS BAR ========== */
.progress-modern {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-bar-modern {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 50px;
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* ========== ENHANCED TRANSITIONS ========== */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-bounce {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.transition-elastic {
    transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ========== RESPONSIVE DESIGN SYSTEM ========== */

/* Breakpoints */
:root {
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* Container widths */
.container {
    width: 100%;
    padding-right: var(--spacing-4);
    padding-left: var(--spacing-4);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-4);
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .container {
        padding-right: var(--spacing-3);
        padding-left: var(--spacing-3);
    }
    
    /* Extra Small Grid */
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    /* Extra Small Spacing */
    .p-4 {
        padding: var(--spacing-2);
    }
    
    .m-4 {
        margin: var(--spacing-2);
    }
    
    /* Extra Small Typography */
    h1, .h1 {
        font-size: var(--font-size-3xl);
    }
    
    h2, .h2 {
        font-size: var(--font-size-2xl);
    }
    
    h3, .h3 {
        font-size: var(--font-size-xl);
    }
}

/* Large Devices */
@media (min-width: 992px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive Visibility */
.hidden {
    display: none;
}

@media (max-width: 991px) {
    .md\:hidden {
        display: none;
    }
    
    .md\:block {
        display: block;
    }
}

@media (min-width: 992px) {
    .lg\:hidden {
        display: none;
    }
    
    .lg\:block {
        display: block;
    }
}

/* Responsive Text Alignment */
.text-center {
    text-align: center;
}

@media (max-width: 991px) {
    .md\:text-center {
        text-align: center;
    }
    
    .md\:text-left {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .lg\:text-center {
        text-align: center;
    }
    
    .lg\:text-left {
        text-align: left;
    }
}