@charset "UTF-8";

/* MOBILE HEADER - REFERANS RESİME GÖRE */
@media screen and (max-width: 768px) {
  
  /* HEADER STICKY */
  #appHeader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease !important;
  }
  
  /* Header scroll effect */
  #appHeader.scrolled {
    background: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
  
  /* Body'ye top padding ekle sticky header için */
  body {
    padding-top: 100px !important;
  }

  /* ÜST KIRMIZI BAR - SADECE KAYAN MESAJLAR */
  .header-top {
    background: #e6a000 !important;
    padding: 10px 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  /* Dil ve para birimi gizle mobile'da */
  .language-switch {
    display: none !important;
  }
  
  /* Telefon bilgisi gizle mobile'da */  
  .phone-info {
    display: none !important;
  }
  
  /* Kayan mesajlar tam genişlikte ortalı */
  .announcement-slider {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }
  
  .announcement-content {
    color: white !important;
    font-size: 12px !important; /* Küçültüldü */
    font-weight: 600 !important;
    text-align: center !important;
  }
  
  .announcement-nav {
    display: none !important; /* Oklar gizli mobile'da */
  }
  
  /* ANA HEADER - TEK SATIR LAYOUT */
  .main-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 8px 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    min-height: 60px !important;
    transition: all 0.3s ease !important;
  }
  
  /* Header scroll efekti için */
  #appHeader.scrolled .main-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  }
  
  .main-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 10px !important;
    height: 100% !important;
  }
  
  .main-header .row {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  
  /* SOL - HAMBURGER MENU */
  .col-lg-4:first-child {
    flex: 0 0 auto !important;
    width: auto !important;
    order: 1 !important;
  }
  
  .mobile-menu-btn {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #333 !important;
    padding: 8px !important;
    display: block !important;
  }
  
  /* Search toggle'ı hamburger menu yap */
  .search-toggle {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #333 !important;
    padding: 8px !important;
    display: block !important;
  }
  
  .search-toggle i {
    display: inline-block !important;
    font-size: 24px !important;
  }
  
  /* .search-toggle:before removed - was causing hamburger icon on search button */
  
  /* MOBILE MENU OVERLAY */
  .mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.8) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: -300px !important;
    width: 280px !important;
    height: 100vh !important;
    background: white !important;
    z-index: 10000 !important;
    transition: left 0.3s ease !important;
    overflow-y: auto !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
  }
  
  .mobile-menu.active {
    left: 0 !important;
  }
  
  .mobile-menu-header {
    background: #e6a000 !important;
    padding: 20px !important;
    color: white !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .mobile-menu-close {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .mobile-menu-content {
    padding: 20px !important;
  }
  
  .mobile-menu-item {
    display: block !important;
    padding: 15px 0 !important;
    color: #333 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eee !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }
  
  .mobile-menu-item:hover {
    color: #e6a000 !important;
  }
  
  .mobile-search {
    margin-bottom: 20px !important;
  }
  
  .mobile-search input {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #ddd !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    outline: none !important;
  }
  
  .mobile-search input:focus {
    border-color: #e6a000 !important;
  }
  
  /* Mobile Search Dropdown - Header altında */
  .mobile-search-overlay {
    position: fixed !important;
    top: 100px !important; /* Header yüksekliği kadar */
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-radius: 0 0 15px 15px !important;
  }
  
  .mobile-search-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  
  .mobile-search-form {
    background: transparent !important;
    padding: 20px !important;
    width: 100% !important;
  }
  
  .mobile-search-form input {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    outline: none !important;
    margin-bottom: 15px !important;
    background: #f8f9fa !important;
  }
  
  .mobile-search-form input:focus {
    border-color: #e6a000 !important;
    background: white !important;
  }
  
  .mobile-search-form button {
    width: 100% !important;
    padding: 12px !important;
    background: #e6a000 !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }

  /* Search container gizle */
  .search-container {
    display: none !important;
  }
  
  /* ORTA - LOGO */
  .col-lg-4:nth-child(2) {
    flex: 1 !important;
    order: 2 !important;
    text-align: center !important;
  }
  
  .header-logo {
    text-align: center !important;
    margin: 0 !important;
    padding: 2px 5px !important;
  }
  
  .header-logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  /* SAĞ - SADECE SEPET */
  .col-lg-4:last-child {
    flex: 0 0 auto !important;
    width: auto !important;
    order: 3 !important;
  }
  
  .header-icons {
    justify-content: flex-end !important;
    gap: 5px !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Kullanıcı ve favoriler gizle */
  .header-icons .dropdown:first-child,
  .header-icons a[href*="favorites"] {
    display: none !important;
  }
  
  /* Arama butonu mobilde göster */
  .mobile-search-btn {
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    color: #333 !important;
    padding: 8px !important;
    display: block !important;
    border-radius: 50% !important;
  }
  
  /* Sepet ikonu */
  .header-icons .dropdown:last-child .icon-btn {
    font-size: 22px !important;
    color: #333 !important;
    padding: 8px !important;
    background: none !important;
    border: none !important;
    position: relative !important;
  }
  
  .cart-badge {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: #e6a000 !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    min-width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
  }
  
  /* ALT MENÜ TAMAMEN GİZLE */
  .bottom-menu {
    display: none !important;
  }
  /* Hero Section Mobile - Ekrana tam sığacak */
  .hero-section {
    margin-top: 0 !important;
    width: 100vw !important;
    overflow: hidden !important;
  }
  
  /* Mobile slider height */
  @media (max-width: 768px) {
    .swiper-slide,
    .hero-slide, 
    .slider-container,
    .hero-content {
      height: 300px !important;
    }
    
    .slider-image {
      max-width: 100vw !important;
      display: block !important;
      height: 250px !important;
    }
  }
  
  /* Desktop slider height */
  @media (min-width: 769px) {
    .swiper-slide,
    .hero-slide, 
    .slider-container,
    .hero-content {
      height: 800px !important;
    }
    
    .slider-image {
      width: 100vw !important;
      max-width: 100vw !important;
      display: block !important;
      object-fit: cover !important;
      height: 800px !important;
    }
  }
  
  /* Mobile categories horizontal scroll */
  @media (max-width: 768px) {
    .category-full-width-grid .row {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      -webkit-overflow-scrolling: touch !important;
      scroll-behavior: smooth !important;
      padding: 0 15px !important;
    }
    
    .category-full-width-grid .col-6 {
      flex: 0 0 280px !important;
      max-width: 280px !important;
      margin-right: 15px !important;
    }
    
    .category-full-width-grid .col-6:last-child {
      margin-right: 0 !important;
    }
  }
  
  /* Mobile product tabs horizontal layout */
  @media (max-width: 768px) {
    .product-tabs-wrapper .nav-pills {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      -webkit-overflow-scrolling: touch !important;
      scroll-behavior: smooth !important;
      justify-content: center !important;
      padding: 0 15px !important;
    }
    
    .product-tabs-wrapper .nav-item {
      flex: 0 0 auto !important;
      margin-right: 10px !important;
    }
    
    .product-tabs-wrapper .nav-link {
      white-space: nowrap !important;
      padding: 12px 20px !important;
      font-size: 12px !important;
      margin-right: 0 !important;
    }
  }
  
  /* Hide category filter sidebar on mobile - products page */
  @media (max-width: 768px) {
    .page-categories .filter-sidebar,
    .page-categories .col-12.col-md-3 {
      display: none !important;
    }
    
    .page-categories .col-12.col-md-9 {
      flex: 0 0 100% !important;
      max-width: 100% !important;
    }
  }
  
  /* Products page modern card effects */
  .product-card-modern:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
  }
  
  .product-card-modern:hover .product-main-image {
    transform: scale(1.1) !important;
  }
  
  .product-card-modern .btn-modern-cart:hover {
    background: linear-gradient(45deg, #cc8f00, #cc8f00) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(230, 160, 0, 0.4) !important;
  }
  
  .product-card-modern .add-wishlist:hover {
    background: rgba(230, 160, 0, 0.1) !important;
    transform: scale(1.1) !important;
  }
  
  /* Category hover effect */
  .category-full-width-grid .category-big-card:hover .category-hover-overlay {
    opacity: 1 !important;
  }

  /* Hero content mobile */
  .hero-content .container {
    padding: 0 15px !important;
  }
  
  .hero-text-wrapper {
    padding: 20px !important;
    text-align: center !important;
  }
  
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }
  
  .hero-actions .btn {
    padding: 10px 20px !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    width: auto !important;
    display: inline-block !important;
  }

  /* Section Titles Mobile */
  .section-title-modern {
    font-size: 1.4rem !important;
    margin: 25px 0 20px 0 !important;
    text-align: center !important;
  }
  
  .section-subtitle-modern {
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
  }

  /* Container and Layout Mobile */
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .row > [class*="col-"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Category Cards Mobile */
  .category-card-kutoglu {
    height: 120px !important;
    margin-bottom: 15px !important;
    border-radius: 12px !important;
  }
  
  .category-card-kutoglu h5 {
    font-size: 0.9rem !important;
    padding: 10px !important;
    line-height: 1.3 !important;
  }
  
  .category-card-kutoglu .category-overlay {
    border-radius: 12px !important;
  }

  /* Product Cards Mobile */
  .product-card-modern {
    margin-bottom: 20px !important;
    border-radius: 15px !important;
  }
  
  .product-image-container,
  .product-main-image,
  .product-placeholder {
    height: 200px !important;
    border-radius: 15px 15px 0 0 !important;
  }
  
  .product-info-modern {
    padding: 12px !important;
  }
  
  .product-name-modern a {
    font-size: 13px !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  
  .product-price-display {
    margin: 10px 0 !important;
    text-align: center !important;
  }
  
  .product-price-display .current-price {
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  
  .product-price-display .old-price {
    font-size: 12px !important;
  }

  /* Product Variants Mobile */
  .product-variants {
    margin-bottom: 12px !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  
  .variant-option {
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    margin: 1px !important;
  }

  /* Buttons Mobile */
  .btn-add-cart {
    font-size: 11px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    width: 100% !important;
    margin-top: 5px !important;
  }

  /* Product Actions Mobile */
  .product-quick-actions {
    top: 8px !important;
    right: 8px !important;
  }
  
  .product-quick-actions .btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  /* Features Section Mobile */
  .hero-features {
    padding: 20px 0 !important;
  }
  
  .hero-features .feature-item {
    padding: 15px 8px !important;
    text-align: center !important;
  }
  
  .hero-features .feature-icon i {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }
  
  .hero-features h6 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
  }
  
  .hero-features small {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }

  /* Tab Navigation Mobile */
  .nav-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .nav-tabs .nav-link {
    font-size: 12px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  /* Grid Mobile */
  .col-6 {
    margin-bottom: 15px !important;
  }

  /* Spacing Mobile */
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  
  .module-line {
    margin-bottom: 25px !important;
  }
  
  /* MOBILE BOTTOM NAVIGATOR */
  .mobile-bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(135deg, #e6a000 0%, #f44336 100%) !important;
    height: 70px !important;
    z-index: 1001 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15) !important;
    width: 100vw !important;
  }
  
  .mobile-nav-btn {
    background: none !important;
    border: none !important;
    color: rgba(255,255,255,0.7) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 8px 12px !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    min-width: 50px !important;
    font-size: 10px !important;
  }
  
  .mobile-nav-btn.active,
  .mobile-nav-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    transform: translateY(-2px) !important;
  }
  
  .mobile-nav-btn i {
    font-size: 18px !important;
    margin-bottom: 2px !important;
  }
  
  .mobile-nav-btn span {
    font-size: 9px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
  }
  
  /* Orta Home butonu */
  .mobile-nav-home {
    background: rgba(255,255,255,0.9) !important;
    color: #e6a000 !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    transform: translateY(-10px) !important;
    text-decoration: none !important;
  }
  
  .mobile-nav-home:hover,
  .mobile-nav-home.active {
    background: white !important;
    transform: translateY(-12px) scale(1.05) !important;
    color: #e6a000 !important;
  }
  
  .mobile-nav-home i {
    font-size: 26px !important;
    margin: 0 !important;
  }
  
  .mobile-nav-home span {
    display: none !important;
  }
  
  /* Body padding for bottom nav */
  body {
    padding-bottom: 80px !important;
  }
}

/* KUTOGLU THEME - HEADER STYLES */
.header-desktop {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: #fff;
}

.header-desktop .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-desktop .nav-link:hover,
.header-desktop .nav-link.active {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}

.header-icons .btn {
  border: none;
  color: #333;
  transition: all 0.3s ease;
}

.header-icons .btn:hover {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}

.search-group .form-control {
  border-radius: 25px 0 0 25px;
  border: 1px solid #ddd;
}

.search-group .btn {
  border-radius: 0 25px 25px 0;
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.search-group .btn:hover {
  background-color: #218838;
  border-color: #218838;
}

.header-top {
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

/* HERO SECTION STYLES */
.hero-section {
  min-height: 500px;
}



.hero-content {
  z-index: 2;
}

.hero-overlay {
  z-index: 1;
}

.hero-features {
  border-top: 3px solid #28a745;
}

/* CATEGORIES SECTION */
.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.shadow-hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* FEATURED PRODUCTS */
.featured-products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.nav-pills .nav-link {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
  transform: translateY(-2px);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-actions {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.product-actions .btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SECTION TITLES */
.section-title {
  color: #333;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
  border-radius: 3px;
}

/* FOOTER STYLES */
.modern-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.footer-title {
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #28a745;
  border-radius: 2px;
}

.footer-links a {
  transition: all 0.3s ease;
  font-size: 14px;
}

.hover-text-success:hover {
  color: #28a745 !important;
  padding-left: 5px;
}

.social-links .btn {
  transition: all 0.3s ease;
}

.social-links .btn:hover {
  background-color: #28a745;
  border-color: #28a745;
  transform: translateY(-2px);
}

.newsletter-form .form-control {
  border-right: none;
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: #28a745;
  color: white;
  box-shadow: none;
}

.payment-icon {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-icon:hover {
  opacity: 1;
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
  
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .category-card,
  .product-card {
    margin-bottom: 1rem;
  }
  
  .footer-main .col-lg-4,
  .footer-main .col-lg-2 {
    margin-bottom: 2rem;
  }
}

.min-h1 {
  min-height: 100px;
}

.min-h2 {
  min-height: 200px;
}

.min-h3 {
  min-height: 300px;
}

.min-h4 {
  min-height: 400px;
}

.min-h5 {
  min-height: 500px;
}

.min-h6 {
  min-height: 600px;
}

.wp-100 {
  width: 100px;
  flex: 0 0 100px;
}

.wp-200 {
  width: 200px;
  flex: 0 0 200px;
}

.wp-300 {
  width: 300px;
  flex: 0 0 300px;
}

.wp-400 {
  width: 400px;
  flex: 0 0 400px;
}

.wp-500 {
  width: 500px;
  flex: 0 0 500px;
}

.wp-600 {
  width: 600px;
  flex: 0 0 600px;
}

.wp-700 {
  width: 700px;
  flex: 0 0 700px;
}

.wp-800 {
  width: 800px;
  flex: 0 0 800px;
}

.wp-900 {
  width: 900px;
  flex: 0 0 900px;
}

.wp-1000 {
  width: 1000px;
  flex: 0 0 1000px;
}

.wp-100- {
  width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

.wp-200- {
  width: calc(100% - 200px);
  flex: 0 0 calc(100% - 200px);
}

.wp-300- {
  width: calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
}

.wp-400- {
  width: calc(100% - 400px);
  flex: 0 0 calc(100% - 400px);
}

.wp-500- {
  width: calc(100% - 500px);
  flex: 0 0 calc(100% - 500px);
}

.wp-600- {
  width: calc(100% - 600px);
  flex: 0 0 calc(100% - 600px);
}

.wp-700- {
  width: calc(100% - 700px);
  flex: 0 0 calc(100% - 700px);
}

.wp-800- {
  width: calc(100% - 800px);
  flex: 0 0 calc(100% - 800px);
}

.wp-900- {
  width: calc(100% - 900px);
  flex: 0 0 calc(100% - 900px);
}

.wp-1000- {
  width: calc(100% - 1000px);
  flex: 0 0 calc(100% - 1000px);
}

.h-min-100 {
  min-height: 100px;
}

.h-min-200 {
  min-height: 200px;
}

.h-min-300 {
  min-height: 300px;
}

.h-min-400 {
  min-height: 400px;
}

.h-min-500 {
  min-height: 500px;
}

.h-min-600 {
  min-height: 600px;
}

.h-min-700 {
  min-height: 700px;
}

.h-min-800 {
  min-height: 800px;
}

.h-min-900 {
  min-height: 900px;
}

.h-min-1000 {
  min-height: 1000px;
}

.w-min-100 {
  min-width: 100px;
}

.w-min-200 {
  min-width: 200px;
}

.w-min-300 {
  min-width: 300px;
}

.w-min-400 {
  min-width: 400px;
}

.w-min-500 {
  min-width: 500px;
}

.w-min-600 {
  min-width: 600px;
}

.w-min-700 {
  min-width: 700px;
}

.w-min-800 {
  min-width: 800px;
}

.w-min-900 {
  min-width: 900px;
}

.w-min-1000 {
  min-width: 1000px;
}

.w-max-100 {
  max-width: 100px;
}

.w-max-200 {
  max-width: 200px;
}

.w-max-300 {
  max-width: 300px;
}

.w-max-400 {
  max-width: 400px;
}

.w-max-500 {
  max-width: 500px;
}

.w-max-600 {
  max-width: 600px;
}

.w-max-700 {
  max-width: 700px;
}

.w-max-800 {
  max-width: 800px;
}

.w-max-900 {
  max-width: 900px;
}

.w-max-1000 {
  max-width: 1000px;
}

.hp-100 {
  height: 100px;
}

.hp-200 {
  height: 200px;
}

.hp-300 {
  height: 300px;
}

.hp-400 {
  height: 400px;
}

.hp-500 {
  height: 500px;
}

.hp-600 {
  height: 600px;
}

.hp-700 {
  height: 700px;
}

.hp-800 {
  height: 800px;
}

.hp-900 {
  height: 900px;
}

.hp-1000 {
  height: 1000px;
}

.wh-10 {
  height: 10px;
  width: 10px;
  flex: 0 0 10px;
}

.wh-20 {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
}

.wh-30 {
  height: 30px;
  width: 30px;
  flex: 0 0 30px;
}

.wh-40 {
  height: 40px;
  width: 40px;
  flex: 0 0 40px;
}

.wh-50 {
  height: 50px;
  width: 50px;
  flex: 0 0 50px;
}

.wh-60 {
  height: 60px;
  width: 60px;
  flex: 0 0 60px;
}

.wh-70 {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
}

.wh-80 {
  height: 80px;
  width: 80px;
  flex: 0 0 80px;
}

.wh-90 {
  height: 90px;
  width: 90px;
  flex: 0 0 90px;
}

.wh-100 {
  height: 100px;
  width: 100px;
  flex: 0 0 100px;
}

a {
  text-decoration: none;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  color: #fff !important;
}

[v-cloak] {
  display: none;
}

.table-response thead {
  display: none;
}
@media (min-width: 768px) {
  .table-response thead {
    display: table-header-group;
  }
}
.table-response:not(.table-response.table-bordered) tr td:first-child, .table-response:not(.table-response.table-bordered) tr th:first-child {
  padding-left: 0;
}
.table-response:not(.table-response.table-bordered) tr td:last-child, .table-response:not(.table-response.table-bordered) tr th:last-child {
  padding-right: 0;
}
.table-response td {
  display: block;
  text-align: right;
  clear: both;
}
.table-response td::before {
  content: attr(data-title) ": ";
  float: left;
}
@media (min-width: 768px) {
  .table-response td::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .table-response td {
    display: table-cell;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table-response td {
    border-bottom: none;
  }
  .table-response td:last-child {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 24px;
    margin-bottom: 14px;
  }
}

.quantity-wrap {
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  width: 140px;
  height: inherit;
  overflow: hidden;
  position: relative;
}
.quantity-wrap.disabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.quantity-wrap input {
  border: none;
  text-align: center;
  padding: 0;
  font-size: 18px;
  height: inherit;
  box-shadow: none !important;
}
.quantity-wrap input::-webkit-inner-spin-button, .quantity-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-wrap div {
  font-size: 18px;
  height: inherit;
  width: 38px;
  flex: 0 0 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}
.quantity-wrap div:hover {
  color: #E91E63;
}

.tabs-plus {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.tabs-plus .nav-item {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .tabs-plus .nav-item {
    margin-right: 40px;
  }
}
.tabs-plus .nav-link {
  padding-left: 2px;
  padding-right: 2px;
  border: none !important;
  color: #888;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs-plus .nav-link {
    font-size: 18px;
  }
}
.tabs-plus .nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222;
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
  display: none;
}
.tabs-plus .nav-link.active {
  color: #222;
  font-weight: bold;
}
.tabs-plus .nav-link.active::after {
  transform: scaleX(1);
  display: block;
}

.is-up-file .img-upload-item {
  border-style: dashed !important;
}
.is-up-file .img-upload-item:hover {
  background-color: #f4f4f4 !important;
  border-color: #E91E63 !important;
}
.is-up-file .img-upload-item:active {
  background-color: #e4e4e4 !important;
}
.is-up-file .img-upload-item .tool-wrap > div:first-of-type {
  border-right: 1px solid #fff;
}
.is-up-file .img-upload-item .tool-wrap > div:hover {
  background-color: #1d4ff3;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #e6a000;
}

.page-head {
  padding: 40px 0;
  background: #EFF1FE;
  text-align: center;
}
@media (max-width: 768px) {
  .page-head {
    padding: 20px 0;
  }
}
.page-head .page-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 14px;
}
.page-head .breadcrumb {
  margin-bottom: 0;
  font-size: 15px;
}
.page-head .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f285";
  font-size: 12px;
  margin-top: 3px;
  font-family: "bootstrap-icons";
}
.page-head .breadcrumb a {
  text-decoration: none;
}

.page-product-content {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .page-product-content {
    margin-top: 1.5rem;
  }
}
.page-product-content .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.page-product-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 10px;
}
.page-product-content .title-box .sub-title {
  font-size: 16px;
  color: #666;
}
.page-product-content .product-item {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(194, 49, 244, 0.1);
}
.page-product-content .product-item .top {
  background-color: #F3F7FF;
  height: 70px;
  display: flex;
  align-items: center;
}
.page-product-content .product-item .top .left {
  width: 70px;
  height: 70px;
  background-color: #E91E63;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-product-content .product-item .top .left i {
  color: #fff;
  font-size: 20px;
}
.page-product-content .product-item .top .name {
  font-size: 18px;
  padding: 0 10px 0 20px;
}
.page-product-content .product-item .content {
  padding: 20px;
  line-height: 2;
  font-size: 15px;
  color: #555;
}
@media (min-width: 992px) {
  .page-product-content .product-item .content {
    height: 220px;
  }
}

.page-service-content {
  margin-top: 3rem;
  color: #606B86;
}
.page-service-content .title-box {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .page-service-content .title-box {
    margin-bottom: 30px;
  }
}
.page-service-content .title-box .title {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .title {
    font-size: 22px;
    text-align: center;
  }
}
.page-service-content .title-box .sub-title {
  font-size: 16px;
  max-width: 550px;
}
@media (max-width: 992px) {
  .page-service-content .title-box .sub-title {
    font-size: 12px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .page-service-content .title-box .sub-title {
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .page-service-content .service-row-2 {
    padding-left: 64px;
  }
}
.page-service-content .service-icon {
  max-width: 500px;
}
@media (max-width: 992px) {
  .page-service-content .service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .page-service-content .service-icon img {
    max-width: 80%;
  }
}
.page-service-content .service-item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-service-content .service-item {
    margin-bottom: 20px;
  }
}
.page-service-content .service-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCF3F4;
  margin-bottom: 20px;
}
.page-service-content .service-item .icon i {
  font-size: 18px;
  color: #FA4949;
}
.page-service-content .service-item .title {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}
.page-service-content .service-item .sub-title {
  color: #606B86;
  font-size: 14px;
  line-height: 1.8;
}

.page-about-content {
  margin-top: 3rem;
}
.page-about-content .about-text .main-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .page-about-content .about-text .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.page-about-content .about-text .about-text-item {
  display: flex;
  margin-bottom: 40px;
}
.page-about-content .about-text .about-text-item:last-child {
  margin-bottom: 0;
}
.page-about-content .about-text .about-text-item .left {
  width: 40px;
  flex: 0 0 40px;
}
.page-about-content .about-text .about-text-item .left i {
  font-size: 24px;
  color: #E91E63;
}
.page-about-content .about-text .about-text-item .right .title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.page-about-content .about-text .about-text-item .right .sub-title {
  font-size: 14px;
  color: #606B86;
  line-height: 2;
  max-width: 460px;
}
.page-about-content .home-contact {
  background-color: #F9F9FC;
  background: linear-gradient(180deg, #F9F9FC 0%, #fff 100%);
  padding: 60px 0;
}

.layui-layer-btn .layui-layer-btn0 {
  background-color: #E91E63;
  border-color: #E91E63;
}

input[type=password] {
  font-family: "Arial";
}

header .dropdown {
  cursor: pointer;
}
header .dropdown:hover .dropdown-menu {
  display: block;
}
header .header-top {
  background-color: #e6a000;
    color: #0a0e14;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
header .header-top .top-info a {
  color: inherit;
  margin-right: 10px;
}
header .header-top .top-info a:hover > a {
  color: #E91E63;
}
header .header-top .language-switch .dropdown {
  cursor: pointer;
}
header .header-top .language-switch .dropdown:hover > a {
  color: #E91E63;
}
header .header-top .language-switch .dropdown > a {
  color: inherit;
  border-radius: 0;
  border: none;
  padding: 0;
  height: 40px;
  line-height: 40px;
}
header .header-top .language-switch .dropdown > a img {
  width: 20px;
}
header .search-group {
  background-color: #F1F3F5;
  position: relative;
}
header .search-group:hover input {
  background-color: #eee;
}
header .search-group input {
  background-color: transparent;
  padding-right: 40px;
  border-radius: 4px;
  border: none;
	min-width: 350px;
  max-width: 410px;
  font-size: 16px;
  height: 44px;
  box-shadow: none;
}
header .search-group .btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .search-group .btn i {
  font-size: 22px;
}
header .header-desktop {
  padding: 30px 0;
}
@media (max-width: 992px) {
  header .header-desktop {
    display: none;
  }
}
header .header-desktop .left {
  display: flex;
  align-items: center;
}
header .header-desktop .left .logo {
  max-width: 180px;
  max-height: 60px;
  margin-bottom: 0;
}
header .header-desktop .left .menu {
  margin-left: 40px;
}
header .header-desktop .left .menu .navbar {
  padding: 0;
}
header .header-desktop .left .menu .navbar .nav-item > .dropdown > .nav-link, header .header-desktop .left .menu .navbar .nav-item > .nav-link {
  font-weight: bold;
  color: #222;
  font-size: 16px;
  padding-left: 6px;
  padding-right: 6px;
  margin: 0 14px;
  position: relative;
}
header .header-desktop .left .menu .navbar .nav-item > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid;
  border-bottom-width: 2px;
  transition: width 0.3s;
}
header .header-desktop .left .menu .navbar .nav-item:hover > .dropdown > .nav-link::after, header .header-desktop .left .menu .navbar .nav-item:hover > .nav-link::after {
  width: 100%;
  left: 0;
}
header .header-desktop .left .menu .navbar .nav-item:hover .dropdown-menu {
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  display: block;
}
header .header-desktop .right {
  display: flex;
  align-items: center;
}
header .header-desktop .right .dropdown .dropdown-toggle::after {
  display: none;
}
header .header-desktop .right .icons {
  display: flex;
  align-items: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: none;
  text-align: center;
}
header .header-desktop .right .icons .account-icon .dropdown-menu a {
  padding: 10px 0;
}
header .header-desktop .right .icons .item {
  margin-left: 26px;
  position: relative;
}
header .header-desktop .right .icons .item .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #E91E63;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
@media (min-width: 992px) {
  header .header-mobile {
    display: none;
  }
}
header .header-mobile .logo {
  max-width: 160px;
  max-height: 50px;
  margin-bottom: 0;
}
header .header-mobile .mb-icon i {
  font-size: 30px;
  line-height: 1;
}
header .header-mobile .header-cart-icon {
  position: relative;
}
header .header-mobile .header-cart-icon .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #E91E63;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas {
  width: 76%;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group {
  margin-right: 10px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group input {
  height: 38px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .search-group .btn i {
  font-size: 18px;
}
header .header-mobile #mobile-menu-offcanvas .offcanvas-header .account-icon img {
  width: 24px;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  width: 26px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .close-offcanvas:active {
  background-color: #f1f1f1;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap {
  padding: 0;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a .badge {
  position: relative;
  margin-left: 13px;
  font-weight: 400;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > a .badge::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  border: 4px solid;
  border-right-width: 7px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-right-color: inherit;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item .nav-item-text > span[aria-expanded=true] i {
  transform: rotate(180deg);
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse {
  border-top: 1px solid #e5e5e5;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group {
  padding: 5px 0;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title {
  height: 44px;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span {
  margin-right: -10px;
  width: 44px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span:active {
  background-color: #eee;
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .children-title span[aria-expanded=true] i::before {
  content: "\f63b";
}
header .header-mobile #mobile-menu-offcanvas .mobile-menu-wrap #menu-accordion .accordion-item > .accordion-collapse .children-group .nav a {
  color: #333;
}

footer {
  position: relative;
  background-color: #222222;
  overflow: hidden;
  margin-top: 20px;
}
@media (min-width: 768px) {
  footer {
    margin-top: 50px;
  }
}
footer::after, footer::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 300px;
  background-image: url("/icon/footer-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
footer::before {
  top: 0;
  left: 0;
  width: 50%;
  background-image: url("/icon/footer-1.svg");
}
@media (min-width: 768px) {
  footer::before {
    top: -5%;
    width: 30%;
  }
}
footer::after {
  bottom: 0;
  right: 0;
  width: 36%;
  background-position: bottom;
  background-image: url("/icon/footer-2.svg");
}
@media (min-width: 768px) {
  footer::after {
    bottom: -5%;
    width: 15%;
  }
}
footer .footer-box {
  color: #aaa;
  position: relative;
  z-index: 1;
}
footer .footer-box a {
  color: #aaa;
  position: relative;
}
footer .footer-box a:hover::after {
  width: 100%;
  left: 0;
}
footer .footer-box a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: width 0.3s;
}
footer .footer-box .footer-top-links {
  padding: 10px 0;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  footer .footer-box .footer-top-links .about {
    padding-right: 60px;
  }
}
footer .footer-box .footer-top-links .about .about-text {
  padding-top: 6px;
}
footer .footer-box .footer-top-links .footer-link-title {
  font-weight: bold;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-link-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
footer .footer-box .footer-top-links .footer-link-title .footer-link-icon.active i:before {
  content: "\f63b";
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-link-title .footer-link-icon {
    display: none;
  }
}
footer .footer-box .footer-top-links .footer-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .footer-box .footer-top-links .footer-item .footer-item-content {
  display: none;
  padding-right: 26px;
}
@media (min-width: 768px) {
  footer .footer-box .footer-top-links .footer-item .footer-item-content {
    display: block;
  }
}
footer .footer-box .footer-top-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-box .footer-top-links ul li {
  margin-right: 20px;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 0;
}
footer .footer-box .footer-top-links ul li a:hover {
  color: #E91E63;
}
footer .footer-box .bottom-box {
  border-top: 1px solid #4A4A4A;
  padding: 26px 0;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .left-links {
    text-align: center;
  }
}
footer .footer-box .bottom-box .copyright-text {
  text-align: right;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .copyright-text {
    text-align: center;
    margin-top: 10px;
  }
}
footer .footer-box .bottom-box .payment-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-box .bottom-box .payment-icon {
    justify-content: center;
    margin-top: 10px;
  }
}
footer .footer-box .bottom-box .payment-icon img {
  margin-left: 10px;
  max-width: 50px;
}

body.page-home .module-title-wrap {
  margin-bottom: 30px;
}
body.page-home .module-title-wrap .module-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  position: relative;
  color: #222;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-title {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
}
body.page-home .module-title-wrap .module-sub-title {
  text-align: center;
  font-size: 1rem;
  color: #768088;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  max-width: 840px;
}
@media (max-width: 768px) {
  body.page-home .module-title-wrap .module-sub-title {
    font-size: 0.87rem;
  }
}
body.page-home .module-line {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-home .module-line {
    margin-bottom: 40px;
  }
}

@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/vendor/font/jost/Jost-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
@media (min-width: 992px) {
  body.page-news .newest-box {
    padding-right: 50px;
  }
}
body.page-news .newest-box .newest-item {
  background-color: #fff;
  margin-bottom: 20px;
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
body.page-news .newest-box .newest-item .item-img {
  width: 150px;
  flex: 0 0 150px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-img {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 10px;
  }
}
body.page-news .newest-box .newest-item .item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
body.page-news .newest-box .newest-item .item-title a {
  color: #222;
}
body.page-news .newest-box .newest-item .item-title a:hover {
  color: #E91E63;
}
@media (max-width: 768px) {
  body.page-news .newest-box .newest-item .item-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
body.page-news .newest-box .newest-item .item-summary {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  body.page-news .newest-box .newest-item .item-summary {
    font-size: 15px;
  }
}

.newes-tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.newes-tags i {
  color: #666;
}
.newes-tags a {
  color: #444;
  margin-right: 10px;
  display: inline-block;
  padding: 1px 4px;
  border: 1px solid #cad8ff;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.3s;
  background-color: #e5f0fe;
}
.newes-tags a:hover {
  color: #fff;
  background-color: #E91E63;
  border-color: #E91E63;
}

.newes-sidebar .search-box {
  margin-bottom: 40px;
}
.newes-sidebar .sidebar-item {
  margin-bottom: 30px;
}
.newes-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.newes-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.newes-sidebar .sidebar-list ul {
  padding-left: 0;
  list-style: none;
}
.newes-sidebar .sidebar-list ul a {
  color: #333;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}
.newes-sidebar .sidebar-list ul a:hover {
  color: #f00;
}

body.page-news-details .newest-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  body.page-news-details .newest-box {
    padding: 10px;
    margin-bottom: 20px;
  }
}
body.page-news-details .newest-box .newes-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body.page-news-details .newest-box .newes-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
body.page-news-details .newest-box .newes-top {
  display: flex;
  color: #666;
  margin-bottom: 30px;
}
body.page-news-details .newest-box .newes-top > div {
  margin-right: 10px;
}
@media (min-width: 992px) {
  body.page-news-details .newest-box .newes-top > div {
    margin-right: 40px;
  }
}
body.page-news-details .newest-box .newes-top > div i {
  margin-right: 4px;
  color: #E91E63;
}

.module-swiper .swiper-slide img {
  width: 100%;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
}
.module-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #e6a000 !important;
}

.product-grid-item {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .product-grid-item {
    margin-bottom: 30px;
  }
  .product-grid-item:hover .product-bottom-btns {
    transform: translateY(0) !important;
  }
  .product-grid-item:hover .product-price {
    transform: translateY(100%);
  }
}
.product-grid-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.product-grid-item .image .cancel-favorite {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #b00101;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.product-grid-item .image .cancel-favorite:hover {
  color: #fff;
  background-color: #b00101;
}
.product-grid-item .product-item-info {
  text-align: center;
}
.product-grid-item .product-item-info .product-name {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .product-item-info .product-name a {
  color: inherit;
}
.product-grid-item .product-item-info .product-name a:hover {
  text-decoration: underline;
  color: #E91E63;
}
.product-grid-item .product-item-info .product-bottom {
  position: relative;
  overflow: hidden;
}
.product-grid-item .product-item-info .product-bottom-btns {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-bottom-btns .btn-add-cart {
  font-weight: bold;
  font-size: 16px;
  text-decoration: underline;
  color: #E91E63;
}
.product-grid-item .product-item-info .product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 0.3s;
}
.product-grid-item .product-item-info .product-price .price-new {
  font-size: 1rem;
  font-weight: bold;
  color: #E53E3E;
}
.product-grid-item .product-item-info .product-price .price-old {
  font-size: 0.9rem;
  color: #768088;
  text-decoration: line-through;
  margin-left: 10px;
  margin-right: 10px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}
.list .image {
  flex: 0 0 200px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.list .product-item-info {
  flex: 0.2;
  padding-left: 20px;
  padding-top: 10px;
  text-align: left;
}
.list .product-item-info .sub-product-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-bottom {
  margin-top: 10px;
  margin-bottom: 20px;
}
.list .product-item-info .product-price {
  text-align: left;
  justify-content: flex-start;
}
.list .product-item-info .product-price .price-old {
  margin-left: 0;
}
.list .product-item-info .add-wishlist {
  margin-top: 10px;
  margin-bottom: 20px;
}

.module-product-tab .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 20px;
  margin-top: -6px;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs {
    margin-bottom: 40px;
  }
}
.module-product-tab .nav-tabs .nav-link {
  border: none !important;
  color: #7E7E7E;
  border-radius: 50px;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .module-product-tab .nav-tabs .nav-link {
    margin: 0 10px;
    font-size: 14px;
  }
}
.module-product-tab .nav-tabs .nav-link:hover {
  background-color: #FFEBF2;
}
.module-product-tab .nav-tabs .nav-link.active {
  background-color: #FFEBF2;
  color: #E91E63;
}

.blog-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .blog-item {
    margin-bottom: 30px;
  }
}
.blog-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}
.blog-item .blog-item-info .blog-catalog {
  font-weight: bold;
  color: #E91E63;
  margin-bottom: 4px;
}
.blog-item .blog-item-info .blog-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
@media (min-width: 768px) {
  .blog-item .blog-item-info .blog-title {
    font-size: 18px;
  }
}
.blog-item .blog-item-info .author-wrap {
  display: flex;
  align-items: center;
  color: #777;
}
.blog-item .blog-item-info .author-wrap .blog-author {
  margin-right: 20px;
}

body.page-login {
  margin-bottom: 0 !important;
}

.login-register-box {
  max-width: 540px;
  background-color: #F3F3F3;
  margin: 30px auto;
  padding: 16px;
}
@media (min-width: 992px) {
  .login-register-box {
    padding: 36px;
    margin: 70px auto;
  }
}
.login-register-box.iframe {
  margin: 10px 0 0;
}
.login-register-box .login-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.login-register-box .login-sub-title {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 30px;
}
.login-register-box .form-group input {
  border: none;
  height: 44px;
  font-size: 15px;
  border-radius: 0;
}
.login-register-box .btn-submit {
  margin-top: 30px;
}
@media (min-width: 400px) {
  .login-register-box .btn-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.login-register-box .btn-submit .form-submit {
  width: 50%;
  display: block;
}
.login-register-box .btn-submit a {
  color: #222;
  display: block;
  font-weight: bold;
}

.breadcrumb-wrap {
  background-image: url("/icon/breadcrumb-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .breadcrumb-wrap {
    padding: 40px 0;
    margin-bottom: 30px;
  }
}
.breadcrumb-wrap .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb li {
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 1;
}
.breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb-wrap .breadcrumb li .home-icon {
  margin-right: 4px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}

.account-card-box {
  border: 1px solid #ECF0F4;
  padding: 16px;
}
@media (min-width: 992px) {
  .account-card-box {
    min-height: 621px;
  }
}
@media (min-width: 768px) {
  .account-card-box {
    padding: 30px;
  }
}
.account-card-box .account-card-title {
  margin-bottom: 30px;
}
.account-card-box .account-card-title span {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .account-card-box .account-card-title span {
    font-size: 20px;
  }
}
.account-card-box .account-card-sub-title {
  margin-bottom: 16px;
}
.account-card-box .account-card-sub-title span {
  font-size: 16px;
  font-weight: bold;
}

body.page-account .account-info .account-data {
  border-bottom: 1px solid #ECF0F4;
  margin-bottom: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}
body.page-account .account-info .account-data .account-item-data {
  text-align: center;
}
body.page-account .account-info .account-data .account-item-data .value {
  font-size: 2rem;
  font-weight: bold;
}
body.page-account .account-info .no-order {
  background-color: #f6f6f6;
  font-size: 1rem;
}
body.page-account .account-info .no-order a {
  color: #457C46;
}

.account-sidebar {
  border: 1px solid #e8eef3;
  margin-bottom: 20px;
}
.account-sidebar .account-user {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8eef3;
  margin: 16px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .account-sidebar .account-user {
    margin: 30px;
    padding-bottom: 30px;
  }
}
.account-sidebar .account-user .profile {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8eef3;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
}
.account-sidebar .account-user .account-name .name {
  font-size: 0.9rem;
}
.account-sidebar .account-links {
  list-style: none;
  padding-left: 0;
}
.account-sidebar .account-links li.active a {
  color: #222;
  border-left: 2px solid #E91E63;
}
.account-sidebar .account-links li a {
  color: #7C818B;
  padding: 6px 10px 6px 18px;
  margin: 20px 0;
  border-left: 2px solid transparent;
  display: flex;
  font-weight: bold;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .account-sidebar .account-links li a {
    padding: 6px 10px 6px 30px;
    margin: 26px 0;
  }
}
.account-sidebar .account-links li a:hover {
  color: #222;
}
.account-sidebar .account-links li a i {
  color: #222;
  font-size: 20px;
  margin-right: 20px;
}

.account-table-box th, .account-table-box td {
  padding: 10px 0;
}
.account-table-box th {
  border-bottom: none;
  font-size: 14px;
}
.account-table-box tr:last-child td {
  border-bottom: none;
}

body.page-categories .top-order-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 26px;
}
body.page-categories .top-order-wrap .right {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  body.page-categories .top-order-wrap .right {
    justify-content: space-between;
    width: 100%;
  }
}
body.page-categories .top-order-wrap .right .order-item {
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
  padding-right: 10px;
  margin-right: 10px;
}
body.page-categories .top-order-wrap .right .order-item span {
  color: #777;
  width: 100%;
}
body.page-categories .top-order-wrap .right .order-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
body.page-categories .top-order-wrap .right .order-item .form-select {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
body.page-categories .top-order-wrap .right .order-item .order-icon {
  color: #333;
  font-size: 20px;
  margin-left: 10px;
  padding: 0 6px;
}
body.page-categories .top-order-wrap .right .order-item .order-icon.active {
  background-color: #eee;
}

.product-grid-item .wishlist-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: none;
}
.product-grid-item .image:hover .wishlist-container {
  display: block;
}
.product-grid-item .add-wishlist {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.product-grid-item .add-wishlist i {
  margin-right: 5px;
}

.filter-sidebar .filter-sidebar-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .filter-sidebar .filter-sidebar-item {
    margin-bottom: 40px;
  }
}
.filter-sidebar .filter-sidebar-item .title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 14px;
}
.filter-sidebar .filter-sidebar-item #filter-category > .accordion-item > .accordion-title {
  padding: 4px 0;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item {
  border: none;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title > a {
  color: #222;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button {
  width: 30px;
  height: 30px;
  box-shadow: none;
  background-color: transparent !important;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-title .accordion-button::after {
  --bs-accordion-btn-icon-width: .8rem;
  opacity: 0.7;
}
.filter-sidebar .filter-sidebar-item #filter-category .accordion-item .accordion-body {
  padding: 0;
  padding-left: 14px;
}

@media (max-width: 992px) {
  body.page-product .breadcrumb-wrap {
    display: none;
  }
}
body.page-product .page-product-top {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-left-col {
    padding: 0;
  }
}
body.page-product .page-product-top .product-images {
  display: flex;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-images {
    margin-bottom: 10px;
  }
}
body.page-product .page-product-top .product-images .sub-product-img {
  width: 100%;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img {
    width: 100px;
    flex: 0 0 100px;
    margin-right: 20px;
  }
  body.page-product .page-product-top .product-images .sub-product-img:hover .swiper .sub-product-btn {
    display: block;
  }
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper {
    height: 100%;
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide {
    width: 100px;
    cursor: pointer;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide img {
    border: 1px solid #eee;
  }
  body.page-product .page-product-top .product-images .sub-product-img .swiper .swiper-slide:hover img {
    border-color: #E91E63;
  }
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn {
  display: none;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9;
  font-size: 20px;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-prev {
  top: 0;
}
body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-btn > div.sub-product-next {
  bottom: 0;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-images .sub-product-img .swiper .sub-product-pagination {
    display: none;
  }
}
body.page-product .page-product-top .product-images .main-product-img {
  cursor: pointer;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-images .main-product-img {
    display: none;
  }
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info {
    padding-left: 20px;
  }
}
body.page-product .page-product-top .product-info .product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-title {
    font-size: 24px;
  }
}
body.page-product .page-product-top .product-info .product-price {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
body.page-product .page-product-top .product-info .product-price .price {
  font-size: 20px;
  font-weight: bold;
  color: #E53E3E;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-price .price {
    font-size: 26px;
  }
}
body.page-product .page-product-top .product-info .product-price .old-price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .stock-wrap > div {
  font-weight: bold;
  font-size: 14px;
}
body.page-product .page-product-top .product-info .stock-wrap > div.in-stock {
  color: #3FC158;
  background-color: #EEF8EE;
}
body.page-product .page-product-top .product-info .stock-wrap > div.out-stock {
  color: #777;
  background-color: #e3e3e3;
}
body.page-product .page-product-top .product-info .sub-product-title {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 10px;
}
body.page-product .page-product-top .product-info .product-param {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-param {
    margin: 20px 0;
  }
}
body.page-product .page-product-top .product-info .product-param li {
  color: #333;
  line-height: 1.8;
  padding: 2px 0;
}
body.page-product .page-product-top .product-info .product-param li span.title {
  color: #888;
}
body.page-product .page-product-top .product-info .product-variant-box {
  margin-bottom: 20px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant {
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 5px 14px;
  border-radius: 2px;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.disabled {
  color: #999;
  border-color: #ddd;
  border-style: dashed;
  text-decoration: line-through;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name.active {
  border-color: #E91E63;
  color: #E91E63;
  border-style: solid;
}
body.page-product .page-product-top .product-info .product-variant-box .product-variant .variant-values .variant-value-name:hover {
  border-color: #E91E63;
}
body.page-product .page-product-top .product-info .product-info-bottom {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom {
    height: 50px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .quantity-wrap {
    height: 40px;
    margin-bottom: 10px;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
  height: inherit;
}
@media (min-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns {
    height: 40px;
    display: flex;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
  height: inherit;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
@media (max-width: 992px) {
  body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn {
    width: 50%;
  }
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now {
  background-color: #E6E8EB;
  color: #333;
}
body.page-product .page-product-top .product-info .product-info-bottom .product-info-btns .btn.buy-now:hover {
  background-color: #D9DCE1;
}
body.page-product .page-product-top .product-info .add-wishlist {
  font-weight: bold;
  cursor: pointer;
}
body.page-product .page-product-top .product-info .add-wishlist:hover {
  text-decoration: underline;
}
body.page-product .product-description {
  margin-bottom: 40px;
}

body.page-cart .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-cart .products-table .td-image {
  width: 100px;
  padding: 0;
}
@media (min-width: 768px) {
  body.page-cart .products-table .td-image {
    width: 70px;
  }
}
body.page-cart .products-table .product-image {
  width: 90px;
  height: 90px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .product-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
  }
}
body.page-cart .products-table .product-image img {
  max-height: 100%;
}
body.page-cart .products-table .quantity-wrap {
  height: 27px;
  width: 90px;
}
body.page-cart .products-table .quantity-wrap > div {
  font-size: 14px;
}
@media (min-width: 768px) {
  body.page-cart .products-table .quantity-wrap {
    height: 40px;
    width: 120px;
  }
  body.page-cart .products-table .quantity-wrap > div {
    font-size: 18px;
  }
}
body.page-cart .products-table .quantity-wrap input {
  font-size: 14px;
}
@media (max-width: 768px) {
  body.page-cart .products-table tr {
    position: relative;
  }
  body.page-cart .products-table thead, body.page-cart .products-table .td-price, body.page-cart .products-table .td-subtotal {
    display: none;
  }
  body.page-cart .products-table .td-product-check {
    padding-left: 0;
  }
  body.page-cart .products-table .td-product-info {
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  body.page-cart .products-table .td-delete {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-cart .products-table .mb-price {
    display: none;
  }
}
body.page-cart .cart-data {
  background-color: #F8F9FA;
  padding: 26px;
}
body.page-cart .cart-data .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
body.page-cart .cart-data .cart-data-list {
  list-style: none;
  padding: 0;
}
body.page-cart .cart-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-cart .cart-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-cart .cart-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-checkout .layer-login {
  color: red;
}
body.page-checkout .breadcrumb-wrap {
  margin-bottom: 0;
}
body.page-checkout footer {
  margin-top: 0;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-container {
    padding: 0;
    max-width: 100%;
  }
  body.page-checkout .checkout-container > .row {
    margin: 0;
  }
  body.page-checkout .checkout-container > .row > .col-md-5, body.page-checkout .checkout-container > .row .col-md-7 {
    padding: 0;
  }
}
body.page-checkout .title-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-checkout .title-wrap > .title {
  font-size: 15px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout .title-wrap > .title {
    font-size: 18px;
  }
}
body.page-checkout .checkout-info {
  padding-top: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info {
    max-width: 720px;
    margin-left: auto;
    padding: 40px;
  }
}
body.page-checkout .checkout-info .checkout-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-info .checkout-item {
    margin-bottom: 40px;
  }
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item {
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: -1px;
  cursor: pointer;
  position: relative;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:first-child::before {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item:last-child::before {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid #8446e0;
  inset-block-start: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  inset: -1px;
  display: none;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active {
  background-color: #fbefff;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active:before {
  display: block;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i {
  color: #8446e0;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item.active .left i::before {
  content: "\f517";
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left i {
  font-size: 18px;
  color: #888;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .left .select-title {
  font-size: 14px;
  margin-left: 14px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon {
  max-width: 200px;
  height: 34px;
}
body.page-checkout .checkout-info .checkout-select-wrap .select-item .icon img {
  max-height: 100%;
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data {
    background-color: #F8F9FA;
    padding: 0 40px;
    border-left: 1px solid #e9edf1;
    height: 100%;
  }
}
@media (max-width: 768px) {
  body.page-checkout .checkout-data {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  body.page-checkout .checkout-data .checkout-data-content {
    padding: 40px 0;
    max-width: 430px;
  }
}
body.page-checkout .checkout-data .checkout-data-content .products-table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 10px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table-wrap .products-table-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
body.page-checkout .checkout-data .checkout-data-content .products-table td {
  padding-left: 0;
  padding-right: 0;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #E91E63;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-checkout .checkout-data .checkout-data-content .products-table .product-item .product-image img {
  max-height: 100%;
}
body.page-checkout .checkout-data .cart-data-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #eee;
}
body.page-checkout .checkout-data .cart-data-list > li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child {
  border-bottom: none;
}
body.page-checkout .checkout-data .cart-data-list > li:last-child > span:last-child {
  font-weight: bold;
  color: #E53E3E;
  font-size: 24px;
}

body.page-order .account-card-title {
  margin-bottom: 16px;
}
body.page-order .tabs-plus {
  margin-bottom: 16px;
}
body.page-order .order_return {
  padding-left: 20px !important;
}
body.page-order .table-responsive {
  margin-top: 50px;
}

body.page-order-info .products-table td, body.page-order-info .products-table th {
  padding-left: 0;
  padding-right: 0;
}
body.page-order-info .products-table .product-item {
  display: flex;
  align-items: center;
}
body.page-order-info .products-table .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 14px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  position: relative;
}
body.page-order-info .products-table .product-item .product-image .icon-quantity {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #E91E63;
  color: #fff;
  font-size: 9px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-order-info .products-table .product-item .product-image img {
  max-height: 100%;
}

body.page-addresses .address-card {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
}
body.page-addresses .address-card .address-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
}
body.page-addresses .address-card .address-card-header .address-card-title {
  margin: 0;
}
body.page-addresses .address-card .address-card-header .address-card-actions {
  display: flex;
  align-items: center;
}
body.page-addresses .address-card .address-card-header .address-card-actions a {
  margin-left: 10px;
}
body.page-addresses .address-card .address-card-body {
  padding: 15px;
}
body.page-addresses .address-card .address-card-body p {
  margin: 0;
}

body.page-brands .brand-group {
  width: 100%;
}
body.page-brands .brand-group .btn {
  border: 1px solid #e8e8e8;
}
body.page-brands .brand-group .btn:hover {
  background-color: #f4f4f4;
}
body.page-brands .brands-wrap {
  margin-top: 30px;
}
body.page-brands .brands-wrap .item ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body.page-brands .brands-wrap .item ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
body.page-brands .brands-wrap .item ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.page-brands .brands-wrap .item ul li a .img {
  width: 99px;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
}

body.page-checkout-success .checkout-success-box {
  border: 1px solid #ECF0F4;
  padding: 20px 10px;
  max-width: 730px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box {
    padding: 30px;
  }
}
body.page-checkout-success .checkout-success-box .order-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
body.page-checkout-success .checkout-success-box .order-success-icon img {
  max-width: 170px;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .order-success-icon img {
    max-width: 200px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-table th, body.page-checkout-success .checkout-success-box .checkout-success-table td {
  padding: 10px 0;
}
body.page-checkout-success .checkout-success-box .checkout-success-title {
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title {
    margin-bottom: 30px;
  }
}
body.page-checkout-success .checkout-success-box .checkout-success-title span {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body.page-checkout-success .checkout-success-box .checkout-success-title span {
    font-size: 30px;
  }
}

.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
}

.rating > input {
  display: none;
}

.rating > label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #e31052;
  cursor: pointer;
}

.rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}

.rating > label:hover:before,
.rating > label:hover ~ label:before {
  opacity: 1 !important;
}

.rating > input:checked ~ label:before {
  opacity: 1;
}

.rating:hover > input:checked ~ label:before {
  opacity: 0.4;
}

.buttons {
  top: 36px;
  position: relative;
}

.rating-submit {
  border-radius: 8px;
  color: #fff;
  height: auto;
}

.rating-submit:hover {
  color: #fff;
}

.line {
  width: 50%;
  height: 1px;
  background: #c3c1c1;
}

.word {
  color: #c3c1c1;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E91E63;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

/* MOBILE HAMBURGER MENU JAVASCRIPT - Bu kodu home.blade.php'ye ekle */
/* 
JAVASCRIPT KODU - home.blade.php dosyasının sonuna ekle:

<script>
// Mobile Menu & Search JavaScript
document.addEventListener('DOMContentLoaded', function() {
  if (window.innerWidth <= 768) {
    // Mobile Menu HTML - Orijinal InnoShop tarzı
    const mobileMenuHTML = `
      <div class="mobile-menu-overlay" id="mobileMenuOverlay">
        <div class="mobile-menu" id="mobileMenu">
          <div class="mobile-menu-header">
            <h5>Kategoriler</h5>
            <button class="mobile-menu-close" id="mobileMenuClose">×</button>
          </div>
          <div class="mobile-menu-content">
            <div class="mobile-search">
              <input type="text" placeholder="Search" />
              <button type="button">🔍</button>
            </div>
            <a href="/" class="mobile-menu-item">Ana Sayfa</a>
            <a href="/products" class="mobile-menu-item">Kahve Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">İsot Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Salça Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Baharat Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Pekmez Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Tatlı Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Çay Çeşitleri</a>
            <a href="/categories" class="mobile-menu-item">Peynir Çeşitleri</a>
          </div>
        </div>
      </div>
    `;
    
    // Search Overlay HTML
    const searchOverlayHTML = `
      <div class="mobile-search-overlay" id="mobileSearchOverlay">
        <div class="mobile-search-form">
          <button class="mobile-search-close" id="mobileSearchClose">×</button>
          <form action="/products" method="GET">
            <input type="text" name="keyword" placeholder="Ürün ara..." />
            <button type="submit">Ara</button>
          </form>
        </div>
      </div>
    `;
    
    document.body.insertAdjacentHTML('beforeend', mobileMenuHTML + searchOverlayHTML);
    
    // Menu Handlers
    const searchToggle = document.querySelector('.search-toggle');
    const mobileMenuOverlay = document.getElementById('mobileMenuOverlay');
    const mobileMenu = document.getElementById('mobileMenu');
    const mobileMenuClose = document.getElementById('mobileMenuClose');
    
    // Search Handlers
    const mobileSearchBtn = document.querySelector('.mobile-search-btn');
    const mobileSearchOverlay = document.getElementById('mobileSearchOverlay');
    const mobileSearchClose = document.getElementById('mobileSearchClose');
    
    // Hamburger Menu
    function toggleMobileMenu() {
      mobileMenuOverlay.classList.toggle('active');
      mobileMenu.classList.toggle('active');
      document.body.style.overflow = mobileMenuOverlay.classList.contains('active') ? 'hidden' : '';
    }
    
    // Search Overlay
    function toggleSearchOverlay() {
      mobileSearchOverlay.classList.toggle('active');
      document.body.style.overflow = mobileSearchOverlay.classList.contains('active') ? 'hidden' : '';
    }
    
    // Event Listeners
    if (searchToggle) searchToggle.addEventListener('click', function(e) { e.preventDefault(); toggleMobileMenu(); });
    if (mobileMenuClose) mobileMenuClose.addEventListener('click', toggleMobileMenu);
    if (mobileSearchBtn) mobileSearchBtn.addEventListener('click', function(e) { e.preventDefault(); toggleSearchOverlay(); });
    if (mobileSearchClose) mobileSearchClose.addEventListener('click', toggleSearchOverlay);
    
    // Overlay click to close
    if (mobileMenuOverlay) mobileMenuOverlay.addEventListener('click', function(e) { 
      if (e.target === mobileMenuOverlay) toggleMobileMenu(); 
    });
    if (mobileSearchOverlay) mobileSearchOverlay.addEventListener('click', function(e) { 
      if (e.target === mobileSearchOverlay) toggleSearchOverlay(); 
    });
  }
});
</script>
*/
