:root {
    /* Primary Colors */
    --primary-color: #000333;
    --primary-color-dark: #000222;
    --primary-color-light: #f8f9fa;
    
    /* Secondary Colors */
    --secondary-color: #6c757d;
    --accent-color: #00c753;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Status Colors */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    
    /* Spacing */
    --spacer: 1rem;
    --spacer-xs: calc(var(--spacer) * 0.25);
    --spacer-sm: calc(var(--spacer) * 0.5);
    --spacer-md: var(--spacer);
    --spacer-lg: calc(var(--spacer) * 1.5);
    --spacer-xl: calc(var(--spacer) * 3);
    
    /* Borders */
    --border-radius-sm: 0.25rem;
    --border-radius-base: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-pill: 50rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-base: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition-base: all 0.2s ease-in-out;
    --transition-fade: opacity 0.15s linear;
    --transition-collapse: height 0.35s ease;
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--gray-900);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.homebottomcontainer .pattern-group-body{
    border: 1px solid #e3e3e3;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: #fff;
}

.homebottomcontainer .pattern-group-body:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.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;
    }
  }
  /* === EK UYUM CSS – DÜZENSİZLİĞİ GİDERİR === */
  
  /*Hesabım menü*/
  

/* Yeni bölümdeki kutuların mevcut feature-box ölçüleriyle aynı görünmesi için */
.hero-banner .hero-features .feature-box {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 25px;
}

/* Başlık ve yazı hizalamasını mevcut bölümle aynı yapar */
.hero-banner .hero-features .feature-box h3 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

/* Yazılar aşırı sıkışmasın diye */
.hero-banner .hero-features .feature-box p {
  font-size: 15px;
  line-height: 1.55;
}

/* İkonlar mevcut hero ikon boyutuna eşit hale getirilir */
.hero-banner .hero-features .feature-box i {
  font-size: 38px !important;
  margin-bottom: 18px;
}

/* Grid boşlukları hero ile birebir aynı */
.hero-banner .hero-features {
  gap: 30px !important;
  margin-bottom: 60px !important;
}

/* CTA butonun hizası ilk hero ile aynı */
.hero-banner .hero-cta {
  margin-top: 40px !important;
}

/* Responsive uyum – hero ile aynı davranması için */
@media (max-width: 768px) {
  .hero-banner .hero-features .feature-box {
    min-height: 220px;
    padding: 25px 18px;
  }
}

  @-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;
    }
  }
  
  /* Modern Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes pulseSlow {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
      opacity: 1;
    }
  }
  
  @keyframes zoomOut {
    from {
      opacity: 1;
    }
    50% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
      opacity: 0;
    }
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes shake {
    0%, 100% {
      transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
      transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
      transform: translateX(10px);
    }
  }
  
  @keyframes flipInX {
    from {
      transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
      opacity: 0;
    }
    40% {
      transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    }
    60% {
      transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
      opacity: 1;
    }
    80% {
      transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
      transform: perspective(400px);
      opacity: 1;
    }
  }
  
  /* Responsive Breakpoints - Mobile First Approach */
  /* Extra small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .container {
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .grid-cols-xs-1 {
      grid-template-columns: 1fr;
    }
    
    .grid-cols-xs-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .flex-xs-col {
      flex-direction: column;
    }
    
    .flex-xs-row {
      flex-direction: row;
    }
    
    /* Padding utilities for xs screens */
    .p-xs-0 { padding: 0; }
    .p-xs-xs { padding: var(--spacer-xs); }
    .p-xs-sm { padding: var(--spacer-sm); }
    .p-xs-md { padding: var(--spacer-md); }
    .p-xs-lg { padding: var(--spacer-lg); }
    .p-xs-xl { padding: var(--spacer-xl); }
    
    .pt-xs-0 { padding-top: 0; }
    .pt-xs-xs { padding-top: var(--spacer-xs); }
    .pt-xs-sm { padding-top: var(--spacer-sm); }
    .pt-xs-md { padding-top: var(--spacer-md); }
    .pt-xs-lg { padding-top: var(--spacer-lg); }
    .pt-xs-xl { padding-top: var(--spacer-xl); }
    
    .pb-xs-0 { padding-bottom: 0; }
    .pb-xs-xs { padding-bottom: var(--spacer-xs); }
    .pb-xs-sm { padding-bottom: var(--spacer-sm); }
    .pb-xs-md { padding-bottom: var(--spacer-md); }
    .pb-xs-lg { padding-bottom: var(--spacer-lg); }
    .pb-xs-xl { padding-bottom: var(--spacer-xl); }
    
    .pl-xs-0 { padding-left: 0; }
    .pl-xs-xs { padding-left: var(--spacer-xs); }
    .pl-xs-sm { padding-left: var(--spacer-sm); }
    .pl-xs-md { padding-left: var(--spacer-md); }
    .pl-xs-lg { padding-left: var(--spacer-lg); }
    .pl-xs-xl { padding-left: var(--spacer-xl); }
    
    .pr-xs-0 { padding-right: 0; }
    .pr-xs-xs { padding-right: var(--spacer-xs); }
    .pr-xs-sm { padding-right: var(--spacer-sm); }
    .pr-xs-md { padding-right: var(--spacer-md); }
    .pr-xs-lg { padding-right: var(--spacer-lg); }
    .pr-xs-xl { padding-right: var(--spacer-xl); }
    
    /* Margin utilities for xs screens */
    .m-xs-0 { margin: 0; }
    .m-xs-xs { margin: var(--spacer-xs); }
    .m-xs-sm { margin: var(--spacer-sm); }
    .m-xs-md { margin: var(--spacer-md); }
    .m-xs-lg { margin: var(--spacer-lg); }
    .m-xs-xl { margin: var(--spacer-xl); }
    
    .mt-xs-0 { margin-top: 0; }
    .mt-xs-xs { margin-top: var(--spacer-xs); }
    .mt-xs-sm { margin-top: var(--spacer-sm); }
    .mt-xs-md { margin-top: var(--spacer-md); }
    .mt-xs-lg { margin-top: var(--spacer-lg); }
    .mt-xs-xl { margin-top: var(--spacer-xl); }
    
    .mb-xs-0 { margin-bottom: 0; }
    .mb-xs-xs { margin-bottom: var(--spacer-xs); }
    .mb-xs-sm { margin-bottom: var(--spacer-sm); }
    .mb-xs-md { margin-bottom: var(--spacer-md); }
    .mb-xs-lg { margin-bottom: var(--spacer-lg); }
    .mb-xs-xl { margin-bottom: var(--spacer-xl); }
    
    .ml-xs-0 { margin-left: 0; }
    .ml-xs-xs { margin-left: var(--spacer-xs); }
    .ml-xs-sm { margin-left: var(--spacer-sm); }
    .ml-xs-md { margin-left: var(--spacer-md); }
    .ml-xs-lg { margin-left: var(--spacer-lg); }
    .ml-xs-xl { margin-left: var(--spacer-xl); }
    
    .mr-xs-0 { margin-right: 0; }
    .mr-xs-xs { margin-right: var(--spacer-xs); }
    .mr-xs-sm { margin-right: var(--spacer-sm); }
    .mr-xs-md { margin-right: var(--spacer-md); }
    .mr-xs-lg { margin-right: var(--spacer-lg); }
    .mr-xs-xl { margin-right: var(--spacer-xl); }
    
    /* Visibility utilities for xs screens */
    .hidden-xs { display: none !important; }
    .visible-xs { display: block !important; }
    .visible-xs-flex { display: flex !important; }
    .visible-xs-grid { display: grid !important; }
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
    
    .grid-cols-sm-1 {
      grid-template-columns: 1fr;
    }
    
    .grid-cols-sm-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-sm-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-sm-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .flex-sm-row {
      flex-direction: row;
    }
    
    .flex-sm-col {
      flex-direction: column;
    }
    
    /* Padding utilities for sm screens */
    .p-sm-0 { padding: 0; }
    .p-sm-xs { padding: var(--spacer-xs); }
    .p-sm-sm { padding: var(--spacer-sm); }
    .p-sm-md { padding: var(--spacer-md); }
    .p-sm-lg { padding: var(--spacer-lg); }
    .p-sm-xl { padding: var(--spacer-xl); }
    
    .pt-sm-0 { padding-top: 0; }
    .pt-sm-xs { padding-top: var(--spacer-xs); }
    .pt-sm-sm { padding-top: var(--spacer-sm); }
    .pt-sm-md { padding-top: var(--spacer-md); }
    .pt-sm-lg { padding-top: var(--spacer-lg); }
    .pt-sm-xl { padding-top: var(--spacer-xl); }
    
    .pb-sm-0 { padding-bottom: 0; }
    .pb-sm-xs { padding-bottom: var(--spacer-xs); }
    .pb-sm-sm { padding-bottom: var(--spacer-sm); }
    .pb-sm-md { padding-bottom: var(--spacer-md); }
    .pb-sm-lg { padding-bottom: var(--spacer-lg); }
    .pb-sm-xl { padding-bottom: var(--spacer-xl); }
    
    .pl-sm-0 { padding-left: 0; }
    .pl-sm-xs { padding-left: var(--spacer-xs); }
    .pl-sm-sm { padding-left: var(--spacer-sm); }
    .pl-sm-md { padding-left: var(--spacer-md); }
    .pl-sm-lg { padding-left: var(--spacer-lg); }
    .pl-sm-xl { padding-left: var(--spacer-xl); }
    
    .pr-sm-0 { padding-right: 0; }
    .pr-sm-xs { padding-right: var(--spacer-xs); }
    .pr-sm-sm { padding-right: var(--spacer-sm); }
    .pr-sm-md { padding-right: var(--spacer-md); }
    .pr-sm-lg { padding-right: var(--spacer-lg); }
    .pr-sm-xl { padding-right: var(--spacer-xl); }
    
    /* Margin utilities for sm screens */
    .m-sm-0 { margin: 0; }
    .m-sm-xs { margin: var(--spacer-xs); }
    .m-sm-sm { margin: var(--spacer-sm); }
    .m-sm-md { margin: var(--spacer-md); }
    .m-sm-lg { margin: var(--spacer-lg); }
    .m-sm-xl { margin: var(--spacer-xl); }
    
    .mt-sm-0 { margin-top: 0; }
    .mt-sm-xs { margin-top: var(--spacer-xs); }
    .mt-sm-sm { margin-top: var(--spacer-sm); }
    .mt-sm-md { margin-top: var(--spacer-md); }
    .mt-sm-lg { margin-top: var(--spacer-lg); }
    .mt-sm-xl { margin-top: var(--spacer-xl); }
    
    .mb-sm-0 { margin-bottom: 0; }
    .mb-sm-xs { margin-bottom: var(--spacer-xs); }
    .mb-sm-sm { margin-bottom: var(--spacer-sm); }
    .mb-sm-md { margin-bottom: var(--spacer-md); }
    .mb-sm-lg { margin-bottom: var(--spacer-lg); }
    .mb-sm-xl { margin-bottom: var(--spacer-xl); }
    
    .ml-sm-0 { margin-left: 0; }
    .ml-sm-xs { margin-left: var(--spacer-xs); }
    .ml-sm-sm { margin-left: var(--spacer-sm); }
    .ml-sm-md { margin-left: var(--spacer-md); }
    .ml-sm-lg { margin-left: var(--spacer-lg); }
    .ml-sm-xl { margin-left: var(--spacer-xl); }
    
    .mr-sm-0 { margin-right: 0; }
    .mr-sm-xs { margin-right: var(--spacer-xs); }
    .mr-sm-sm { margin-right: var(--spacer-sm); }
    .mr-sm-md { margin-right: var(--spacer-md); }
    .mr-sm-lg { margin-right: var(--spacer-lg); }
    .mr-sm-xl { margin-right: var(--spacer-xl); }
    
    /* Visibility utilities for sm screens */
    .hidden-sm { display: none !important; }
    .visible-sm { display: block !important; }
    .visible-sm-flex { display: flex !important; }
    .visible-sm-grid { display: grid !important; }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
    
    .grid-cols-md-1 {
      grid-template-columns: 1fr;
    }
    
    .grid-cols-md-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-md-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-md-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .flex-md-row {
      flex-direction: row;
    }
    
    .flex-md-col {
      flex-direction: column;
    }
    
    /* Padding utilities for md screens */
    .p-md-0 { padding: 0; }
    .p-md-xs { padding: var(--spacer-xs); }
    .p-md-sm { padding: var(--spacer-sm); }
    .p-md-md { padding: var(--spacer-md); }
    .p-md-lg { padding: var(--spacer-lg); }
    .p-md-xl { padding: var(--spacer-xl); }
    
    .pt-md-0 { padding-top: 0; }
    .pt-md-xs { padding-top: var(--spacer-xs); }
    .pt-md-sm { padding-top: var(--spacer-sm); }
    .pt-md-md { padding-top: var(--spacer-md); }
    .pt-md-lg { padding-top: var(--spacer-lg); }
    .pt-md-xl { padding-top: var(--spacer-xl); }
    
    .pb-md-0 { padding-bottom: 0; }
    .pb-md-xs { padding-bottom: var(--spacer-xs); }
    .pb-md-sm { padding-bottom: var(--spacer-sm); }
    .pb-md-md { padding-bottom: var(--spacer-md); }
    .pb-md-lg { padding-bottom: var(--spacer-lg); }
    .pb-md-xl { padding-bottom: var(--spacer-xl); }
    
    .pl-md-0 { padding-left: 0; }
    .pl-md-xs { padding-left: var(--spacer-xs); }
    .pl-md-sm { padding-left: var(--spacer-sm); }
    .pl-md-md { padding-left: var(--spacer-md); }
    .pl-md-lg { padding-left: var(--spacer-lg); }
    .pl-md-xl { padding-left: var(--spacer-xl); }
    
    .pr-md-0 { padding-right: 0; }
    .pr-md-xs { padding-right: var(--spacer-xs); }
    .pr-md-sm { padding-right: var(--spacer-sm); }
    .pr-md-md { padding-right: var(--spacer-md); }
    .pr-md-lg { padding-right: var(--spacer-lg); }
    .pr-md-xl { padding-right: var(--spacer-xl); }
    
    /* Margin utilities for md screens */
    .m-md-0 { margin: 0; }
    .m-md-xs { margin: var(--spacer-xs); }
    .m-md-sm { margin: var(--spacer-sm); }
    .m-md-md { margin: var(--spacer-md); }
    .m-md-lg { margin: var(--spacer-lg); }
    .m-md-xl { margin: var(--spacer-xl); }
    
    .mt-md-0 { margin-top: 0; }
    .mt-md-xs { margin-top: var(--spacer-xs); }
    .mt-md-sm { margin-top: var(--spacer-sm); }
    .mt-md-md { margin-top: var(--spacer-md); }
    .mt-md-lg { margin-top: var(--spacer-lg); }
    .mt-md-xl { margin-top: var(--spacer-xl); }
    
    .mb-md-0 { margin-bottom: 0; }
    .mb-md-xs { margin-bottom: var(--spacer-xs); }
    .mb-md-sm { margin-bottom: var(--spacer-sm); }
    .mb-md-md { margin-bottom: var(--spacer-md); }
    .mb-md-lg { margin-bottom: var(--spacer-lg); }
    .mb-md-xl { margin-bottom: var(--spacer-xl); }
    
    .ml-md-0 { margin-left: 0; }
    .ml-md-xs { margin-left: var(--spacer-xs); }
    .ml-md-sm { margin-left: var(--spacer-sm); }
    .ml-md-md { margin-left: var(--spacer-md); }
    .ml-md-lg { margin-left: var(--spacer-lg); }
    .ml-md-xl { margin-left: var(--spacer-xl); }
    
    .mr-md-0 { margin-right: 0; }
    .mr-md-xs { margin-right: var(--spacer-xs); }
    .mr-md-sm { margin-right: var(--spacer-sm); }
    .mr-md-md { margin-right: var(--spacer-md); }
    .mr-md-lg { margin-right: var(--spacer-lg); }
    .mr-md-xl { margin-right: var(--spacer-xl); }
    
    /* Visibility utilities for md screens */
    .hidden-md { display: none !important; }
    .visible-md { display: block !important; }
    .visible-md-flex { display: flex !important; }
    .visible-md-grid { display: grid !important; }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
    
    .grid-cols-lg-1 {
      grid-template-columns: 1fr;
    }
    
    .grid-cols-lg-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-lg-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-lg-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .flex-lg-row {
      flex-direction: row;
    }
    
    .flex-lg-col {
      flex-direction: column;
    }
    
    /* Padding utilities for lg screens */
    .p-lg-0 { padding: 0; }
    .p-lg-xs { padding: var(--spacer-xs); }
    .p-lg-sm { padding: var(--spacer-sm); }
    .p-lg-md { padding: var(--spacer-md); }
    .p-lg-lg { padding: var(--spacer-lg); }
    .p-lg-xl { padding: var(--spacer-xl); }
    
    .pt-lg-0 { padding-top: 0; }
    .pt-lg-xs { padding-top: var(--spacer-xs); }
    .pt-lg-sm { padding-top: var(--spacer-sm); }
    .pt-lg-md { padding-top: var(--spacer-md); }
    .pt-lg-lg { padding-top: var(--spacer-lg); }
    .pt-lg-xl { padding-top: var(--spacer-xl); }
    
    .pb-lg-0 { padding-bottom: 0; }
    .pb-lg-xs { padding-bottom: var(--spacer-xs); }
    .pb-lg-sm { padding-bottom: var(--spacer-sm); }
    .pb-lg-md { padding-bottom: var(--spacer-md); }
    .pb-lg-lg { padding-bottom: var(--spacer-lg); }
    .pb-lg-xl { padding-bottom: var(--spacer-xl); }
    
    .pl-lg-0 { padding-left: 0; }
    .pl-lg-xs { padding-left: var(--spacer-xs); }
    .pl-lg-sm { padding-left: var(--spacer-sm); }
    .pl-lg-md { padding-left: var(--spacer-md); }
    .pl-lg-lg { padding-left: var(--spacer-lg); }
    .pl-lg-xl { padding-left: var(--spacer-xl); }
    
    .pr-lg-0 { padding-right: 0; }
    .pr-lg-xs { padding-right: var(--spacer-xs); }
    .pr-lg-sm { padding-right: var(--spacer-sm); }
    .pr-lg-md { padding-right: var(--spacer-md); }
    .pr-lg-lg { padding-right: var(--spacer-lg); }
    .pr-lg-xl { padding-right: var(--spacer-xl); }
    
    /* Margin utilities for lg screens */
    .m-lg-0 { margin: 0; }
    .m-lg-xs { margin: var(--spacer-xs); }
    .m-lg-sm { margin: var(--spacer-sm); }
    .m-lg-md { margin: var(--spacer-md); }
    .m-lg-lg { margin: var(--spacer-lg); }
    .m-lg-xl { margin: var(--spacer-xl); }
    
    .mt-lg-0 { margin-top: 0; }
    .mt-lg-xs { margin-top: var(--spacer-xs); }
    .mt-lg-sm { margin-top: var(--spacer-sm); }
    .mt-lg-md { margin-top: var(--spacer-md); }
    .mt-lg-lg { margin-top: var(--spacer-lg); }
    .mt-lg-xl { margin-top: var(--spacer-xl); }
    
    .mb-lg-0 { margin-bottom: 0; }
    .mb-lg-xs { margin-bottom: var(--spacer-xs); }
    .mb-lg-sm { margin-bottom: var(--spacer-sm); }
    .mb-lg-md { margin-bottom: var(--spacer-md); }
    .mb-lg-lg { margin-bottom: var(--spacer-lg); }
    .mb-lg-xl { margin-bottom: var(--spacer-xl); }
    
    .ml-lg-0 { margin-left: 0; }
    .ml-lg-xs { margin-left: var(--spacer-xs); }
    .ml-lg-sm { margin-left: var(--spacer-sm); }
    .ml-lg-md { margin-left: var(--spacer-md); }
    .ml-lg-lg { margin-left: var(--spacer-lg); }
    .ml-lg-xl { margin-left: var(--spacer-xl); }
    
    .mr-lg-0 { margin-right: 0; }
    .mr-lg-xs { margin-right: var(--spacer-xs); }
    .mr-lg-sm { margin-right: var(--spacer-sm); }
    .mr-lg-md { margin-right: var(--spacer-md); }
    .mr-lg-lg { margin-right: var(--spacer-lg); }
    .mr-lg-xl { margin-right: var(--spacer-xl); }
    
    /* Visibility utilities for lg screens */
    .hidden-lg { display: none !important; }
    .visible-lg { display: block !important; }
    .visible-lg-flex { display: flex !important; }
    .visible-lg-grid { display: grid !important; }
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  /* Extra extra large devices (larger desktops, 1400px and up) */
  @media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
    
    .grid-cols-xl-1 {
      grid-template-columns: 1fr;
    }
    
    .grid-cols-xl-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-xl-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-xl-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    
    /* Padding utilities for xl screens */
    .p-xl-0 { padding: 0; }
    .p-xl-xs { padding: var(--spacer-xs); }
    .p-xl-sm { padding: var(--spacer-sm); }
    .p-xl-md { padding: var(--spacer-md); }
    .p-xl-lg { padding: var(--spacer-lg); }
    .p-xl-xl { padding: var(--spacer-xl); }
    
    .pt-xl-0 { padding-top: 0; }
    .pt-xl-xs { padding-top: var(--spacer-xs); }
    .pt-xl-sm { padding-top: var(--spacer-sm); }
    .pt-xl-md { padding-top: var(--spacer-md); }
    .pt-xl-lg { padding-top: var(--spacer-lg); }
    .pt-xl-xl { padding-top: var(--spacer-xl); }
    
    .pb-xl-0 { padding-bottom: 0; }
    .pb-xl-xs { padding-bottom: var(--spacer-xs); }
    .pb-xl-sm { padding-bottom: var(--spacer-sm); }
    .pb-xl-md { padding-bottom: var(--spacer-md); }
    .pb-xl-lg { padding-bottom: var(--spacer-lg); }
    .pb-xl-xl { padding-bottom: var(--spacer-xl); }
    
    .pl-xl-0 { padding-left: 0; }
    .pl-xl-xs { padding-left: var(--spacer-xs); }
    .pl-xl-sm { padding-left: var(--spacer-sm); }
    .pl-xl-md { padding-left: var(--spacer-md); }
    .pl-xl-lg { padding-left: var(--spacer-lg); }
    .pl-xl-xl { padding-left: var(--spacer-xl); }
    
    .pr-xl-0 { padding-right: 0; }
    .pr-xl-xs { padding-right: var(--spacer-xs); }
    .pr-xl-sm { padding-right: var(--spacer-sm); }
    .pr-xl-md { padding-right: var(--spacer-md); }
    .pr-xl-lg { padding-right: var(--spacer-lg); }
    .pr-xl-xl { padding-right: var(--spacer-xl); }
    
    /* Margin utilities for xl screens */
    .m-xl-0 { margin: 0; }
    .m-xl-xs { margin: var(--spacer-xs); }
    .m-xl-sm { margin: var(--spacer-sm); }
    .m-xl-md { margin: var(--spacer-md); }
    .m-xl-lg { margin: var(--spacer-lg); }
    .m-xl-xl { margin: var(--spacer-xl); }
    
    .mt-xl-0 { margin-top: 0; }
    .mt-xl-xs { margin-top: var(--spacer-xs); }
    .mt-xl-sm { margin-top: var(--spacer-sm); }
    .mt-xl-md { margin-top: var(--spacer-md); }
    .mt-xl-lg { margin-top: var(--spacer-lg); }
    .mt-xl-xl { margin-top: var(--spacer-xl); }
    
    .mb-xl-0 { margin-bottom: 0; }
    .mb-xl-xs { margin-bottom: var(--spacer-xs); }
    .mb-xl-sm { margin-bottom: var(--spacer-sm); }
    .mb-xl-md { margin-bottom: var(--spacer-md); }
    .mb-xl-lg { margin-bottom: var(--spacer-lg); }
    .mb-xl-xl { margin-bottom: var(--spacer-xl); }
    
    .ml-xl-0 { margin-left: 0; }
    .ml-xl-xs { margin-left: var(--spacer-xs); }
    .ml-xl-sm { margin-left: var(--spacer-sm); }
    .ml-xl-md { margin-left: var(--spacer-md); }
    .ml-xl-lg { margin-left: var(--spacer-lg); }
    .ml-xl-xl { margin-left: var(--spacer-xl); }
    
    .mr-xl-0 { margin-right: 0; }
    .mr-xl-xs { margin-right: var(--spacer-xs); }
    .mr-xl-sm { margin-right: var(--spacer-sm); }
    .mr-xl-md { margin-right: var(--spacer-md); }
    .mr-xl-lg { margin-right: var(--spacer-lg); }
    .mr-xl-xl { margin-right: var(--spacer-xl); }
    
    /* Visibility utilities for xl screens */
    .hidden-xl { display: none !important; }
    .visible-xl { display: block !important; }
    .visible-xl-flex { display: flex !important; }
    .visible-xl-grid { display: grid !important; }
  }
  

/* Reset */
a {
    color: var(--main-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--main-color2);
    transform: translateY(-2px);
}

/* Modern Grid and Flexbox Utilities */
.grid {
    display: grid;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.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);
}

.grid-gap-0 {
    gap: 0;
}

.grid-gap-xs {
    gap: var(--spacer-xs);
}

.grid-gap-sm {
    gap: var(--spacer-sm);
}

.grid-gap-md {
    gap: var(--spacer-md);
}

.grid-gap-lg {
    gap: var(--spacer-lg);
}

.grid-gap-xl {
    gap: var(--spacer-xl);
}

.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.items-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.items-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.items-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.items-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.justify-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-evenly {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

/* General Responsive Utilities */
.w-100 { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }
.w-auto { width: auto; }

.h-100 { height: 100%; }
.h-75 { height: 75%; }
.h-50 { height: 50%; }
.h-25 { height: 25%; }
.h-auto { height: auto; }

.min-w-100 { min-width: 100%; }
.min-h-100 { min-height: 100%; }

.max-w-100 { max-width: 100%; }
.max-h-100 { max-height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-static { position: static; }
.position-sticky { position: sticky; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-table { display: table; }
.d-table-cell { display: table-cell; }

/* Spacing Utilities */
.p-0 { padding: 0; }
.p-xs { padding: var(--spacer-xs); }
.p-sm { padding: var(--spacer-sm); }
.p-md { padding: var(--spacer-md); }
.p-lg { padding: var(--spacer-lg); }
.p-xl { padding: var(--spacer-xl); }

.pt-0 { padding-top: 0; }
.pt-xs { padding-top: var(--spacer-xs); }
.pt-sm { padding-top: var(--spacer-sm); }
.pt-md { padding-top: var(--spacer-md); }
.pt-lg { padding-top: var(--spacer-lg); }
.pt-xl { padding-top: var(--spacer-xl); }

.pb-0 { padding-bottom: 0; }
.pb-xs { padding-bottom: var(--spacer-xs); }
.pb-sm { padding-bottom: var(--spacer-sm); }
.pb-md { padding-bottom: var(--spacer-md); }
.pb-lg { padding-bottom: var(--spacer-lg); }
.pb-xl { padding-bottom: var(--spacer-xl); }

.pl-0 { padding-left: 0; }
.pl-xs { padding-left: var(--spacer-xs); }
.pl-sm { padding-left: var(--spacer-sm); }
.pl-md { padding-left: var(--spacer-md); }
.pl-lg { padding-left: var(--spacer-lg); }
.pl-xl { padding-left: var(--spacer-xl); }

.pr-0 { padding-right: 0; }
.pr-xs { padding-right: var(--spacer-xs); }
.pr-sm { padding-right: var(--spacer-sm); }
.pr-md { padding-right: var(--spacer-md); }
.pr-lg { padding-right: var(--spacer-lg); }
.pr-xl { padding-right: var(--spacer-xl); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-xs { padding-left: var(--spacer-xs); padding-right: var(--spacer-xs); }
.px-sm { padding-left: var(--spacer-sm); padding-right: var(--spacer-sm); }
.px-md { padding-left: var(--spacer-md); padding-right: var(--spacer-md); }
.px-lg { padding-left: var(--spacer-lg); padding-right: var(--spacer-lg); }
.px-xl { padding-left: var(--spacer-xl); padding-right: var(--spacer-xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-xs { padding-top: var(--spacer-xs); padding-bottom: var(--spacer-xs); }
.py-sm { padding-top: var(--spacer-sm); padding-bottom: var(--spacer-sm); }
.py-md { padding-top: var(--spacer-md); padding-bottom: var(--spacer-md); }
.py-lg { padding-top: var(--spacer-lg); padding-bottom: var(--spacer-lg); }
.py-xl { padding-top: var(--spacer-xl); padding-bottom: var(--spacer-xl); }

.m-0 { margin: 0; }
.m-xs { margin: var(--spacer-xs); }
.m-sm { margin: var(--spacer-sm); }
.m-md { margin: var(--spacer-md); }
.m-lg { margin: var(--spacer-lg); }
.m-xl { margin: var(--spacer-xl); }
.m-auto { margin: auto; }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacer-xs); }
.mt-sm { margin-top: var(--spacer-sm); }
.mt-md { margin-top: var(--spacer-md); }
.mt-lg { margin-top: var(--spacer-lg); }
.mt-xl { margin-top: var(--spacer-xl); }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--spacer-xs); }
.mb-sm { margin-bottom: var(--spacer-sm); }
.mb-md { margin-bottom: var(--spacer-md); }
.mb-lg { margin-bottom: var(--spacer-lg); }
.mb-xl { margin-bottom: var(--spacer-xl); }
.mb-auto { margin-bottom: auto; }

.ml-0 { margin-left: 0; }
.ml-xs { margin-left: var(--spacer-xs); }
.ml-sm { margin-left: var(--spacer-sm); }
.ml-md { margin-left: var(--spacer-md); }
.ml-lg { margin-left: var(--spacer-lg); }
.ml-xl { margin-left: var(--spacer-xl); }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-xs { margin-right: var(--spacer-xs); }
.mr-sm { margin-right: var(--spacer-sm); }
.mr-md { margin-right: var(--spacer-md); }
.mr-lg { margin-right: var(--spacer-lg); }
.mr-xl { margin-right: var(--spacer-xl); }
.mr-auto { margin-right: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-xs { margin-left: var(--spacer-xs); margin-right: var(--spacer-xs); }
.mx-sm { margin-left: var(--spacer-sm); margin-right: var(--spacer-sm); }
.mx-md { margin-left: var(--spacer-md); margin-right: var(--spacer-md); }
.mx-lg { margin-left: var(--spacer-lg); margin-right: var(--spacer-lg); }
.mx-xl { margin-left: var(--spacer-xl); margin-right: var(--spacer-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-xs { margin-top: var(--spacer-xs); margin-bottom: var(--spacer-xs); }
.my-sm { margin-top: var(--spacer-sm); margin-bottom: var(--spacer-sm); }
.my-md { margin-top: var(--spacer-md); margin-bottom: var(--spacer-md); }
.my-lg { margin-top: var(--spacer-lg); margin-bottom: var(--spacer-lg); }
.my-xl { margin-top: var(--spacer-xl); margin-bottom: var(--spacer-xl); }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-base); }
.shadow-md { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }
.shadow-none { box-shadow: none; }

.shadow-hover-sm:hover { box-shadow: var(--shadow-sm); }
.shadow-hover:hover { box-shadow: var(--shadow-base); }
.shadow-hover-md:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
.shadow-hover-lg:hover { box-shadow: var(--shadow-lg); }
.shadow-hover-xl:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }

/* Border Radius Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded { border-radius: var(--border-radius-base); }
.rounded-md { border-radius: calc(var(--border-radius-base) * 1.5); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }
.rounded-full { border-radius: var(--border-radius-pill); }
.rounded-circle { border-radius: 50%; }

.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-t-sm { border-top-left-radius: var(--border-radius-sm); border-top-right-radius: var(--border-radius-sm); }
.rounded-t { border-top-left-radius: var(--border-radius-base); border-top-right-radius: var(--border-radius-base); }
.rounded-t-lg { border-top-left-radius: var(--border-radius-lg); border-top-right-radius: var(--border-radius-lg); }
.rounded-t-xl { border-top-left-radius: var(--border-radius-xl); border-top-right-radius: var(--border-radius-xl); }
.rounded-t-full { border-top-left-radius: var(--border-radius-pill); border-top-right-radius: var(--border-radius-pill); }

.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.rounded-b-sm { border-bottom-left-radius: var(--border-radius-sm); border-bottom-right-radius: var(--border-radius-sm); }
.rounded-b { border-bottom-left-radius: var(--border-radius-base); border-bottom-right-radius: var(--border-radius-base); }
.rounded-b-lg { border-bottom-left-radius: var(--border-radius-lg); border-bottom-right-radius: var(--border-radius-lg); }
.rounded-b-xl { border-bottom-left-radius: var(--border-radius-xl); border-bottom-right-radius: var(--border-radius-xl); }
.rounded-b-full { border-bottom-left-radius: var(--border-radius-pill); border-bottom-right-radius: var(--border-radius-pill); }

/* Animation Utilities */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

.fadeIn { 
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
.fadeInUp { 
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.fadeInDown { 
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.fadeInLeft { 
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.fadeInRight { 
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.pulse { 
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
.pulseSlow { 
    -webkit-animation-name: pulseSlow;
    animation-name: pulseSlow;
}

.slideInLeft { 
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
.slideInRight { 
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
.slideInUp { 
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
.slideInDown { 
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.zoomIn { 
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
.zoomOut { 
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

.rotate { 
    -webkit-animation-name: rotate;
    animation-name: rotate;
}
.shake { 
    -webkit-animation-name: shake;
    animation-name: shake;
}
.flipInX { 
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

.float-animation { 
    -webkit-animation-name: float;
    animation-name: float;
}
.bounce-animation { 
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/* Transition Utilities */
.transition-all {
    -webkit-transition: all var(--transition-base);
    -o-transition: all var(--transition-base);
    transition: all var(--transition-base);
}

.transition-colors {
    -webkit-transition: color, background-color, border-color, text-decoration-color, fill, stroke var(--transition-base);
    -o-transition: color, background-color, border-color, text-decoration-color, fill, stroke var(--transition-base);
    transition: color, background-color, border-color, text-decoration-color, fill, stroke var(--transition-base);
}

.transition-opacity {
    -webkit-transition: opacity var(--transition-base);
    -o-transition: opacity var(--transition-base);
    transition: opacity var(--transition-base);
}

.transition-shadow {
    -webkit-transition: box-shadow var(--transition-base);
    -o-transition: box-shadow var(--transition-base);
    transition: box-shadow var(--transition-base);
}

.transition-transform {
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}

.ease-linear { 
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.ease-in { 
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
    -o-transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-out { 
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in-out { 
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-75 { 
    -webkit-transition-duration: 75ms;
    -o-transition-duration: 75ms;
    transition-duration: 75ms;
}
.duration-100 { 
    -webkit-transition-duration: 100ms;
    -o-transition-duration: 100ms;
    transition-duration: 100ms;
}
.duration-150 { 
    -webkit-transition-duration: 150ms;
    -o-transition-duration: 150ms;
    transition-duration: 150ms;
}
.duration-200 { 
    -webkit-transition-duration: 200ms;
    -o-transition-duration: 200ms;
    transition-duration: 200ms;
}
.duration-300 { 
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}
.duration-500 { 
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}
.duration-700 { 
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
}
.duration-1000 { 
    -webkit-transition-duration: 1000ms;
    -o-transition-duration: 1000ms;
    transition-duration: 1000ms;
}

/* Common Transition Classes */
.transition-fast { 
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.transition-normal { 
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.transition-slow { 
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Hover Effect Utilities */
.hover-scale { 
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-scale:hover { 
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.hover-scale-sm { 
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-scale-sm:hover { 
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.hover-scale-lg { 
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-scale-lg:hover { 
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hover-rotate { 
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-rotate:hover { 
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
}

.hover-shadow { transition: box-shadow var(--transition-base); }
.hover-shadow:hover { box-shadow: var(--shadow-lg); }

.hover-shadow-sm { transition: box-shadow var(--transition-base); }
.hover-shadow-sm:hover { box-shadow: var(--shadow-base); }

.hover-lift { 
    -webkit-transition: -webkit-transform var(--transition-base), box-shadow var(--transition-base);
    transition: -webkit-transform var(--transition-base), box-shadow var(--transition-base);
    -o-transition: transform var(--transition-base), box-shadow var(--transition-base);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transition: transform var(--transition-base), box-shadow var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-lift:hover { 
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-underline { position: relative; }
.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    -webkit-transition: width var(--transition-base);
    -o-transition: width var(--transition-base);
    transition: width var(--transition-base);
}
.hover-underline:hover::after { width: 100%; }

.hover-grow { 
    -webkit-transition: all var(--transition-base);
    -o-transition: all var(--transition-base);
    transition: all var(--transition-base);
}
.hover-grow:hover { 
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.hover-shrink { 
    -webkit-transition: all var(--transition-base);
    -o-transition: all var(--transition-base);
    transition: all var(--transition-base);
}
.hover-shrink:hover { 
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.hover-bounce { 
    -webkit-transition: -webkit-transform var(--transition-base);
    transition: -webkit-transform var(--transition-base);
    -o-transition: transform var(--transition-base);
    transition: transform var(--transition-base);
    transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.hover-bounce:hover { 
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.hover-bounce:active { 
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

/* Modern Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--main-color2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Modern Hover Effects */
.hover-lift {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

.clicked {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: -webkit-transform 0.1s ease;
    -o-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

/* Modern Hover Effects */
.hover-lift {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

.clicked {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition: -webkit-transform 0.1s ease;
    -o-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

/* Overlay */
.overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, .4);
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.overlay .spin {
    color: var(--main-color);
    width: 3rem;
    height: 3rem;
    font-size: 20px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


/* Opacity */
.op-black {
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.op-black.hide {
    visibility: hidden;
    opacity: 0;
}

.op-black.show {
    visibility: visible;
    opacity: 1;
}

/* Header (Desktop) */
header.desktop  {
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 10px 20px;
    margin: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header.desktop:hover {
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

header.desktop .h-contact {
    background: #fff;
    border-radius: 15px;
    padding: 10px 0;
    -webkit-animation: fadeIn 0.5s ease;
    animation: fadeIn 0.5s ease;
}

.dropdown-languages-1 .dropdown-toggle {
    color: #b6b6b6;
    -webkit-transition: all var(--transition-time);
    -o-transition: all var(--transition-time);
    transition: all var(--transition-time);
}

.dropdown-languages-1 .dropdown-toggle:hover{
    color: #000;
}

.dropdown-currencies-1 .dropdown-toggle {
    color: #b6b6b6;
    -webkit-transition: all var(--transition-time);
    -o-transition: all var(--transition-time);
    transition: all var(--transition-time);
}

.dropdown-currencies-1 .dropdown-toggle:hover{
    color: #000;
}

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: 0px;
    display: -webkit-flex;
    -webkit-align-items: center; 
    display: flex;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: slideInLeft 0.5s ease;
    animation: slideInLeft 0.5s ease;
}

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;
    -webkit-transition: all var(--transition-time);
    -o-transition: all var(--transition-time);
    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:1px solid #a1a1a1;
    border-radius:16px;
}
.header-area .search input::placeholder{
    font-size:12px;
}

header.desktop .search form input {
    float: left;
    color: #666;
    font-weight: 400;
    width: 100%;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 25px!important;
    background: #fff !important;
    height: 40px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding-left: 20px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.desktop .search form input:focus {
    border-color: var(--main-color);
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    outline: none;
}
.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-color: #fff;
    border: 2px solid #a1a1a160;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: fadeIn 0.7s ease;
}

section.h-center:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.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;
    -webkit-transition: all var(--transition-time);
    -o-transition: all var(--transition-time);
    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;
    -webkit-box-shadow: 0 0 12px -13px rgb(0 0 0 / 75%);
    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 {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 45px;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

header.desktop .mega-menu .nav-item {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

header.desktop .mega-menu .nav-link {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: 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;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 5px;
}

header.desktop .mega-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--main-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 2px;
}

header.desktop .mega-menu .nav-link:hover::after,
header.desktop .mega-menu .nav-link.active::after {
    width: 80%;
}

header.desktop .mega-menu .nav-link:hover {
    color: var(--menu-color-hover);
    background: rgba(0,0,0,0.03);
}

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 0 15px 15px;
    background-color: #fff;
    width:100%;
    left:-1px;
    right:0;
    top:45px;
    position: absolute;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
    border: 1px solid #ebebeb;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.desktop .mega-menu .dropdown:hover .dropdown-menu, 
header.desktop .mega-menu .dropdown .dropdown-menu:hover {
    display:block!important;
    opacity: 1;
    visibility: visible;
    transform: translateY(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 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.mega-menu-container .sub-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 10px;
    transition: all 0.3s ease;
}

.mega-menu-container .sub-title:hover{
    color: var(--main-color);
    padding-left: 20px;
}

.mega-menu-container .sub-title:hover::before {
    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; 
}

/* Modern Card Styles */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    background: #fff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-header {
    background: transparent;
    border: none;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
}

.card-body {
    padding: 20px;
}

.card-img-top {
    border-radius: 15px 15px 0 0;
}

/* Modern Product Card Styles */
.modern-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.toast-modern {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 9999;
    min-width: 260px;
}
.toast-modern.show {
    opacity: 1;
    transform: translateY(0);
}
.toast-modern.hide {
    opacity: 0;
    transform: translateY(-10px);
}
.toast-modern .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}
.toast-modern .toast-icon i {
    font-size: 18px;
}
.toast-modern .toast-message {
    flex: 1;
    font-size: 14px;
}
.toast-modern .toast-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.toast-modern .toast-progress {
    height: 3px;
    background: rgba(255,255,255,0.6);
    width: 100%;
    animation-name: toast-progress;
    animation-timing-function: linear;
}
@keyframes toast-progress {
    from { width: 100%; }
    to { width: 0; }
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9999;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple .6s linear;
    pointer-events: none;
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

.pulse-primary { animation: pulse 2s infinite; }
.pulse-success { animation: pulse 2s infinite; }

.transitioning { will-change: opacity, transform; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.slide-in-right { animation: slideInRight .3s ease; }

body.page-transition { opacity: .6; transition: opacity .3s ease; }

.modern-alert-container { backdrop-filter: blur(2px); }
.modern-alert-popup { border-radius: 12px; }
.modern-alert-title { font-weight: 700; }
.modern-alert-content { font-size: 14px; }
.modern-alert-confirm-btn { border-radius: 8px; }
.modern-alert-cancel-btn { border-radius: 8px; }

.progress-bar-modern {
    height: 6px;
    width: 0;
    background: #000;
    transition: width .3s ease;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card-inner {
    position: relative;
}

/* Badge Area */
.badge-area {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.badge:hover {
    transform: scale(1.05);
}

.badge i {
    margin-right: 5px;
    font-size: 10px;
}

.free-shipping-badge {
    background: #000;
}

.discount-badge {
    background: #ff0000;
}

.color-badge {
    background: #666;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f8f8;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .image-container img {
    transform: scale(1.05);
}

.favorite-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modern-product-card:hover .quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.action-btn i {
    font-size: 16px;
}

.disabled-btn {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.disabled-btn:hover {
    background: #f0f0f0;
    color: #999;
    transform: none;
}

/* Product Info */
.product-link {
    text-decoration: none;
    color: inherit;
}

.product-info {
    padding: 20px;
}

.ratings {
    margin-bottom: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #000;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-details {
    margin-bottom: 15px;
}

.brand-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.product-code {
    font-size: 12px;
    color: #999;
}

/* Price Section */
.price-section {
    margin-bottom: 15px;
}

.prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.basket-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
}

.basket-price .label {
    font-weight: 600;
    color: #000;
}

.basket-price .price {
    font-weight: 700;
    color: #ff0000;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #000;
    color: #fff;
}

.qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 14px;
    outline: none;
}

/* Add to Cart Button */
.add-to-cart-section {
    padding: 0 20px 20px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Modern Product Card Styles */
.modern-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card-inner {
    position: relative;
}

/* Badge Area */
.badge-area {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.badge:hover {
    transform: scale(1.05);
}

.badge i {
    margin-right: 5px;
    font-size: 10px;
}

.free-shipping-badge {
    background: #000;
}

.discount-badge {
    background: #ff0000;
}

.color-badge {
    background: #666;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f8f8;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .image-container img {
    transform: scale(1.05);
}

.favorite-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modern-product-card:hover .quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.action-btn i {
    font-size: 16px;
}

.disabled-btn {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.disabled-btn:hover {
    background: #f0f0f0;
    color: #999;
    transform: none;
}

/* Product Info */
.product-link {
    text-decoration: none;
    color: inherit;
}

.product-info {
    padding: 20px;
}

.ratings {
    margin-bottom: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #000;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-details {
    margin-bottom: 15px;
}

.brand-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.product-code {
    font-size: 12px;
    color: #999;
}

/* Price Section */
.price-section {
    margin-bottom: 15px;
}

.prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.basket-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
}

.basket-price .label {
    font-weight: 600;
    color: #000;
}

.basket-price .price {
    font-weight: 700;
    color: #ff0000;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #000;
    color: #fff;
}

.qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 14px;
    outline: none;
}

/* Add to Cart Button */
.add-to-cart-section {
    padding: 0 20px 20px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn i {
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

header.mobile {
    display: none;
    background: #fff;
    height: 60px;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

header.mobile .left {
    width: 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: none;
    box-shadow: none;
}


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: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 !important;
    border-left: 1px solid #e6e6e6;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 10px;
    background: #fff;
}

.stores .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.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;
    padding: 50px 0 20px;
    border-top: 1px solid #eee;
    animation: fadeIn 1s ease;
}

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;
    animation: slideInLeft 0.5s ease;
}

footer .logo-area .logo img {
    max-height: 100px;
    max-width: 230px;
    transition: all 0.3s ease;
}

footer .logo-area .logo img:hover {
    transform: scale(1.05);
}

footer .logo-description {
    margin-top: 15px;
    color: #666;
    animation: fadeIn 0.7s ease;
}

footer .info {
    padding: 25px 0;
}

footer .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

footer .titleLogo {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer .titleLogo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
}

footer .secure .description {
    color: #000;
    margin: 5px 0;
}

footer .secure img {
    opacity: .5;
    transition: all 0.3s ease;
}

footer .secure img:hover {
    opacity: 1;
    transform: scale(1.05);
}

footer .info ul {
    padding: 0;
    margin: 0;
}

footer .info ul li {
    list-style: none;
    padding: 5px 0;
}

footer .info ul li a {
    display: block;
    color: #666;
    font-size: 15px;
    line-height: 25px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

footer .info ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    opacity: 0;
    transition: all 0.3s ease;
}

footer .info ul li a:hover {
    color: var(--main-color);
    padding-left: 25px;
}

footer .info ul li a:hover::before {
    opacity: 1;
}

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 .bar {
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

footer .bar a {
    color: #666;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

footer .bar a:hover {
    color: var(--main-color);
}

footer .bar p {
    margin: 0;
    color: #333;
    text-align: center;
}

/* Social Media Icons */
.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 5px;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-media a i {
    position: relative;
    z-index: 2;
}

.social-media a:hover {
    color: white;
    transform: translateY(-5px);
}

.social-media a:hover::before {
    transform: scale(1);
}

/* Responsive Footer */
@media (max-width: 991px) {
    footer .info .title {
        cursor: pointer;
        padding: 15px 0;
        border-top: 1px solid #eee;
    }
    
    footer .info .title::after {
        right: 0;
        left: auto;
        width: 10px;
        height: 10px;
        background: transparent;
        border: 2px solid #333;
        border-top: 0;
        border-left: 0;
        transform: rotate(45deg);
        transition: all 0.3s ease;
    }
    
    footer .info .title.rotate::after {
        transform: rotate(225deg);
    }
}

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: #333;
   font-weight: 400;
   margin-left: .25rem;
   border-bottom: 0;
   font-size: 19px;
   border-bottom: 0;
}

.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: 0px;
    border: 1px solid #fff;
    margin-bottom: 5px;
    max-width: 35px;
    border-radius: 10px;
}
.product-profile-1 .carousel .carousel-indicators li img{
    border-radius: 10px;
}
.product-profile-1 .carousel .carousel-inner{
    border-radius: 25px;
    border:0px!important;
    background-color: #f5f5f5;
}
.product-body .product-rate{
    padding: 5px 10px;
    color: #111;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    display: inline-flex;
}

.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: #000000!important;
    background-image: linear-gradient(#000000,#000000)!important;
    text-shadow: 0 -1px 0 #000000!important;
    color: #fff!important;
    border: 1px solid #000000!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: solid 1px #e6e6e6;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 2.5px;
    margin-top: 2.5px;
    box-sizing: border-box;
    border-radius: 8px;
    min-width: 48px;
    padding: 0 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s;
}

.product-body .variant-box ul li .options a:hover{
   background-color: #000000;
   color: #ffffff;
   border-color: #000000;
}

.product-body .variant-box ul li .options a.active{
   background-color: #000000;
   color: #ffffff;
   border-color: #000000;
}
.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: #222;
    text-decoration: none !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 11px 0px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
    border-radius: 0;
    padding: 11px 10px;
}

.accordion-product .card-header i {
    font-size: 11px;
    padding-top: 3px;
}

.product-contact {
    border: 1px solid #ebebeb;
    padding: 10px;
    color: #444;
    background: #fff;
    width: 100%;
}

.product-body .product-favourite {
    font-size: 20px;
    position: relative;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    border: solid 1px #e6e6e6;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-item .faq-question:focus{
    outline:none!important; 
    outline:none!important; 
}

.product-body .product-buttons{
    margin-bottom: 10px;
    padding: 0 0px;
    background: #fff;
    align-items: center;
}

.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: #40903f;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    width: inherit;
}

.product-profile-1 .variant-box{
    background: #fff;    
    border:0;
}

.product-profile-1 .variant-box .variant:nth-child(1){
    display:none;
}

.product-profile-1 .discount{
    height: 40px;
    width: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 3px;
    z-index: 1;
    background-color: red;
}

.product-body{
    background: #fff !important;
}

.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: #fff;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px; /* köşe yuvarlatma */
}

.product-body .product-info-name{
    flex: 0 0 auto;
    width: 30%;
    color: #5e5e5e;
    border-radius: 10px; /* isteğe bağlı */
}

.product-body .product-profile-info .value{
    flex: 1 1 auto;
    display: none;
    align-items: baseline;
    word-break: break-word;
    border-radius: 10px; /* isteğe bağlı */
}

.product-body .p-g-mod-base-content{
    background: transparent !important;
    border: 0 !important;
    border-radius: 10px; /* isteğe bağlı */
}

.card-product .card-product-inner{
    padding: 0px;
    padding-bottom: 10px;
    border-radius: 10px; /* kart köşeleri */
}

.card-product .card-product-inner .image-wrapper{
    margin-top: 10px;
    border-radius: 10px; /* resim alanı */
    overflow: hidden; /* resmin yuvarlaklığı düzgün olsun */
}

.card-product .card-product-inner .price-group .discount{
    background: red;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 6px; /* etiket köşeleri */
}


.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: 0 5px;
    background: #f24504;
    color:#fff;
    border-radius: 5px;
    margin-top: 5px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 600;
}

.show-category .homepage-sale-desc,
.butik-story .homepage-sale-desc{
    font-size: 12px;
    margin-right: 5px;
}
.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: #404040;
    white-space: nowrap;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.card-product .card-product-inner .title:hover {
    color: var(--main-color);
}

.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: 500;
    color: #333;
    line-height: normal;
    background-color: #fff;
    text-align: center;
    animation: pulse 2s infinite;
}

.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: #ff1;
    border-radius: 10px;
    background-color: #f5f5f5;
}
.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: 500;
    align-items: center;
    border-radius: 5px;
    border: solid 1px #d9d9d9;
    width: 95px;
    padding: 5px 0;
    margin-right: 10px !important;
    height: 46px;
    margin: 10px 0;
}

.product-body .product-profile-1 .product-unit  input[type=checkbox],
.product-body .product-profile-1 .product-unit  input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;
}

.product-body .product-profile-1 .product-unit input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #96be67;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid #ebebeb;
}

/* ÃœrÃ¼n KartÄ± - Adet SeÃ§imi */

.card-product .card-product-inner .quantity {
    margin: 5px 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-basis: auto;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn {
    display: flex;
    width: 35px;
    height: 35px;
    color: #555;
    font-size: 10px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    align-items: center;
    justify-content: center;
}

.card-product .card-product-inner .quantity .btn:first-child {
    border-radius: 0;
}

.card-product .card-product-inner .quantity .btn:hover {
    color: #333;
    background: #f2f2f2;
    border-color: #f5f5f5;
}

.card-product .card-product-inner .quantity input {
    min-width: 35px;
    max-width: 50px;
    height: 35px;
    border-radius: 0;
    border-color: #dbdbdb !important;
    background: #fff;
    color: #555;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    border-right: 0;
    border-left: 0;
}

.subtitle-img 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: #f2f2f2;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border-left: 5px solid var(--main-color);
    font-size:14px;
    color:#7a7a7a;
}

/* 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: #ffffff;
       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: #000000;
       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: #009688;
}

.card-product .card-product-inner .buttons .btn-cart,
.modal-content .buttons .btn-cart{
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
    width:100%;
    border-radius:0;
}

.card-product .card-product-inner .buttons .btn-cart i,
.modal-content .buttons .btn-cart i{
    margin-right: 7px;
}

.card-product .card-product-inner .buttons .btn-cart:hover,
.modal-content .buttons .btn-cart:hover{
    background: var(--add-cart-list-bg-hover);
    border-color: #000;
    color: var(--add-cart-list-hover) !important;
    
}

.card-product .down-to-top .btn-cart{
    background: var(--add-cart-list-bg);
    border-color: var(--add-cart-list-bg);
    color: var(--add-cart-list) !important;
    transition: var(--transition-time);
    font-size: 13px;
}

.card-product .down-to-top .btn-cart:hover{
    background: var(--add-cart-list-bg-hover);
    border-color: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover) !important;
}

.product-buttons .btn-cart{
    background: #000000;
    border-color: #000000;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex:1;
    border-radius: 10px;
    border:0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-buttons .btn-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    background: -o-linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.product-buttons .btn-cart:hover::before {
    width: 100%;
}

.product-buttons .btn-cart:hover{
    background: #000000;
    border-color: #333;
    color: #fff;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-buttons .btn-fast-buy{
    background: var(--buy-now-bg);
    border-color: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
}

.product-buttons .btn-fast-buy:hover{
    background: var(--buy-now-bg-hover);
    border-color: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}


.payment-final-buttons-1 .btn-complete{
    background: var(--complete-payment-bg);
    border-color: var(--complete-payment-bg);
    color: var(--complete-payment);
    transition: all var(--transition-time);
}

.payment-final-buttons-1 .btn-complete:hover{
    background: #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: 12px !important;
    font-weight: 500;
        
}
        
.header-cart-summary-1 .buttons {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
}

.header-cart-summary-1 .buttons .btn {
    font-size: 12px !important;
    padding: 5px 3px !important;
    margin: 5px;
    background: var(--add-cart-list-bg);
    color: var(--add-cart-list);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn:hover {
    background: var(--add-cart-list-bg-hover);
    color: var(--add-cart-list-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 {
    background: var(--buy-now-bg);
    color: var(--buy-now);
    transition: all var(--transition-time);
}

.header-cart-summary-1 .buttons .btn-color-2:hover{
    background: var(--buy-now-bg-hover);
    color: var(--buy-now-hover);
}

.header-cart-summary-1 .buttons .btn-color-2 i{
    font-size: 8px;
    padding-left: 3px;
}


.ajax-shopping-cart {
    padding: 15px;
    font-size: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.ajax-cart-empty{
    font-size: 13px !important;
    text-align: center;
    padding: 20px 0;
}

.ajax-shopping-cart .product {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    padding-top: 10px;
}

.ajax-shopping-cart .product:last-child{
    display: flex;
    margin-bottom: 10px;
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

.ajax-shopping-cart .product .image {
    flex: 2;
}

.ajax-shopping-cart .product .price {
    flex: 2;
    font-size: 13px;
    text-align: right;
}

.ajax-shopping-cart .product .info {
    flex: 3;
    text-align:right;
}

.ajax-shopping-cart .product .info .name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

@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: #000000;
    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 20px;
    color: #525252;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
}
.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 20px;
    color: #525252;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
}
.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: 0px;
    color:#15284b;
    font-weight: 500;
    background-color: rgb(255, 255, 255);
    text-align:center;
    font-size: 15px;
}
.BayiForm option{
  font-size: 13px;
  font-weight:500;
}
.BayiForm option:nth-child(1){
  display:none;
}
.BayiForm .IletisimForm{
    width: 100%;
    height: 53px;
    border-radius: 0px;
    margin: 0 0 10px;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    background-color: white;
    border: 2px solid #ffffff;
    box-shadow: 0px 15px 25px 15px rgba(0, 0, 0, 0.155);
}
.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: 16px;
  text-align: center;
  color: #15284b;
  padding: 10px 0;
}
.btn-form{
  width: 100%;
  height: 50px;
  background-color:#00c753;
  border:none;
  border-radius:8px;
  font-size:20px;
  font-weight:400;
  color:#fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-form:hover{
    color:#fff;
    background-color:#218838;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-form:focus{
    color: #000;    
    background-color: #1ab43c;    
    border-color: #1e7e34;    
    -webkit-box-shadow: 0 0 0 .2rem rgb(0 157 66 / 50%);
    box-shadow: 0 0 0 .2rem rgb(0 157 66 / 50%);
    outline: 0;
}
.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{
    font-size: 15px!important;
}
.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;
} 

/*== Fonts Size, Font Weights, Display & Position ==*/
.fz0 {
  font-size: 0px;
}

.fz6 {
  font-size: 6px;
}

.fz7 {
  font-size: 7px;
}

.fz8 {
  font-size: 8px;
}

.fz9 {
  font-size: 9px;
}

.fz10 {
  font-size: 10px;
}

.fz11 {
  font-size: 11px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

.fz17 {
  font-size: 17px;
}

.fz18 {
  font-size: 18px;
}

.fz19 {
  font-size: 19px;
}

.fz20 {
  font-size: 20px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz40 {
  font-size: 40px;
}

.fz45 {
  font-size: 45px;
}

.fz48 {
  font-size: 48px;
}

.fz50 {
  font-size: 50px;
}

.fz55 {
  font-size: 55px;
}

.fz60 {
  font-size: 60px;
}

.fz72 {
  font-size: 72px;
}

.fz100 {
  font-size: 100px;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

.fwn {
  font-weight: normal;
}

.fwb {
  font-weight: bold;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.dif {
  display: inline-flex;
}

.df {
  display: flex;
}

.dn {
  display: none;
}

.bdrs0 {
  border-radius: 0;
}

.bdrs4 {
  border-radius: 4px;
}

.bdrs6 {
  border-radius: 6px;
}

.bdrs8 {
  border-radius: 8px;
}

.bdrs12 {
  border-radius: 12px;
}

.bdrs16 {
  border-radius: 16px;
}

.bdrs24 {
  border-radius: 24px;
}

.bdrs20 {
  border-radius: 20px;
}

.bdrs30 {
  border-radius: 30px;
}

.bdrs32 {
  border-radius: 32px;
}

.bdrs50 {
  border-radius: 50px;
}

.bdrs60 {
  border-radius: 60px;
}

.bdrs70 {
  border-radius: 70px;
}

.bdrs90 {
  border-radius: 90px;
}

.bdrs120 {
  border-radius: 120px;
}
.h1{
  font-size: 45px;
}

.h2{
  font-size: 32px;
}

.h3{
  font-size: 24px;
}

.h4 {
  font-size: 20px;
}

.h5{
  font-size: 17px;
}

.h6{
  font-size: 15px;
}


@media (max-width: 575.98px) {
  .h2{
    font-size: 20px;
  }
}
.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: 0px solid #e3e3e3;
}
 }