/* Modern Redesign - High Specificity Override */
:root{
  --mv-bg: #f6f8fb;
  --mv-surface: #ffffff;
  --mv-text: #0f172a;
  --mv-muted: #64748b;
  --mv-border: rgba(15, 23, 42, 0.10);
  --mv-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --mv-shadow-sm: 0 6px 16px rgba(2, 6, 23, 0.08);
  --mv-radius: 14px !important;
  --mv-radius-sm: 10px !important;
  --mv-focus: 0 0 0 4px rgba(0, 108, 228, 0.18);
}

html, body{
  background: var(--mv-bg) !important;
  color: var(--mv-text) !important;
}

/* Better default typography */
body{
  line-height: 1.55 !important;
  text-rendering: optimizeLegibility !important;
}

/* Layout polish - wider container */
.row{
  max-width: 1600px !important;
}

/* ========================================
   MAIN BANNER / SLIDER - ENTERPRISE STYLE
   ======================================== */
#sldr{
  width: 100% !important;
  max-width: 1400px !important;
  margin: 30px auto 40px auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
}

#sldr .swiper-container{
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
}

#sldr .swiper-slide{
  border-radius: 24px !important;
  overflow: hidden !important;
}

#sldr .swiper-slide img{
  border-radius: 24px !important;
  display: block !important;
}

#sldr .swiper-button-next,
#sldr .swiper-button-prev{
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#sldr .swiper-button-next:hover,
#sldr .swiper-button-prev:hover{
  background: var(--button) !important;
  box-shadow: 0 6px 24px rgba(0, 108, 228, 0.35) !important;
  transform: scale(1.1) !important;
}

#sldr .swiper-button-next:hover img,
#sldr .swiper-button-prev:hover img{
  filter: brightness(0) invert(1) !important;
}

#sldr .swiper-button-next img,
#sldr .swiper-button-prev img{
  max-width: 12px !important;
  transition: filter 0.3s ease !important;
}

#sldr .swiper-button-next{
  right: 25px !important;
}

#sldr .swiper-button-prev{
  left: 25px !important;
}

/* Slider pagination dots */
#sldr .swiper-pagination{
  bottom: 20px !important;
}

#sldr .swiper-pagination-bullet{
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

#sldr .swiper-pagination-bullet-active{
  background: white !important;
  transform: scale(1.2) !important;
}

/* Slider mobile responsive */
@media (max-width: 768px){
  #sldr{
    padding: 0 15px !important;
    margin: 20px auto 40px auto !important;
  }
  
  #sldr .swiper-container{
    border-radius: 16px !important;
  }
  
  #sldr .swiper-slide,
  #sldr .swiper-slide img{
    border-radius: 16px !important;
  }
  
  #sldr .swiper-button-next,
  #sldr .swiper-button-prev{
    width: 36px !important;
    height: 36px !important;
  }
  
  #sldr .swiper-button-next img,
  #sldr .swiper-button-prev img{
    max-width: 8px !important;
  }
  
  #sldr .swiper-button-next{
    right: 12px !important;
  }
  
  #sldr .swiper-button-prev{
    left: 12px !important;
  }
}

/* Header: keep structure, modernize surfaces */
header{
  box-shadow: var(--mv-shadow-sm) !important;
  border-radius: 0 0 var(--mv-radius) var(--mv-radius) !important;
}
#hdtp{
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid var(--mv-border) !important;
  border-radius: 0 !important;
}
#hdmd{
  background: linear-gradient(135deg, #003B95 0%, #0056c8 70%, #006CE4 100%) !important;
  border-radius: 0 !important;
}

/* Search input - rounded modern look */
#hdmd .srch_input input{
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.12) !important;
  padding: 15px 50px 15px 30px !important;
}
#hdmd .srch_input input:focus{
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.12), var(--mv-focus) !important;
  outline: none !important;
}

/* Buttons - rounded pill style */
.btn-primary,
.glbprdr button,
#news .news_right form button,
#search-info #filter-open,
#hdcrt{
  border-radius: 999px !important;
  box-shadow: 0 10px 20px rgba(0, 108, 228, 0.25) !important;
  transition: all 0.3s ease !important;
}
.btn-primary:hover,
.glbprdr button:hover,
#news .news_right form button:hover,
#search-info #filter-open:hover,
#hdcrt:hover{
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 24px rgba(0, 108, 228, 0.35) !important;
}

/* Cart update animation */
#hdcrt.cart-updated{
  animation: cartPulse 0.6s ease !important;
}

@keyframes cartPulse{
  0% { transform: scale(1); }
  30% { transform: scale(1.15); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

#hdcrt a span{
  transition: all 0.3s ease !important;
}

#hdcrt.cart-updated a span{
  color: #22c55e !important;
  font-weight: 700 !important;
}

/* Product Cards - modern card design with spacing - 4 per row */
.prds,
.allproducts,
#products-list{
  gap: 10px !important;
  align-items: flex-start !important;
}

/* ============================================
   CATEGORY BANNER
   ============================================ */

.category-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  margin: 0 auto 40px auto;
  max-width: 1400px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.category-banner-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 40px;
}

.category-banner-image {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-banner-content {
  flex: 1;
}

.category-banner-title {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.category-banner-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

.category-banner-desc p {
  margin: 0 0 12px 0;
}

.category-banner-desc p:last-child {
  margin-bottom: 0;
}

/* Category banner responsive */
@media (max-width: 900px) {
  .category-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  
  .category-banner-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
  }
  
  .category-banner-title {
    font-size: 26px;
  }
  
  .category-banner-desc {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .category-banner {
    border-radius: 0;
    margin: 0 -15px 30px -15px;
    border-left: none;
    border-right: none;
  }
  
  .category-banner-inner {
    padding: 20px 15px;
  }
  
  .category-banner-image {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }
  
  .category-banner-title {
    font-size: 22px;
  }
}

/* Force 4 products per row */
#products #products-list .glbprdr,
#products-ns #products-list .glbprdr,
.search_page .allproducts .glbprdr,
.allproducts .glbprdr,
#search-pg .allproducts .glbprdr,
#search_products .allproducts .glbprdr,
#search-list .allproducts .glbprdr{
  flex: 0 0 calc(25% - 8px) !important;
  flex-basis: calc(25% - 8px) !important;
  width: calc(25% - 8px) !important;
  max-width: calc(25% - 8px) !important;
}

.glbprdr{
  background: var(--mv-surface) !important;
  border: 1px solid var(--mv-border) !important;
  border-radius: var(--mv-radius) !important;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.02) !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
  margin-bottom: 10px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Product card equal height - title fixed 2 lines */
.glbprdr .glbprdrc {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.glbprdr .prod_desc {
  flex-grow: 1 !important;
}

.glbprdr .prod_desc h2 {
  min-height: 60px !important;
  height: 60px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-start !important;
}

.glbprdr .prod_desc h2 a {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.35 !important;
  margin-bottom: 0 !important;
}

/* Remove extra margin from last items */
.prds .glbprdr:last-child,
.allproducts .glbprdr:last-child,
#products-list .glbprdr:last-child{
  margin-bottom: 0 !important;
}

.glbprdr:hover{
  box-shadow: var(--mv-shadow) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(0, 108, 228, 0.2) !important;
}

/* Wishlist icon - rounded */
.glbprdr .wish{
  border-radius: 999px !important;
  border: 1px solid var(--mv-border) !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.08) !important;
}

/* Remove bottom lines from product cards */
.page .allproducts .glbprdr::after,
.search_page .allproducts .glbprdr::after,
#products-list .glbprdr::after {
  display: none !important;
}

/* Sale Badge - Truly Flush with Card Edge */
.glbprdr{
  overflow: visible !important;
  position: relative !important;
}

.glbprdr .glbprdrc{
  overflow: visible !important;
}

.glbprdr .cvr{
  overflow: visible !important;
}

.glbprdr .cvr .offer{
  position: absolute !important;
  left: -20px !important;
  top: 8px !important;
  right: auto !important;
  z-index: 10 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  min-width: 52px !important;
  height: 28px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 14px 14px 0 !important;
  box-shadow: 0 3px 12px rgba(0, 59, 149, 0.35) !important;
  letter-spacing: 0.3px !important;
  padding: 0 14px 0 10px !important;
  box-sizing: border-box !important;
}

.glbprdr .cvr .offer::after{
  display: none !important;
}

.glbprdr .cvr .offer::before{
  display: none !important;
}

.glbprdr .cvr .offer::after{
  display: none !important;
}

.glbprdr .cvr .offer > img{
  display: none !important;
}

/* Breadcrumb spacing */
.brdcrmb{
  margin: 18px auto 40px auto !important;
}

/* ============================================
   SUBCATEGORY BUTTONS - Enterprise Redesign
   ============================================ */
#category_page_list{
  background: var(--mv-surface) !important;
  border: 1px solid var(--mv-border) !important;
  border-radius: 12px !important;
  padding: 0 !important;
  margin: 0 8px 20px 8px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 1px 3px rgba(2, 6, 23, 0.04) !important;
  overflow: hidden !important;
}

#category_page_list:hover{
  border-color: var(--button) !important;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.15) !important;
  transform: translateY(-2px) !important;
}

#category_page_list a{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 16px 24px !important;
  box-sizing: border-box !important;
  color: var(--mv-text) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  transition: all 0.2s ease !important;
}

#category_page_list:hover a{
  color: var(--button) !important;
  background: rgba(0, 108, 228, 0.04) !important;
}

/* ============================================
   FILTER SIDEBAR - Enterprise Redesign
   ============================================ */
#sidebar{
  background: var(--mv-surface) !important;
  border-radius: var(--mv-radius) !important;
  border: 1px solid var(--mv-border) !important;
  box-shadow: var(--mv-shadow-sm) !important;
  padding: 24px 20px !important;
  width: 240px !important;
}

#sidebar .list-group{
  margin-bottom: 24px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--mv-border) !important;
}

#sidebar .list-group:last-of-type{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

#filter-form .list-group h4{
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--mv-text) !important;
  padding: 0 !important;
  margin: 0 0 16px 0 !important;
  border-bottom: none !important;
}

#filter-form .list-group.active h4{
  margin: 0 0 16px 0 !important;
  color: var(--button) !important;
}

/* Filter items/labels */
#filter-form .list-group .lbl-checkbox-label{
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  color: var(--mv-text) !important;
  padding: 10px 12px !important;
  margin: 0 0 6px 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
}

#filter-form .list-group .lbl-checkbox-label:hover{
  background: rgba(0, 108, 228, 0.06) !important;
  border-color: rgba(0, 108, 228, 0.15) !important;
}

#filter-form .list-group .lbl-checkbox-input:checked + .lbl-checkbox-label{
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  border-color: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 59, 149, 0.25) !important;
}

/* Price slider container */
#sidebar .slider-container{
  padding: 10px 0 !important;
}

#sidebar .slider-container .fltr-prcs{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#sidebar .slider-container .fltr-prcs input{
  background: var(--mv-surface) !important;
  border: 1px solid var(--mv-border) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--mv-text) !important;
  text-align: center !important;
}

#sidebar .slider-container .fltr-prcs input:focus{
  outline: none !important;
  border-color: var(--button) !important;
  box-shadow: var(--mv-focus) !important;
}

/* Price range slider */
.noUi-target{
  background: var(--mv-border) !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.noUi-connect{
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  border-radius: 999px !important;
}

.noUi-handle{
  background: var(--mv-surface) !important;
  border: 2px solid var(--button) !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 8px rgba(0, 59, 149, 0.25) !important;
  cursor: pointer !important;
}

.noUi-handle:before,
.noUi-handle:after{
  display: none !important;
}

/* Forms - rounded inputs */
input, select, textarea{
  border-radius: var(--mv-radius-sm) !important;
  border: 1px solid var(--mv-border) !important;
}
input:focus, select:focus, textarea:focus{
  outline: none !important;
  box-shadow: var(--mv-focus) !important;
}

/* Footer: modern dark */
.top_footer, .bot_footer, footer .dev_row{
  background: #0b1220 !important;
}
.bot_footer .informations ul li a,
.bot_footer .foot_prods ul li a,
.bot_footer .foot_info span,
.top_footer .con_foot a{
  color: rgba(255,255,255,0.85) !important;
}

/* Menu items - thinner menu */
#hdbt .menu > ul > li {
  padding: 12px 0 !important;
  margin-right: 40px !important;
}

#hdbt .menu > ul > li > a{
  border-radius: 6px !important;
  padding: 6px 10px !important;
  transition: all 0.2s ease !important;
}
#hdbt .menu > ul > li > a:hover{
  background: rgba(0, 108, 228, 0.08) !important;
}

/* =====================================================
   PLAYBAGS MENU HIGHLIGHT - HOT Badge Only
   ===================================================== */
#hdbt .menu > ul > li.menu-highlight {
  position: relative !important;
}

/* Hot badge for Playbags */
#hdbt .menu > ul > li.menu-highlight::after {
  content: 'HOT' !important;
  position: absolute !important;
  top: 3px !important;
  right: -8px !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  padding: 3px 6px !important;
  border-radius: 10px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4) !important;
  z-index: 10 !important;
  animation: hotPulse 2s ease-in-out infinite !important;
}

@keyframes hotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Mobile Menu - Playbags HOT badge */
header .menu_mob ul li.menu-highlight-mob,
header .menu_mob ul li.go_sub.menu-highlight-mob {
  position: relative !important;
}

header .menu_mob ul li.menu-highlight-mob::after,
header .menu_mob ul li.go_sub.menu-highlight-mob::after {
  content: 'HOT' !important;
  position: absolute !important;
  top: 50% !important;
  right: 16px !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 10px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35) !important;
}

/* =====================================================
   HOT DEALS MENU ITEM - Fire Animation
   ===================================================== */
#hdbt .menu > ul > li.menu-hot-deals {
  position: relative !important;
}

#hdbt .menu > ul > li.menu-hot-deals > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, #ff6b00 0%, #ff3d00 100%) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4) !important;
  transition: all 0.3s ease !important;
  animation: hotDealsGlow 2s infinite !important;
}

#hdbt .menu > ul > li.menu-hot-deals > a:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6) !important;
}

#hdbt .menu > ul > li.menu-hot-deals > a .hot-icon {
  font-size: 16px !important;
  animation: hotDealsFlame 0.6s infinite alternate !important;
}

@keyframes hotDealsGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(255, 107, 0, 0.6); }
}

@keyframes hotDealsFlame {
  0% { transform: scale(1) rotate(-3deg); }
  100% { transform: scale(1.15) rotate(3deg); }
}

/* Mobile Menu - Hot Deals styling */
header .menu_mob ul li.menu-hot-deals-mob {
  margin-top: 10px !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

header .menu_mob ul li.menu-hot-deals-mob > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #ff6b00 0%, #ff3d00 100%) !important;
  color: #ffffff !important;
  padding: 12px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4) !important;
  margin: 10px 15px !important;
  width: calc(100% - 30px) !important;
  justify-content: center !important;
}

header .menu_mob ul li.menu-hot-deals-mob > a .hot-icon {
  font-size: 18px !important;
}

/* Header Blog Button - Enterprise Style */
#hdtp .box2 .header-blog-btn{
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 108, 228, 0.3) !important;
  margin-right: 25px !important;
}

/* Remove bullet before blog button */
#hdtp .box2 .header-blog-btn::before{
  content: '' !important;
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'%3E%3C/path%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-right: 0 !important;
}

/* Hide the bullet separator that appears after links in box2 */
#hdtp .box2 a:not(.header-blog-btn)::before{
  margin-left: 0 !important;
}

#hdtp .box2 .header-blog-btn + a::before{
  display: none !important;
}

#hdtp .box2 .header-blog-btn::after{
  display: none !important;
  content: none !important;
}

#hdtp .box2 .header-blog-btn:hover{
  background: linear-gradient(135deg, #002d73 0%, #0056b8 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.4) !important;
  color: #ffffff !important;
}

/* ============================================
   DROPDOWN MENU - Enterprise Redesign
   ============================================ */
header .dropdown{
  display: none !important;
  min-width: 280px !important;
  position: absolute !important;
  left: 50% !important;
  top: 100% !important;
  background: #ffffff !important;
  z-index: 100 !important;
  list-style: none !important;
  padding: 20px 12px 12px 12px !important;
  margin: 0 !important;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.12), 0 4px 12px rgba(2, 6, 23, 0.08) !important;
  border-radius: 16px !important;
  border: 1px solid var(--mv-border) !important;
  box-sizing: border-box !important;
  max-height: none !important;
  overflow: visible !important;
  transform: translateX(-50%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

header .menu li:hover .dropdown{
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Invisible bridge to prevent gap closing */
header .dropdown::before{
  content: '' !important;
  position: absolute !important;
  top: -15px !important;
  left: 0 !important;
  right: 0 !important;
  height: 15px !important;
  background: transparent !important;
}

header .dropdown > ul{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-flow: column nowrap !important;
  width: 100% !important;
  gap: 4px !important;
}

header .dropdown > ul > li{
  width: 100% !important;
}

header .dropdown > ul > li > a{
  font-size: 14px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  color: var(--mv-text) !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  text-align: left !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  gap: 12px !important;
}

header .dropdown > ul > li > a:hover{
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.08) 100%) !important;
  color: var(--button) !important;
  transform: translateX(4px) !important;
}

header .dropdown > ul > li > a img{
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  padding: 4px !important;
  flex-shrink: 0 !important;
}

/* Hide all scrollbars on dropdown */
header .dropdown,
header .dropdown *{
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

header .dropdown::-webkit-scrollbar,
header .dropdown *::-webkit-scrollbar{
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Blog Block - Enterprise Design */
.rowh{
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-top: 1px solid rgba(0, 108, 228, 0.08) !important;
  padding: 80px 60px 90px 60px !important;
  margin: 0 !important;
  overflow: visible !important;
  position: relative !important;
}

.rowh::before{
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 300px !important;
  background: linear-gradient(180deg, rgba(0, 108, 228, 0.03) 0%, transparent 100%) !important;
  pointer-events: none !important;
}

#hmft6{
  background: transparent !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

#hmft6 .home-ttl{
  margin: 0 auto 50px auto !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

#hmft6 .home-ttl::before{
  content: '' !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #006CE4 0%, #3b82f6 100%) !important;
  border-radius: 2px !important;
  margin-bottom: 20px !important;
}

#hmft6 .home-ttl::after{
  display: none !important;
}

#hmft6 .home-ttl h3{
  position: relative !important;
  background: transparent !important;
  font-size: 36px !important;
  line-height: 44px !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
  color: #0f172a !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  text-align: center !important;
  z-index: 1 !important;
}

#hmft6 .home-ttl h3::after{
  display: none !important;
}

#hmft6 .blog_posts{
  width: 100% !important;
  margin: 0 0 30px 0 !important;
  padding: 0 60px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

#hmft6 .blog_posts .swiper-container{
  overflow: visible !important;
}

#hmft6 .blog_posts .swiper-wrapper{
  padding-bottom: 10px !important;
}

#hmft6 .box{
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 108, 228, 0.08) !important;
  border: 1px solid rgba(0, 108, 228, 0.06) !important;
  overflow: hidden !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 400px !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
}

#hmft6 .box:hover{
  box-shadow: 0 16px 48px rgba(0, 108, 228, 0.15) !important;
  transform: translateY(-8px) !important;
  border-color: rgba(0, 108, 228, 0.12) !important;
}

#hmft6 .box .cover{
  width: 100% !important;
  height: 200px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

#hmft6 .box .cover a{
  font-size: 0 !important;
  display: block !important;
  height: 100% !important;
}

#hmft6 .box .cover::after{
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

#hmft6 .box:hover .cover::after{
  opacity: 1 !important;
}

#hmft6 .box .cover img{
  width: 100% !important;
  max-width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#hmft6 .box:hover .cover img{
  transform: scale(1.08) !important;
}

#hmft6 .box .cnt{
  width: 100% !important;
  margin: 0 !important;
  padding: 20px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  background: var(--mv-surface) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

#hmft6 .box .cnt h3,
#hmft6 .box .cnt h4{
  font-size: 16px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  color: var(--mv-text) !important;
  margin: 0 0 auto 0 !important;
  padding: 0 !important;
  border: none !important;
  letter-spacing: -0.3px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  height: 72px !important;
}

#hmft6 .box .cnt h3 a,
#hmft6 .box .cnt h4 a{
  color: var(--mv-text) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

#hmft6 .box:hover .cnt h3 a,
#hmft6 .box:hover .cnt h4 a{
  color: var(--button) !important;
}

/* Blog Read More Button */
#hmft6 .box .cnt .blog-read-more{
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 16px !important;
  padding: 10px 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--button) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.2px !important;
  border-top: 1px solid var(--mv-border) !important;
}

#hmft6 .box .cnt .blog-read-more:hover{
  color: var(--button-hover) !important;
  gap: 10px !important;
}

#hmft6 .all_blog{
  margin: 0 !important;
  margin-top: 30px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

#hmft6 .all_blog::after{
  display: none !important;
}

#hmft6 .all_blog .all_blogc{
  width: fit-content !important;
  background: transparent !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  z-index: 1 !important;
}

#hmft6 .all_blog .all_blogc a{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 40px !important;
  box-sizing: border-box !important;
  font-size: 15px !important;
  line-height: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 108, 228, 0.25) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.08) !important;
}

#hmft6 .all_blog .all_blogc a:hover{
  background: linear-gradient(135deg, #0056c8 0%, #002d75 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(0, 108, 228, 0.35) !important;
}

#hmft6 .all_blog .all_blogc a::after{
  content: '→' !important;
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
}

#hmft6 .all_blog .all_blogc a:hover::after{
  transform: translateX(4px) !important;
}

/* Navigation Arrows - Using SVG background */
#hmft6 .next_blog,
#hmft6 .prev_blog{
  width: 48px !important;
  height: 48px !important;
  background-color: #ffffff !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(0, 108, 228, 0.12) !important;
  border: 1px solid rgba(0, 108, 228, 0.1) !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: absolute !important;
  z-index: 10 !important;
  top: 40% !important;
  transform: translateY(-50%) !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

#hmft6 .next_blog{
  right: 10px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006CE4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

#hmft6 .prev_blog{
  left: 10px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006CE4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

#hmft6 .next_blog:hover,
#hmft6 .prev_blog:hover{
  background-color: #006CE4 !important;
  border-color: #006CE4 !important;
  box-shadow: 0 8px 24px rgba(0, 108, 228, 0.3) !important;
}

#hmft6 .next_blog:hover{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

#hmft6 .prev_blog:hover{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

/* Product Cards - Responsive breakpoints */
@media only screen and (max-width: 1024px){
  #products #products-list .glbprdr,
  #products-ns #products-list .glbprdr,
  .search_page .allproducts .glbprdr,
  .allproducts .glbprdr,
  #search-pg .allproducts .glbprdr,
  #search_products .allproducts .glbprdr,
  #search-list .allproducts .glbprdr{
    flex: 0 0 calc(33.333% - 8px) !important;
    flex-basis: calc(33.333% - 8px) !important;
    width: calc(33.333% - 8px) !important;
    max-width: calc(33.333% - 8px) !important;
  }
  #hmft6 .next_blog{
    right: -30px !important;
  }
  #hmft6 .prev_blog{
    left: -30px !important;
  }
}

@media only screen and (max-width: 800px){
  #products #products-list .glbprdr,
  #products-ns #products-list .glbprdr,
  .search_page .allproducts .glbprdr,
  .allproducts .glbprdr,
  #search-pg .allproducts .glbprdr,
  #search_products .allproducts .glbprdr,
  #search-list .allproducts .glbprdr{
    flex: 0 0 calc(50% - 8px) !important;
    flex-basis: calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
}

@media only screen and (max-width: 600px){
  #products #products-list .glbprdr,
  #products-ns #products-list .glbprdr,
  .search_page .allproducts .glbprdr,
  .allproducts .glbprdr,
  #search-pg .allproducts .glbprdr,
  #search_products .allproducts .glbprdr,
  #search-list .allproducts .glbprdr{
    flex: 0 0 calc(50% - 8px) !important;
    flex-basis: calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
}

@media only screen and (max-width: 700px){
  #hmft6 .next_blog,
  #hmft6 .prev_blog{
    display: block !important;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
  .glbprdr:hover{ transform: none !important; }
  .btn-primary:hover,
  .glbprdr button:hover,
  #news .news_right form button:hover,
  #hdcrt:hover{ transform: none !important; }
  #hmft6 .box:hover{ transform: none !important; }
  #hmft6 .all_blog .all_blogc a:hover{ transform: none !important; }
  #hmft6 .next_blog:hover,
  #hmft6 .prev_blog:hover{ transform: none !important; }
}

/* ============================================
   CART ADDED POPUP - Enterprise Design
   ============================================ */
#cart-popup-overlay{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(2, 6, 23, 0.5) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 9998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

#cart-popup-overlay.active{
  opacity: 1 !important;
  visibility: visible !important;
}

#cart-added-popup{
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.9) !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 40px 50px !important;
  box-shadow: 0 25px 80px rgba(2, 6, 23, 0.25) !important;
  z-index: 9999 !important;
  text-align: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  max-width: 90% !important;
  width: 400px !important;
  box-sizing: border-box !important;
}

#cart-added-popup.active{
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

#cart-added-popup .cart-popup-icon{
  width: 72px !important;
  height: 72px !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 24px auto !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
  animation: popupIconPulse 0.6s ease !important;
}

#cart-added-popup .cart-popup-icon svg{
  width: 36px !important;
  height: 36px !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

@keyframes popupIconPulse{
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

#cart-added-popup h3{
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.3px !important;
}

#cart-added-popup p{
  font-size: 15px !important;
  color: #64748b !important;
  margin: 0 0 28px 0 !important;
}

#cart-added-popup .cart-popup-buttons{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

#cart-added-popup .cart-popup-goto{
  display: block !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(0, 108, 228, 0.35) !important;
  box-sizing: border-box !important;
}

#cart-added-popup .cart-popup-goto:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 108, 228, 0.45) !important;
}

#cart-added-popup .cart-popup-continue{
  display: block !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: transparent !important;
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}

#cart-added-popup .cart-popup-continue:hover{
  border-color: #006CE4 !important;
  color: #006CE4 !important;
  background: rgba(0, 108, 228, 0.04) !important;
}

@media (max-width: 480px){
  #cart-added-popup{
    padding: 32px 28px !important;
    width: calc(100% - 40px) !important;
  }
  
  #cart-added-popup h3{
    font-size: 20px !important;
  }
}

/* ============================================
   WISHLIST LOGIN POPUP - Premium Design
   ============================================ */
#wishlist-login-overlay,
#wishlist-success-overlay{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(2, 6, 23, 0.6) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 9998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

#wishlist-login-overlay.active,
#wishlist-success-overlay.active{
  opacity: 1 !important;
  visibility: visible !important;
}

#wishlist-login-popup,
#wishlist-success-popup{
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.9) !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 48px 44px !important;
  box-shadow: 0 30px 90px rgba(0, 59, 149, 0.25) !important;
  z-index: 9999 !important;
  text-align: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  max-width: 90% !important;
  width: 420px !important;
  box-sizing: border-box !important;
}

#wishlist-login-popup.active,
#wishlist-success-popup.active{
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

.wishlist-popup-close{
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 40px !important;
  height: 40px !important;
  background: #f8fafc !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
}

.wishlist-popup-close:hover{
  background: #fee2e2 !important;
}

.wishlist-popup-close svg{
  width: 18px !important;
  height: 18px !important;
  stroke: #64748b !important;
  transition: stroke 0.25s ease !important;
}

.wishlist-popup-close:hover svg{
  stroke: #ef4444 !important;
}

.wishlist-popup-icon{
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 24px !important;
  animation: wishlistPulse 2s ease-in-out infinite !important;
}

.wishlist-popup-icon svg{
  width: 36px !important;
  height: 36px !important;
  stroke: #ec4899 !important;
}

.wishlist-popup-icon-success{
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  animation: wishlistSuccess 0.6s ease-out !important;
}

.wishlist-popup-icon-success svg{
  stroke: #059669 !important;
}

@keyframes wishlistPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
}

@keyframes wishlistSuccess{
  0%{ transform: scale(0); }
  50%{ transform: scale(1.2); }
  100%{ transform: scale(1); }
}

#wishlist-login-popup h3,
#wishlist-success-popup h3{
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
}

#wishlist-login-popup p,
#wishlist-success-popup p{
  font-size: 15px !important;
  color: #64748b !important;
  margin: 0 0 28px !important;
  line-height: 1.6 !important;
}

.wishlist-popup-buttons{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.wishlist-btn-login{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 15px 24px !important;
  background: linear-gradient(135deg, #003b95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(0, 59, 149, 0.3) !important;
  box-sizing: border-box !important;
}

.wishlist-btn-login:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(0, 59, 149, 0.4) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.wishlist-btn-login svg{
  width: 18px !important;
  height: 18px !important;
}

.wishlist-btn-register{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 15px 24px !important;
  background: #ffffff !important;
  color: #003b95 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 2px solid #003b95 !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.wishlist-btn-register:hover{
  background: rgba(0, 59, 149, 0.05) !important;
  color: #003b95 !important;
  text-decoration: none !important;
}

.wishlist-btn-register svg{
  width: 18px !important;
  height: 18px !important;
}

.wishlist-btn-continue{
  display: block !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: transparent !important;
  color: #64748b !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  margin-top: 8px !important;
}

.wishlist-btn-continue:hover{
  color: #0f172a !important;
}

.wishlist-btn-view{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3) !important;
  box-sizing: border-box !important;
}

.wishlist-btn-view:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.wishlist-btn-view svg{
  width: 18px !important;
  height: 18px !important;
}

#wishlist-success-popup .wishlist-btn-continue{
  background: #f8fafc !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  color: #0f172a !important;
  margin-top: 0 !important;
}

#wishlist-success-popup .wishlist-btn-continue:hover{
  border-color: #cbd5e1 !important;
  background: #f1f5f9 !important;
}

@media (max-width: 480px){
  #wishlist-login-popup,
  #wishlist-success-popup{
    padding: 36px 28px !important;
    width: calc(100% - 32px) !important;
    border-radius: 20px !important;
  }
  
  .wishlist-popup-icon{
    width: 70px !important;
    height: 70px !important;
  }
  
  .wishlist-popup-icon svg{
    width: 32px !important;
    height: 32px !important;
  }
  
  #wishlist-login-popup h3,
  #wishlist-success-popup h3{
    font-size: 20px !important;
  }
  
  #wishlist-login-popup p,
  #wishlist-success-popup p{
    font-size: 14px !important;
  }
  
  .wishlist-btn-login,
  .wishlist-btn-register,
  .wishlist-btn-view{
    padding: 14px 20px !important;
    font-size: 14px !important;
  }
}

/* Hide "Η ΕΤΑΙΡΕΙΑ" on mobile */
@media (max-width: 768px){
  #hdtp .box2 a[href*="information_id=9"]{
    display: none !important;
  }
}

/* Burger menu cursor pointer */
#hdmd .menu_btn button,
.menu_btn button{
  cursor: pointer !important;
}

/* Mobile Menu Button with MENU text - Enterprise Design */
@media (max-width: 1200px) {
  #hdmd .menu_btn button{
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px 10px 12px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
  }
  
  #hdmd .menu_btn button:hover{
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.25) !important;
  }
  
  #hdmd .menu_btn button span{
    position: relative !important;
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #ffffff !important;
    font-size: 0 !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }
  
  #hdmd .menu_btn button span::before,
  #hdmd .menu_btn button span::after{
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    width: 20px !important;
    height: 2px !important;
    background: #ffffff !important;
  }
  
  #hdmd .menu_btn button span::before{
    top: -6px !important;
  }
  
  #hdmd .menu_btn button span::after{
    bottom: -6px !important;
  }
  
  #hdmd .menu_btn button::after{
    content: 'MENU' !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
  }
}

/* ============================================
   BLOG SECTION - Mobile Fix
   ============================================ */
@media (max-width: 768px){
  .rowh{
    padding: 50px 15px 60px 15px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  #hmft6 .home-ttl h3{
    font-size: 26px !important;
    line-height: 32px !important;
  }
  
  #hmft6 .all_blog .all_blogc a{
    padding: 14px 32px !important;
    font-size: 14px !important;
  }
  
  #hmft6{
    overflow: hidden !important;
  }
  
  #hmft6 .home-ttl{
    margin-bottom: 30px !important;
  }
  
  #hmft6 .home-ttl h3{
    font-size: 24px !important;
    line-height: 30px !important;
    padding: 0 40px !important;
  }
  
  #hmft6 .home-ttl h3::after{
    width: 40px !important;
    top: -30px !important;
  }
  
  #hmft6 .blog_posts{
    padding: 0 !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
  }
  
  #hmft6 .blog_posts .swiper-container{
    overflow: hidden !important;
  }
  
  #hmft6 .box{
    height: 300px !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    border-radius: 12px !important;
  }
  
  #hmft6 .box .cover{
    height: 140px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
  }
  
  #hmft6 .box .cover img{
    height: 140px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    transition: none !important;
  }
  
  #hmft6 .box:hover .cover img{
    transform: none !important;
  }
  
  #hmft6 .box .cnt{
    padding: 14px !important;
  }
  
  #hmft6 .box .cnt h3,
  #hmft6 .box .cnt h4{
    font-size: 14px !important;
    line-height: 1.4 !important;
    -webkit-line-clamp: 3 !important;
    height: 60px !important;
  }
  
  #hmft6 .box .cnt .blog-read-more{
    margin-top: 12px !important;
    padding: 8px 0 !important;
    font-size: 13px !important;
  }
  
  /* Hide arrows on mobile, use swipe */
  #hmft6 .next_blog,
  #hmft6 .prev_blog{
    display: none !important;
  }
  
  #hmft6 .blog_posts .swiper-wrapper{
    padding-bottom: 0 !important;
  }
  
  #hmft6 .all_blog{
    margin-top: 20px !important;
  }
  
  #hmft6 .all_blog .all_blogc a{
    padding: 12px 30px !important;
    font-size: 13px !important;
  }
}

/* Prevent horizontal scroll on body */
html, body{
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Sale badge mobile fix */
@media (max-width: 768px){
  .glbprdr .cvr .offer{
    left: -10px !important;
    top: 8px !important;
    min-width: 46px !important;
    height: 24px !important;
    font-size: 11px !important;
    padding: 0 10px 0 8px !important;
    border-radius: 0 10px 10px 0 !important;
  }
}

/* ============================================
   MOBILE MENU - Enterprise Redesign
   ============================================ */
header .menu_mob{
  background: #ffffff !important;
  max-width: 320px !important;
  box-shadow: none !important;
  padding: 0 !important;
  left: -320px !important;
  visibility: hidden !important;
  z-index: 999999 !important;
}

header .menu_mob.active{
  left: 0 !important;
  visibility: visible !important;
  box-shadow: 4px 0 30px rgba(2, 6, 23, 0.15) !important;
}

/* Menu overlay - above search */
#glbovrlay{
  z-index: 999998 !important;
}

/* Mobile menu logo */
header .menu_mob .mob_lg{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 20px !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
  border-bottom: 1px solid var(--mv-border) !important;
}

header .menu_mob .mob_lg a{
  display: block !important;
  font-size: 0 !important;
}

header .menu_mob .mob_lg img{
  max-width: 150px !important;
  height: auto !important;
  display: block !important;
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(2000%) hue-rotate(210deg) brightness(90%) contrast(100%) !important;
}

/* Close button */
#cls-mn{
  width: 36px !important;
  height: 36px !important;
  position: absolute !important;
  right: 12px !important;
  top: 12px !important;
  background: var(--mv-surface) !important;
  border: 1px solid var(--mv-border) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  z-index: 10 !important;
}

#cls-mn:hover{
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
}

#cls-mn::before,
#cls-mn::after{
  background: var(--mv-text) !important;
  height: 16px !important;
  width: 2px !important;
  border-radius: 2px !important;
}

#cls-mn:hover::before,
#cls-mn:hover::after{
  background: #dc2626 !important;
}

/* Menu items container */
header .menu_mob > ul{
  padding: 16px !important;
  margin: 0 !important;
}

/* Menu items */
header .menu_mob ul li{
  padding: 0 !important;
  margin-bottom: 4px !important;
}

header .menu_mob ul li a{
  display: block !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--mv-text) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
}

header .menu_mob ul li a:hover{
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.08) 100%) !important;
  color: var(--button) !important;
}

header .menu_mob ul li.go_sub{
  padding: 0 !important;
  position: relative !important;
}

header .menu_mob ul li.go_sub > a{
  padding-right: 40px !important;
  position: relative !important;
}

/* Dropdown arrow - centered with menu item text */
header .menu_mob ul li.go_sub > img{
  position: absolute !important;
  right: 16px !important;
  top: 19px !important;
  transform: rotate(90deg) !important;
  width: 10px !important;
  max-width: 10px !important;
  padding: 0 !important;
  opacity: 0.5 !important;
  transition: all 0.2s ease !important;
  pointer-events: none !important;
}

header .menu_mob ul li.go_sub:hover > img{
  opacity: 1 !important;
}

header .menu_mob ul li.active_sub > img{
  transform: rotate(270deg) !important;
  opacity: 1 !important;
}

header .menu_mob ul li.active_sub > a{
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.08) 100%) !important;
  color: var(--button) !important;
}

/* Submenu */
header .menu_mob .sub_menu{
  margin-top: 4px !important;
}

header .menu_mob .sub_menu ul{
  padding: 8px 0 8px 16px !important;
  background: #f8fafc !important;
  border-radius: 10px !important;
  margin: 0 8px !important;
}

header .menu_mob .sub_menu ul li{
  margin-bottom: 0 !important;
}

header .menu_mob .sub_menu ul li a{
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #64748b !important;
  border-radius: 8px !important;
}

header .menu_mob .sub_menu ul li a:hover{
  color: var(--button) !important;
  background: rgba(0, 108, 228, 0.06) !important;
}

/* Overlay */
#glbovrlay{
  background: rgba(2, 6, 23, 0.5) !important;
  backdrop-filter: blur(4px) !important;
}

/* ========================================
   BLOG PAGES - ENTERPRISE REDESIGN
   ======================================== */

/* Blog List Page Title */
.blog_ttl{
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 60px auto 50px auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

.blog_ttl h1{
  position: relative !important;
  color: var(--mv-text) !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 42px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
}

.blog_ttl h1::after{
  display: none !important;
}

.blog_ttl h1::before{
  content: '' !important;
  position: absolute !important;
  bottom: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(135deg, var(--button) 0%, #0052a3 100%) !important;
  border-radius: 2px !important;
}

/* Blog List Container */
#blog_list{
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1400px !important;
  padding: 0 40px !important;
  background: transparent !important;
  margin: 0 auto 60px auto !important;
}

#blog_list .row{
  width: 100% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}

/* Blog List Cards */
#blog_list .box{
  flex: unset !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: var(--mv-surface) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
}

#blog_list .box:hover{
  box-shadow: 0 12px 40px rgba(0, 108, 228, 0.15) !important;
  transform: translateY(-8px) !important;
}

#blog_list .box img{
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#blog_list .box:hover img{
  transform: scale(1.05) !important;
}

#blog_list .box h2{
  margin: 0 !important;
  padding: 20px 20px 12px 20px !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: var(--mv-text) !important;
  transition: color 0.2s ease !important;
}

#blog_list .box:hover h2{
  color: var(--button) !important;
}

#blog_list .box p{
  margin: 0 !important;
  padding: 0 20px 20px 20px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Blog Post Page */
#blog-post{
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 400px) !important;
  min-height: 100vh !important;
}

#blog-post #content{
  padding: 40px 0 80px 0 !important;
}

.row-post{
  position: relative !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 30px !important;
  box-sizing: border-box !important;
  min-height: auto !important;
}

/* Back Button */
.row-post .back{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  right: auto !important;
  top: auto !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: var(--button) !important;
  font-weight: 500 !important;
  padding: 12px 20px 12px 16px !important;
  background: var(--mv-surface) !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 40px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.row-post .back:hover{
  background: var(--button) !important;
  color: white !important;
  box-shadow: 0 4px 16px rgba(0, 108, 228, 0.3) !important;
  transform: translateX(-4px) !important;
}

.row-post .back::after{
  content: '←' !important;
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  border: none !important;
  font-size: 16px !important;
  order: -1 !important;
  width: auto !important;
  height: auto !important;
}

/* Featured Image */
.row-post > img{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 20px !important;
  margin-bottom: 40px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
  float: none !important;
}

/* Date */
.row-post h4{
  margin: 0 0 16px 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  color: var(--button) !important;
  padding: 8px 16px !important;
  background: rgba(0, 108, 228, 0.08) !important;
  border-radius: 999px !important;
  display: inline-block !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

/* Post Title */
.row-post h1{
  width: 100% !important;
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
  color: var(--mv-text) !important;
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
}

/* Post Content */
.row-post .post_desc{
  width: 100% !important;
  margin: 0 !important;
  padding: 40px !important;
  box-sizing: border-box !important;
  background: var(--mv-surface) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.row-post .post_desc p{
  font-size: 17px !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
  color: #475569 !important;
  margin-bottom: 24px !important;
}

.row-post .post_desc p:last-child{
  margin-bottom: 0 !important;
}

.row-post .post_desc h2{
  font-size: 24px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: var(--mv-text) !important;
  margin: 40px 0 20px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--mv-border) !important;
}

.row-post .post_desc h2:first-child{
  margin-top: 0 !important;
}

.row-post .post_desc h3{
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: var(--mv-text) !important;
  margin: 32px 0 16px 0 !important;
}

.row-post .post_desc ul,
.row-post .post_desc ol{
  margin: 20px 0 !important;
  padding-left: 24px !important;
}

.row-post .post_desc li{
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: #475569 !important;
  margin-bottom: 12px !important;
}

.row-post .post_desc a{
  color: var(--button) !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
}

.row-post .post_desc a:hover{
  color: var(--button-hover) !important;
}

.row-post .post_desc img{
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  margin: 24px 0 !important;
}

.row-post .post_desc blockquote{
  margin: 30px 0 !important;
  padding: 24px 30px !important;
  background: linear-gradient(135deg, rgba(0, 108, 228, 0.05) 0%, rgba(0, 59, 149, 0.05) 100%) !important;
  border-left: 4px solid var(--button) !important;
  border-radius: 0 12px 12px 0 !important;
  font-style: italic !important;
  color: #475569 !important;
}

/* Blog List Responsive */
@media (max-width: 1024px){
  #blog_list .row{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 640px){
  .blog_ttl{
    margin: 40px auto 40px auto !important;
  }
  
  .blog_ttl h1{
    font-size: 32px !important;
  }
  
  #blog_list{
    padding: 0 20px !important;
  }
  
  #blog_list .row{
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  #blog_list .box img{
    height: 180px !important;
  }
  
  #blog_list .box h2{
    font-size: 16px !important;
    padding: 16px 16px 10px 16px !important;
  }
  
  #blog_list .box p{
    padding: 0 16px 16px 16px !important;
    font-size: 13px !important;
  }
}

/* Blog Post Responsive */
@media (max-width: 768px){
  .row-post{
    padding: 0 20px !important;
  }
  
  .row-post .back{
    font-size: 13px !important;
    padding: 10px 16px 10px 14px !important;
    margin-bottom: 30px !important;
  }
  
  .row-post > img{
    border-radius: 16px !important;
    margin-bottom: 30px !important;
  }
  
  .row-post h1{
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }
  
  .row-post h4{
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  .row-post .post_desc{
    padding: 24px !important;
    border-radius: 16px !important;
  }
  
  .row-post .post_desc p{
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  
  .row-post .post_desc h2{
    font-size: 20px !important;
    margin: 30px 0 16px 0 !important;
  }
  
  .row-post .post_desc h3{
    font-size: 18px !important;
  }
}

/* ========================================
   PROMOTIONAL BLOCKS - HOMEPAGE
   ======================================== */
#promo-section{
  max-width: 1400px !important;
  margin: 50px auto 30px auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
}

.promo-section-title{
  text-align: center !important;
}

.promo-section-title h2{
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--mv-text) !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.5px !important;
}

.promo-section-title p{
  font-size: 16px !important;
  color: #64748b !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

@media (max-width: 768px){
  #promo-section{
    padding: 0 20px !important;
    margin-bottom: 20px !important;
  }
  
  .promo-section-title h2{
    font-size: 24px !important;
  }
  
  .promo-section-title p{
    font-size: 14px !important;
  }
}

#promo-blocks{
  display: flex !important;
  gap: 20px !important;
  max-width: 1400px !important;
  margin: 0 auto 60px auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.promo-card{
  flex: 1 1 0 !important;
  min-width: 0 !important;
  border-radius: 20px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
}

.promo-card:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.promo-blue{
  background: linear-gradient(180deg, #e8f4fc 0%, #d6ebf7 100%) !important;
}

.promo-pink{
  background: linear-gradient(180deg, #fdf2f4 0%, #fce8ec 100%) !important;
}

.promo-beige{
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%) !important;
}

.promo-beige .promo-tag{
  color: #b8860b !important;
}

.promo-card h2{
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1a365d !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.5px !important;
}

.promo-card > p{
  font-size: 13px !important;
  color: #4a5568 !important;
  margin: 0 0 16px 0 !important;
  font-weight: 400 !important;
}

.promo-products{
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}

.promo-item{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  flex: 1 1 0 !important;
  min-width: 100px !important;
  max-width: 140px !important;
  background: white !important;
  border-radius: 14px !important;
  padding: 16px 12px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
}

.promo-item:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.promo-item a{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
}

.promo-price{
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  margin-bottom: 8px !important;
}

.promo-item img{
  width: 100% !important;
  max-width: 90px !important;
  height: 90px !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
  margin-bottom: 10px !important;
}

.promo-item:hover img{
  transform: scale(1.08) !important;
}

.promo-tag{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  font-size: 11px !important;
  text-align: center !important;
  line-height: 1 !important;
  color: #2d7d9a !important;
  font-weight: 500 !important;
}

.promo-tag img{
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}

.promo-pink .promo-tag{
  color: #2d9a6d !important;
}

.promo-btn{
  display: inline-block !important;
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  color: white !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 108, 228, 0.3) !important;
  white-space: nowrap !important;
}

.promo-btn:hover{
  background: linear-gradient(135deg, #0056c8 0%, #002d75 100%) !important;
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.4) !important;
  transform: translateY(-2px) !important;
  color: white !important;
}

/* Promo blocks responsive */

/* Large Desktop (1400px+) - default styles apply */

/* Desktop (1200-1400px) */
@media (max-width: 1400px){
  #promo-blocks{
    gap: 20px !important;
    padding: 0 30px !important;
  }
  
  .promo-item{
    min-width: 90px !important;
    max-width: 130px !important;
  }
}

/* Small Desktop / Large Tablet (992-1200px) */
@media (max-width: 1200px){
  #promo-blocks{
    gap: 16px !important;
    padding: 0 25px !important;
  }
  
  .promo-card{
    padding: 22px 18px !important;
  }
  
  .promo-item{
    min-width: 85px !important;
    max-width: 120px !important;
    padding: 14px 10px !important;
  }
  
  .promo-item img{
    max-width: 80px !important;
    height: 80px !important;
  }
  
  .promo-card h2{
    font-size: 20px !important;
  }
  
  .promo-card > p{
    font-size: 12px !important;
  }
  
  .promo-btn{
    padding: 11px 20px !important;
    font-size: 12px !important;
  }
}

/* Tablet (768-992px) */
@media (max-width: 992px){
  #promo-section{
    padding: 0 20px !important;
  }
  
  #promo-blocks{
    gap: 14px !important;
    padding: 0 20px !important;
  }
  
  .promo-card{
    padding: 20px 14px !important;
  }
  
  .promo-products{
    gap: 8px !important;
  }
  
  .promo-item{
    min-width: 75px !important;
    max-width: 100px !important;
    padding: 12px 8px !important;
  }
  
  .promo-item img{
    max-width: 65px !important;
    height: 65px !important;
  }
  
  .promo-price{
    font-size: 14px !important;
  }
  
  .promo-tag{
    font-size: 10px !important;
  }
  
  .promo-card h2{
    font-size: 18px !important;
  }
  
  .promo-card > p{
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }
  
  .promo-btn{
    padding: 10px 16px !important;
    font-size: 11px !important;
  }
}

/* Mobile Landscape / Small Tablet (576-768px) */
@media (max-width: 768px){
  #promo-section{
    margin-bottom: 20px !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  
  .promo-section-title h2{
    font-size: 24px !important;
  }
  
  .promo-section-title p{
    font-size: 13px !important;
  }
  
  #promo-blocks{
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .promo-card{
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  
  .promo-card h2{
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }
  
  .promo-card > p{
    font-size: 13px !important;
    margin-bottom: 16px !important;
    display: block !important;
  }
  
  .promo-products{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
    box-sizing: border-box !important;
  }
  
  .promo-item{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 30% !important;
    padding: 10px 8px 8px 8px !important;
    border-radius: 12px !important;
    background: white !important;
    box-sizing: border-box !important;
    gap: 3px !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .promo-item img{
    display: block !important;
    max-width: 50px !important;
    height: 50px !important;
    margin: 3px 0 !important;
    object-fit: contain !important;
  }
  
  .promo-price{
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
    order: -1 !important;
    line-height: 1.2 !important;
  }
  
  .promo-tag{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    margin-top: 3px !important;
    gap: 3px !important;
    color: #2d9a6d !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }
  
  .promo-tag img{
    width: 11px !important;
    height: 11px !important;
  }
  
  .promo-btn{
    display: inline-block !important;
    padding: 14px 24px !important;
    font-size: 13px !important;
  }
}

/* Mobile Portrait (480-576px) - progressively smaller */
@media (max-width: 576px){
  #promo-section{
    padding: 0 12px !important;
  }
  
  .promo-section-title h2{
    font-size: 22px !important;
  }
  
  #promo-blocks{
    padding: 0 12px !important;
    gap: 14px !important;
  }
  
  .promo-card{
    padding: 18px 12px !important;
  }
  
  .promo-products{
    gap: 8px !important;
  }
  
  .promo-item{
    padding: 8px 6px 6px 6px !important;
    border-radius: 10px !important;
    gap: 2px !important;
  }
  
  .promo-item img{
    max-width: 45px !important;
    height: 45px !important;
    margin: 2px 0 !important;
  }
  
  .promo-price{
    font-size: 15px !important;
    margin-bottom: 0 !important;
  }
  
  .promo-tag{
    font-size: 10px !important;
    margin-top: 2px !important;
  }
  
  .promo-card h2{
    font-size: 20px !important;
  }
  
  .promo-card > p{
    font-size: 12px !important;
  }
  
  .promo-btn{
    padding: 12px 22px !important;
    font-size: 12px !important;
  }
}

/* Small Mobile (320-480px) - even smaller */
@media (max-width: 480px){
  #promo-section{
    padding: 0 10px !important;
    margin-bottom: 16px !important;
  }
  
  .promo-section-title h2{
    font-size: 20px !important;
  }
  
  .promo-section-title p{
    font-size: 12px !important;
  }
  
  #promo-blocks{
    padding: 0 10px !important;
    gap: 12px !important;
  }
  
  .promo-card{
    padding: 14px 10px !important;
    border-radius: 14px !important;
  }
  
  .promo-products{
    gap: 6px !important;
    margin-bottom: 10px !important;
  }
  
  .promo-item{
    padding: 6px 4px 5px 4px !important;
    border-radius: 8px !important;
    gap: 1px !important;
  }
  
  .promo-item img{
    max-width: 40px !important;
    height: 40px !important;
    margin: 1px 0 !important;
  }
  
  .promo-price{
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }
  
  .promo-tag{
    font-size: 9px !important;
    margin-top: 1px !important;
  }
  
  .promo-tag img{
    width: 10px !important;
    height: 10px !important;
  }
  
  .promo-card h2{
    font-size: 18px !important;
  }
  
  .promo-card > p{
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }
  
  .promo-btn{
    padding: 10px 18px !important;
    font-size: 11px !important;
  }
}

/* Extra Small Mobile (< 360px) - smallest */
@media (max-width: 360px){
  .promo-products{
    gap: 4px !important;
  }
  
  .promo-item{
    padding: 5px 3px 4px 3px !important;
    gap: 1px !important;
  }
  
  .promo-item img{
    max-width: 35px !important;
    height: 35px !important;
    margin: 1px 0 !important;
  }
  
  .promo-price{
    font-size: 12px !important;
  }
  
  .promo-tag{
    font-size: 8px !important;
  }
  
  .promo-tag img{
    width: 8px !important;
    height: 8px !important;
  }
  
  .promo-card h2{
    font-size: 16px !important;
  }
  
  .promo-btn{
    padding: 9px 14px !important;
    font-size: 10px !important;
  }
}

/* ========================================
   HOT DEALS / FEATURED SECTIONS - Enterprise Redesign
   ======================================== */
#hmft1,
#hmft2,
#hmft3{
  background: linear-gradient(180deg, var(--mv-bg) 0%, #ffffff 100%) !important;
  padding: 60px 0 !important;
  margin-bottom: 0 !important;
}

#hmft1 .row,
#hmft2 .row,
#hmft3 .row{
  max-width: 1400px !important;
  padding: 0 40px !important;
}

/* Section Title - Enterprise Style */
#hmft1 .ttl,
#hmft2 .ttl,
#hmft3 .ttl{
  margin-bottom: 40px !important;
  position: relative !important;
}

#hmft1 .ttl::before,
#hmft2 .ttl::before,
#hmft3 .ttl::before{
  display: none !important;
}

#hmft1 .ttl h2,
#hmft2 .ttl h2,
#hmft3 .ttl h2{
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--mv-text) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
  padding: 0 !important;
  position: relative !important;
}

#hmft1 .ttl h2::after,
#hmft2 .ttl h2::after{
  content: '' !important;
  flex: 1 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--mv-border) 0%, transparent 100%) !important;
  margin-left: 20px !important;
  min-width: 100px !important;
}

#hmft1 .ttl h2 img,
#hmft2 .ttl h2 img,
#hmft3 .ttl h2 img{
  width: 32px !important;
  height: 32px !important;
  padding: 8px !important;
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  border-radius: 10px !important;
  filter: brightness(0) invert(1) !important;
}

/* Products Container */
#hmft1 .prds,
#hmft2 .prds,
#hmft3 .prds{
  padding: 0 50px !important;
  position: relative !important;
}

/* Navigation Arrows - Enterprise */
#hmft1 .prds .next,
#hmft1 .prds .prev,
#hmft2 .prds .next,
#hmft2 .prds .prev,
#hmft3 .prds .next,
#hmft3 .prds .prev{
  width: 44px !important;
  height: 44px !important;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  z-index: 10 !important;
}

#hmft1 .prds .next:hover,
#hmft1 .prds .prev:hover,
#hmft2 .prds .next:hover,
#hmft2 .prds .prev:hover,
#hmft3 .prds .next:hover,
#hmft3 .prds .prev:hover{
  background: var(--button) !important;
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.3) !important;
  transform: scale(1.1) !important;
}

#hmft1 .prds .next:hover,
#hmft1 .prds .prev:hover,
#hmft2 .prds .next:hover,
#hmft2 .prds .prev:hover,
#hmft3 .prds .next:hover,
#hmft3 .prds .prev:hover{
  filter: brightness(0) invert(1) !important;
}

#hmft1 .prds .next,
#hmft2 .prds .next,
#hmft3 .prds .next{
  right: 0 !important;
}

#hmft1 .prds .prev,
#hmft2 .prds .prev,
#hmft3 .prds .prev{
  left: 0 !important;
}

/* ========================================
   #hmft3 - Special Featured Section
   ======================================== */
#hmft3{
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 50%, #f0f9ff 100%) !important;
  padding: 80px 0 !important;
}

#hmft3 .ttl{
  max-width: 1400px !important;
  padding: 0 40px !important;
  margin: 0 auto 50px auto !important;
}

#hmft3 .ttl_left{
  padding-right: 60px !important;
}

#hmft3 .ttl_left h2{
  font-size: 38px !important;
  font-weight: 700 !important;
  color: var(--mv-text) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

#hmft3 .ttl_left p{
  font-size: 16px !important;
  color: var(--mv-muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}

#hmft3 .ttl_left a{
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  color: white !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 108, 228, 0.3) !important;
  transition: all 0.3s ease !important;
}

#hmft3 .ttl_left a:hover{
  background: linear-gradient(135deg, #0056c8 0%, #002d75 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.4) !important;
  color: white !important;
}

#hmft3 .ttl_right .big_img,
#hmft3 .ttl_right .small_img{
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: var(--mv-shadow) !important;
}

#hmft3 .ttl_right .small_img{
  border-radius: 16px !important;
}

/* ========================================
   #hmft10 - Two Column Featured Products
   ======================================== */
#hmft10{
  background: var(--mv-surface) !important;
  padding: 60px 0 !important;
  margin-bottom: 0 !important;
}

#hmft10 .row{
  max-width: 1400px !important;
  padding: 0 40px !important;
  gap: 30px !important;
}

#hmft10 .row .proteinomeno,
#hmft10 .row .prosfora{
  background: white !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: var(--mv-shadow) !important;
  border: 1px solid var(--mv-border) !important;
  transition: all 0.3s ease !important;
}

#hmft10 .row .proteinomeno:hover,
#hmft10 .row .prosfora:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

#hmft10 .row .proteinomeno{
  border-right: none !important;
}

#hmft10 .row .proteinomeno_right > span,
#hmft10 .row .prosfora_right > span{
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

#hmft10 .row .prosfora_right > span{
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

#hmft10 .row .prosfora_left .discount{
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#hmft10 .row .proteinomeno_right h4,
#hmft10 .row .prosfora_right h4{
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--mv-text) !important;
  margin-bottom: 8px !important;
}

#hmft10 .row .proteinomeno_right h6,
#hmft10 .row .prosfora_right h6{
  font-size: 14px !important;
  color: var(--mv-muted) !important;
  margin-bottom: 24px !important;
}

#hmft10 .row .proteinomeno_right .prc strong,
#hmft10 .row .prosfora_right .prc strong{
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--button) !important;
}

#hmft10 .row .prosfora_right .prc strong{
  color: #22c55e !important;
}

#hmft10 .row .proteinomeno_right > a,
#hmft10 .row .prosfora_right > a{
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 108, 228, 0.3) !important;
  transition: all 0.3s ease !important;
}

#hmft10 .row .proteinomeno_right > a:hover,
#hmft10 .row .prosfora_right > a:hover{
  background: linear-gradient(135deg, #0056c8 0%, #002d75 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.4) !important;
}

/* Responsive for Hot Deals */
@media (max-width: 992px){
  #hmft1 .row,
  #hmft2 .row,
  #hmft3 .row{
    padding: 0 20px !important;
  }
  
  #hmft1 .ttl h2,
  #hmft2 .ttl h2{
    font-size: 26px !important;
  }
  
  #hmft3 .ttl_left h2{
    font-size: 30px !important;
  }
  
  #hmft10 .row{
    padding: 0 20px !important;
  }
}

@media (max-width: 768px){
  #hmft1,
  #hmft2,
  #hmft3{
    padding: 40px 0 !important;
  }
  
  #hmft1 .ttl,
  #hmft2 .ttl{
    margin-bottom: 24px !important;
  }
  
  #hmft1 .ttl h2,
  #hmft2 .ttl h2{
    font-size: 22px !important;
  }
  
  #hmft1 .ttl h2 img,
  #hmft2 .ttl h2 img{
    width: 26px !important;
    height: 26px !important;
    padding: 6px !important;
    border-radius: 8px !important;
  }
  
  #hmft1 .prds,
  #hmft2 .prds{
    padding: 0 35px !important;
  }
  
  #hmft1 .prds .next,
  #hmft1 .prds .prev,
  #hmft2 .prds .next,
  #hmft2 .prds .prev{
    width: 36px !important;
    height: 36px !important;
    padding: 10px !important;
  }
  
  #hmft3{
    padding: 50px 0 !important;
  }
  
  #hmft3 .ttl{
    padding: 0 20px !important;
  }
  
  #hmft3 .ttl_left h2{
    font-size: 26px !important;
  }
  
  #hmft3 .ttl_left p{
    font-size: 14px !important;
  }
  
  #hmft10{
    padding: 40px 0 !important;
  }
  
  #hmft10 .row{
    padding: 0 15px !important;
    flex-direction: column !important;
  }
  
  #hmft10 .row .proteinomeno,
  #hmft10 .row .prosfora{
    width: 100% !important;
    flex: 1 !important;
    padding: 24px !important;
    border-radius: 16px !important;
  }
}

/* ========================================
   NEWSLETTER SECTION - Enterprise Redesign
   ======================================== */
#news{
  background: linear-gradient(135deg, #003B95 0%, #006CE4 50%, #0077ED 100%) !important;
  padding: 30px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Decorative background elements */
#news::before{
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  right: -10% !important;
  width: 500px !important;
  height: 500px !important;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

#news::after{
  content: '' !important;
  position: absolute !important;
  bottom: -30% !important;
  left: -5% !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

#news .row{
  max-width: 1200px !important;
  padding: 0 40px !important;
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
  gap: 30px !important;
}

#news .news_left{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
}

#news .news_left img{
  width: 40px !important;
  height: 40px !important;
  padding: 10px !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 12px !important;
  margin-bottom: 0 !important;
  filter: brightness(0) invert(1) !important;
  flex-shrink: 0 !important;
}

#news .news_left .news_info{
  align-items: flex-start !important;
  margin: 0 !important;
}

#news .news_left strong{
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
}

#news .news_left span{
  font-size: 14px !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 400 !important;
  margin: 0 !important;
  max-width: 350px !important;
  line-height: 1.4 !important;
}

#news .news_right{
  width: 100% !important;
  max-width: 550px !important;
  flex: none !important;
  display: flex !important;
  align-items: center !important;
}

#news .news_right form{
  display: flex !important;
  align-items: center !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 999px !important;
  padding: 6px !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  width: 100% !important;
}

#news .news_right form input{
  background: transparent !important;
  border: none !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #ffffff !important;
  border-radius: 999px !important;
}

#news .news_right form input::placeholder{
  color: rgba(255,255,255,0.7) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

#news .news_right form input:focus{
  outline: none !important;
  background: rgba(255,255,255,0.1) !important;
}

#news .news_right form button{
  background: #ffffff !important;
  color: #003B95 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

#news .news_right form button:hover{
  background: #f0f9ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

/* Newsletter responsive */
@media (max-width: 768px){
  #news{
    padding: 25px 0 !important;
  }
  
  #news .row{
    padding: 0 20px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }
  
  #news .news_left{
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
  }
  
  #news .news_left .news_info{
    align-items: center !important;
    gap: 4px !important;
  }
  
  #news .news_left img{
    width: 36px !important;
    height: 36px !important;
    padding: 8px !important;
    border-radius: 10px !important;
    margin-bottom: 4px !important;
  }
  
  #news .news_left strong{
    font-size: 16px !important;
    margin-bottom: 2px !important;
  }
  
  #news .news_left span{
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  
  #news .news_right{
    width: 100% !important;
    max-width: 320px !important;
  }
  
  #news .news_right form{
    flex-direction: column !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    gap: 8px !important;
  }
  
  #news .news_right form input{
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  #news .news_right form button{
    width: 100% !important;
    padding: 12px 20px !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px){
  #news{
    padding: 20px 0 !important;
  }
  
  #news .news_left strong{
    font-size: 15px !important;
  }
  
  #news .news_left span{
    font-size: 11px !important;
  }
  
  #news .news_right form input{
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  
  #news .news_right form button{
    padding: 10px 16px !important;
    font-size: 12px !important;
  }
}

/* Newsletter Message Styles */
#newsletter-message{
  margin-top: 12px !important;
  text-align: center !important;
  min-height: 24px !important;
}

#newsletter-message span{
  display: inline-block !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  animation: fadeIn 0.3s ease !important;
}

#newsletter-message.success span{
  background: rgba(34, 197, 94, 0.2) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

#newsletter-message.error span{
  background: rgba(239, 68, 68, 0.2) !important;
  color: #fca5a5 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

@keyframes fadeIn{
  from{
    opacity: 0;
    transform: translateY(-10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter button disabled state */
#newsletter-form button:disabled{
  opacity: 0.7 !important;
  cursor: not-allowed !important;
}

@media (max-width: 768px){
  #newsletter-message span{
    font-size: 12px !important;
    padding: 8px 16px !important;
  }
}

/* ========================================
   FOOTER - Enterprise Redesign
   ======================================== */
footer{
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  background: transparent !important;
}

/* Top Footer - Social & Contact */
.top_footer{
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
  padding: 40px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.top_footer .row{
  max-width: 1400px !important;
  padding: 0 40px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.top_footer .row .foot_social{
  gap: 16px !important;
}

.top_footer .row .foot_social span{
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.7) !important;
  margin-right: 8px !important;
}

.top_footer .row .foot_social a{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.top_footer .row .foot_social a:hover{
  background: var(--button) !important;
  transform: translateY(-2px) !important;
}

.top_footer .row .foot_social a img{
  width: 20px !important;
  height: 20px !important;
  filter: brightness(0) invert(1) !important;
}

.top_footer .con_foot{
  gap: 24px !important;
}

.top_footer .con_foot a{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
  background: rgba(255,255,255,0.05) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: all 0.3s ease !important;
}

.top_footer .con_foot a:hover{
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.top_footer .con_foot a img{
  width: 18px !important;
  height: 18px !important;
  filter: brightness(0) invert(1) !important;
}

/* Bottom Footer - Main Content */
.bot_footer{
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
  padding: 60px 0 40px 0 !important;
}

.bot_footer .row{
  max-width: 1400px !important;
  padding: 0 40px !important;
  gap: 40px !important;
}

/* Store Info */
.bot_footer .foot_info{
  flex: 0 0 280px !important;
  width: 280px !important;
}

.bot_footer .foot_info strong{
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.bot_footer .foot_info span{
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
  display: block !important;
}

/* Map Section */
#ft_map{
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
}

#ft_map iframe{
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  max-width: 100% !important;
}

#ft_map img{
  border-radius: 12px !important;
  max-width: 300px !important;
}

/* Footer Columns */
.bot_footer .informations,
.bot_footer .foot_prods{
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 140px !important;
}

.bot_footer .informations h5,
.bot_footer .foot_prods h5{
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--button) !important;
  display: inline-block !important;
}

.bot_footer .informations ul li,
.bot_footer .foot_prods ul li{
  margin-bottom: 12px !important;
}

.bot_footer .informations ul li a,
.bot_footer .foot_prods ul li a{
  font-size: 14px !important;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.bot_footer .informations ul li a:hover,
.bot_footer .foot_prods ul li a:hover{
  color: #ffffff !important;
  padding-left: 6px !important;
}

.bot_footer .informations ul li a::before,
.bot_footer .foot_prods ul li a::before{
  content: '›' !important;
  opacity: 0 !important;
  transition: all 0.2s ease !important;
  margin-left: -12px !important;
}

.bot_footer .informations ul li a:hover::before,
.bot_footer .foot_prods ul li a:hover::before{
  opacity: 1 !important;
  margin-left: 0 !important;
}

/* Developer Row */
footer .dev_row{
  background: #0a0f1a !important;
  padding: 20px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}

footer .dev_row .row,
footer .dev_row dziv{
  max-width: 1400px !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

footer .dev_row .wuck-logo{
  height: 28px !important;
  max-width: 120px !important;
  opacity: 0.7 !important;
  transition: all 0.3s ease !important;
}

footer .dev_row .wuck-logo:hover{
  opacity: 1 !important;
}

footer .dev_row .back_top{
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

footer .dev_row .back_top:hover{
  background: var(--button) !important;
  border-color: var(--button) !important;
  transform: translateY(-2px) !important;
}

footer .dev_row .back_top img{
  display: none !important;
}

footer .dev_row .back_top::before{
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  border-left: 2px solid #ffffff !important;
  border-top: 2px solid #ffffff !important;
  transform: rotate(45deg) translateY(2px) !important;
  display: block !important;
}

/* Footer Responsive */
@media (max-width: 992px){
  .top_footer .row,
  .bot_footer .row{
    padding: 0 20px !important;
  }
  
  .bot_footer .row{
    flex-wrap: wrap !important;
  }
  
  .bot_footer .foot_info{
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  
  #ft_map{
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  
  .bot_footer .informations,
  .bot_footer .foot_prods{
    flex: 0 0 calc(50% - 20px) !important;
    width: calc(50% - 20px) !important;
  }
}

@media (max-width: 768px){
  .top_footer{
    padding: 24px 0 !important;
  }
  
  .top_footer .row{
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  
  .top_footer .row .foot_social{
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  
  .top_footer .row .foot_social span{
    width: 100% !important;
    text-align: center !important;
    margin-right: 0 !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
  }
  
  .top_footer .row .foot_social a{
    width: 36px !important;
    height: 36px !important;
  }
  
  .top_footer .row .foot_social a img{
    width: 18px !important;
    height: 18px !important;
  }
  
  .top_footer .con_foot{
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }
  
  .top_footer .con_foot a{
    flex: 1 1 auto !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 999px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
  }
  
  .top_footer .con_foot a:active{
    transform: scale(0.98) !important;
    background: rgba(255,255,255,0.1) !important;
  }
  
  .bot_footer{
    padding: 30px 0 20px 0 !important;
  }
  
  .bot_footer .row{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    text-align: left !important;
    padding: 0 16px !important;
    gap: 16px !important;
  }
  
  .bot_footer .foot_info{
    order: 1 !important;
    align-items: flex-start !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  
  .bot_footer .informations{
    order: 2 !important;
  }
  
  .bot_footer .foot_prods{
    order: 3 !important;
  }
  
  #ft_map{
    order: 4 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  
  .bot_footer .foot_info strong{
    font-size: 15px !important;
  }
  
  .bot_footer .foot_info span{
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }
  
  #ft_map iframe{
    width: 100% !important;
    max-width: 100% !important;
    height: 200px !important;
    border-radius: 12px !important;
  }
  
  #ft_map img{
    max-width: 200px !important;
  }
  
  .bot_footer .informations,
  .bot_footer .foot_prods{
    flex: 1 1 45% !important;
    width: 45% !important;
    min-width: 140px !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }
  
  .bot_footer .informations h5,
  .bot_footer .foot_prods h5{
    display: inline-block !important;
    font-size: 14px !important;
    margin-bottom: 16px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
  }
  
  .bot_footer .informations ul,
  .bot_footer .foot_prods ul{
    text-align: left !important;
  }
  
  .bot_footer .informations ul li,
  .bot_footer .foot_prods ul li{
    margin-bottom: 10px !important;
  }
  
  .bot_footer .informations ul li a,
  .bot_footer .foot_prods ul li a{
    font-size: 13px !important;
    justify-content: center !important;
  }
  
  .bot_footer .informations ul li a::before,
  .bot_footer .foot_prods ul li a::before{
    display: none !important;
  }
  
  .bot_footer .informations ul li a:hover,
  .bot_footer .foot_prods ul li a:hover{
    padding-left: 0 !important;
  }
  
  footer .dev_row{
    padding: 16px 0 !important;
  }
  
  footer .dev_row .row,
  footer .dev_row dziv{
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }
  
  footer .dev_row .wuck-logo{
    height: 24px !important;
  }
  
  footer .dev_row .back_top{
    width: 36px !important;
    height: 36px !important;
  }
}

@media (max-width: 480px){
  .top_footer{
    padding: 20px 0 !important;
  }
  
  .top_footer .row{
    padding: 0 12px !important;
    gap: 12px !important;
  }
  
  .top_footer .row .foot_social a{
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }
  
  .top_footer .row .foot_social a img{
    width: 16px !important;
    height: 16px !important;
  }
  
  .top_footer .con_foot a{
    padding: 10px 12px !important;
    font-size: 12px !important;
    border-radius: 50px !important;
  }
  
  .top_footer .con_foot a img{
    width: 16px !important;
    height: 16px !important;
  }
  
  .bot_footer{
    padding: 24px 0 16px 0 !important;
  }
  
  .bot_footer .row{
    padding: 0 12px !important;
    gap: 20px !important;
  }
  
  .bot_footer .foot_info strong{
    font-size: 14px !important;
  }
  
  .bot_footer .foot_info span{
    font-size: 12px !important;
  }
  
  #ft_map iframe{
    height: 160px !important;
    border-radius: 10px !important;
  }
  
  .bot_footer .informations h5,
  .bot_footer .foot_prods h5{
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }
  
  .bot_footer .informations ul li a,
  .bot_footer .foot_prods ul li a{
    font-size: 12px !important;
  }
  
  footer .dev_row{
    padding: 12px 0 !important;
  }
  
  footer .dev_row .row,
  footer .dev_row dziv{
    padding: 0 12px !important;
    gap: 10px !important;
  }
  
  footer .dev_row .wuck-logo{
    height: 20px !important;
  }
  
  footer .dev_row .back_top{
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }
  
  footer .dev_row .back_top::before{
    width: 8px !important;
    height: 8px !important;
  }
}

/* ========================================
   COMPANY SECTION - Enterprise Redesign
   ======================================== */
#company{
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 50%, #f0f9ff 100%) !important;
  padding: 80px 0 !important;
  margin: 0 0 0 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

#company::before{
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(0, 108, 228, 0.08) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

#company .row{
  max-width: 1200px !important;
  padding: 0 40px !important;
  position: relative !important;
  z-index: 1 !important;
}

#company .company_left{
  flex: 0 0 45% !important;
  width: 45% !important;
  min-height: auto !important;
  position: relative !important;
}

#company .company_left img{
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  max-width: 100% !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 108, 228, 0.15) !important;
  transition: all 0.4s ease !important;
}

#company .company_left img:hover{
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 80px rgba(0, 108, 228, 0.2) !important;
}

#company .company_right{
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: none !important;
  padding-left: 60px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

#company .company_right h2{
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--mv-text) !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  position: relative !important;
}

#company .company_right h2::before{
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: -20px !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, var(--button) 0%, #0077ED 100%) !important;
  border-radius: 2px !important;
}

#company .company_right p{
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--mv-muted) !important;
  margin-bottom: 32px !important;
}

#company .company_right a{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #006CE4 0%, #003B95 100%) !important;
  color: white !important;
  padding: 16px 32px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 108, 228, 0.3) !important;
  transition: all 0.3s ease !important;
  width: fit-content !important;
  max-width: none !important;
}

#company .company_right a:hover{
  background: linear-gradient(135deg, #0056c8 0%, #002d75 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(0, 108, 228, 0.4) !important;
  color: white !important;
}

#company .company_right a::after{
  content: '→' !important;
  font-size: 18px !important;
  transition: transform 0.3s ease !important;
}

#company .company_right a:hover::after{
  transform: translateX(4px) !important;
}

/* Company Section Responsive */
@media (max-width: 992px){
  #company{
    padding: 60px 0 !important;
  }
  
  #company .row{
    padding: 0 30px !important;
  }
  
  #company .company_right{
    padding-left: 40px !important;
  }
  
  #company .company_right h2{
    font-size: 30px !important;
  }
}

@media (max-width: 768px){
  #company{
    padding: 50px 0 !important;
  }
  
  #company .row{
    flex-direction: column !important;
    padding: 0 20px !important;
    text-align: center !important;
  }
  
  #company .company_left{
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    max-width: 400px !important;
    min-height: auto !important;
  }
  
  #company .company_left img{
    position: relative !important;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    bottom: unset !important;
    transform: none !important;
    border-radius: 16px !important;
    width: 100% !important;
    height: auto !important;
  }
  
  #company .company_left img:hover{
    transform: translateY(-5px) !important;
  }
  
  #company .company_right{
    flex: 0 0 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    align-items: center !important;
  }
  
  #company .company_right h2{
    font-size: 28px !important;
  }
  
  #company .company_right h2::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  #company .company_right p{
    font-size: 15px !important;
    max-width: 500px !important;
  }
}

@media (max-width: 480px){
  #company{
    padding: 40px 0 !important;
  }
  
  #company .company_right h2{
    font-size: 24px !important;
  }
  
  #company .company_right p{
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }
  
  #company .company_right a{
    padding: 14px 28px !important;
    font-size: 14px !important;
  }
}

/* ========================================
   INFO BAR - Enterprise Redesign
   ======================================== */
.info1{
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%) !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.info1 .row{
  max-width: 1400px !important;
  padding: 30px 40px !important;
}

.info1 .details{
  gap: 20px !important;
}

.info1 .details .detail{
  flex: 1 !important;
  width: auto !important;
  padding: 20px 30px !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  transition: all 0.3s ease !important;
}

.info1 .details .detail:hover{
  background: rgba(255,255,255,0.15) !important;
  transform: translateY(-4px) !important;
}

.info1 .details .detail img{
  width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
  padding: 10px !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 12px !important;
  margin-right: 20px !important;
  filter: brightness(0) invert(1) !important;
}

.info1 .detail strong{
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
}

.info1 .detail span{
  font-size: 14px !important;
  color: rgba(255,255,255,0.8) !important;
}

/* Info Bar Responsive */
@media (max-width: 992px){
  .info1 .row{
    padding: 25px 20px !important;
  }
  
  .info1 .details .detail{
    padding: 16px 20px !important;
  }
  
  .info1 .details .detail img{
    width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    margin-right: 14px !important;
  }
  
  .info1 .detail strong{
    font-size: 14px !important;
  }
  
  .info1 .detail span{
    font-size: 12px !important;
  }
}

@media (max-width: 768px){
  .info1 .details{
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .info1 .details .detail{
    flex: 0 0 100% !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

/* =====================================================
   SEARCH AUTOCOMPLETE DROPDOWN - Enterprise Style
===================================================== */
#mob-search {
  position: relative !important;
}

/* When dropdown is active, flatten bottom corners of input */
#mob-search.dropdown-open input {
  border-radius: 20px 20px 0 0 !important;
  border-bottom: none !important;
}

.search-autocomplete-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 15px 40px rgba(0, 59, 149, 0.12), 
              0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e0e7ef;
  border-top: 1px solid #eef2f7;
}

.search-autocomplete-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-autocomplete-content {
  padding: 8px 0;
}

/* Section styling */
.search-autocomplete-section {
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f8;
}

.search-autocomplete-section:last-of-type {
  border-bottom: none;
}

.search-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #003B95;
  padding: 8px 20px;
  margin-bottom: 4px;
}

/* Category list */
.search-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-category-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.search-category-list li a:hover {
  background: linear-gradient(90deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.04) 100%);
  color: #003B95;
}

.search-category-list li a svg {
  flex-shrink: 0;
  color: #006CE4;
}

/* Product list */
.search-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-product-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-product-list li a:hover {
  background: linear-gradient(90deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.04) 100%);
}

.search-product-list .product-image {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e8eef4;
}

.search-product-list .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-product-list .product-info {
  flex: 1;
  min-width: 0;
}

.search-product-list .product-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.search-product-list .product-price {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-product-list .product-price .old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 12px;
}

.search-product-list .product-price .new-price {
  color: #dc2626;
  font-weight: 700;
}

.search-product-list .product-price .current-price {
  color: #003B95;
  font-weight: 700;
}

/* View all results */
.search-view-all {
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border-top: 1px solid #e8eef4;
}

.search-view-all a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #003B95;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-view-all a:hover {
  color: #006CE4;
}

.search-view-all .search-term {
  font-weight: 700;
  color: #006CE4;
}

/* No results */
.search-no-results {
  padding: 30px 20px;
  text-align: center;
}

.search-no-results p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* Loading */
.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 20px;
}

.search-loading span {
  color: #64748b;
  font-size: 14px;
}

.search-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e8eef4;
  border-top-color: #003B95;
  border-radius: 50%;
  animation: searchSpin 0.8s linear infinite;
}

@keyframes searchSpin {
  to { transform: rotate(360deg); }
}

/* Scrollbar styling */
.search-autocomplete-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-autocomplete-dropdown::-webkit-scrollbar-track {
  background: #f0f4f8;
  border-radius: 3px;
}

.search-autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #003B95 0%, #006CE4 100%);
  border-radius: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .search-autocomplete-dropdown {
    max-height: 70vh;
    border-radius: 0 0 16px 16px;
    z-index: 99999 !important;
    position: fixed !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  }
  
  .search-section-title {
    font-size: 10px;
    padding: 6px 16px;
  }
  
  .search-category-list li a,
  .search-product-list li a {
    padding: 8px 16px;
  }
  
  .search-product-list .product-image {
    width: 45px;
    height: 45px;
  }
  
  .search-product-list .product-name {
    font-size: 13px;
  }
  
  .search-view-all {
    padding: 10px 16px;
  }
}

/* =====================================================
   AIRLINES SECTION - Exact Image Match
===================================================== */
#airlines-section {
  padding: 50px 20px;
  background: #e8f0f2;
}

.airlines-container {
  max-width: 800px;
  margin: 0 auto;
}

.airlines-header {
  text-align: center;
  margin-bottom: 25px;
}

.airlines-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #003366;
  margin: 0 0 8px 0;
}

.airlines-header p {
  font-size: 14px;
  color: #5a6a7a;
  margin: 0;
}

.airlines-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Card Base */
.airline-card {
  flex: 1;
  max-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 18px 18px;
  border-left: 4px solid #003B95;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Ryanair Card - Blue Background */
.airline-card.ryanair {
  background: #003B95;
  border-left: 4px solid #f8c200;
}

.airline-card.ryanair .airline-specs li {
  color: #ffffff;
}

.airline-card.ryanair .airline-specs .check-icon {
  color: #f8c200;
}

.airline-card.ryanair .airline-btn {
  background: #f8c200;
  color: #003B95;
  font-weight: 700;
}

.airline-card.ryanair .airline-btn:hover {
  background: #e5b200;
  color: #003B95;
}

/* Logo Area */
.airline-card .airline-logo {
  display: flex;
  align-items: center;
  height: 28px;
  margin-bottom: 14px;
}

.airline-card .airline-logo img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

/* All Airlines Card Logo */
.airline-card.all-airlines .airline-logo {
  gap: 8px;
}

.airline-card.all-airlines .airplane-icon {
  display: flex;
  align-items: center;
}

.airline-card.all-airlines .airplane-icon svg {
  width: 22px;
  height: 22px;
  fill: #003B95;
  stroke: none;
}

.airline-card.all-airlines .all-airlines-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
}

/* Specs List */
.airline-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
}

.airline-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  color: #2d3748;
  line-height: 1.5;
}

.airline-specs .check-icon {
  color: #003B95;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Buttons */
.airline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 16px;
  background: #003B95;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.airline-btn:hover {
  background: #002a6e;
  color: #ffffff;
  transform: translateY(-1px);
}

.airline-btn span {
  font-size: 15px;
  font-weight: 400;
}

/* Outline Button for "Δες όλες" */
.airline-btn.outline {
  background: #f8f9fa;
  border: 2px solid #d1d5db;
  color: #6b7280;
}

.airline-btn.outline:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #4b5563;
  transform: translateY(-1px);
}

/* Responsive - Keep horizontal layout like desktop */
@media (max-width: 768px) {
  #airlines-section {
    padding: 40px 12px;
  }
  
  .airlines-container {
    max-width: 100%;
  }
  
  .airlines-cards {
    flex-direction: row;
    gap: 10px;
  }
  
  .airline-card {
    max-width: none;
    flex: 1;
    padding: 14px 12px 12px;
    min-height: auto;
  }
  
  .airline-card .airline-logo {
    height: 22px;
    margin-bottom: 10px;
  }
  
  .airline-card .airline-logo img {
    height: 16px;
  }
  
  .airline-specs li {
    font-size: 11px;
    padding: 2px 0;
    gap: 5px;
  }
  
  .airline-specs .check-icon {
    font-size: 11px;
  }
  
  .airline-btn {
    padding: 7px 10px;
    font-size: 10px;
    margin-top: 10px;
  }
  
  .airline-btn span {
    font-size: 12px;
  }
  
  .airlines-header h2 {
    font-size: 18px;
  }
  
  .airlines-header p {
    font-size: 12px;
  }
  
  .airline-card.all-airlines .all-airlines-title {
    font-size: 10px;
  }
  
  .airline-card.all-airlines .airplane-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  #airlines-section {
    padding: 30px 8px;
  }
  
  .airlines-cards {
    gap: 6px;
  }
  
  .airline-card {
    padding: 10px 8px 10px;
    border-radius: 8px;
    border-left-width: 3px;
  }
  
  .airline-card .airline-logo {
    height: 18px;
    margin-bottom: 8px;
  }
  
  .airline-card .airline-logo img {
    height: 14px;
  }
  
  .airlines-header h2 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .airlines-header p {
    font-size: 11px;
  }
  
  .airline-specs li {
    font-size: 9px;
    padding: 1px 0;
    gap: 4px;
  }
  
  .airline-specs .check-icon {
    font-size: 9px;
  }
  
  .airline-btn {
    padding: 5px 6px;
    font-size: 8px;
    margin-top: 8px;
    border-radius: 5px;
  }
  
  .airline-btn span {
    font-size: 10px;
  }
  
  .airline-card.all-airlines .all-airlines-title {
    font-size: 8px;
  }
  
  .airline-card.all-airlines .airplane-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .airline-card.all-airlines .airline-logo {
    gap: 4px;
  }
}

/* =====================================================
   ORDER TRACKING PAGE - Enterprise Style
===================================================== */
#tracking-page {
  min-height: 100vh;
  background: #f8fafc;
}

/* Hero Section */
.tracking-hero {
  background: linear-gradient(135deg, #003B95 0%, #0052cc 50%, #006CE4 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tracking-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.tracking-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.tracking-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.tracking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin-bottom: 24px;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.tracking-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.tracking-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Container */
.tracking-container {
  max-width: 900px;
  margin: -40px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Form Wrapper */
.tracking-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 59, 149, 0.12);
  margin-bottom: 30px;
}

.tracking-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tracking-form .form-group {
  flex: 1;
}

/* Single Input Form */
.tracking-form .form-single {
  margin-bottom: 20px;
}

.tracking-form .form-group-large {
  width: 100%;
}

.tracking-form .form-group-large label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.tracking-form .form-group-large label svg {
  color: #003B95;
}

.tracking-form .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.tracking-form .input-with-icon input {
  width: 100%;
  padding: 20px 70px 20px 24px;
  border: 2px solid #e8eef4;
  border-radius: 16px;
  font-size: 18px;
  color: #1a1a2e;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.tracking-form .input-with-icon input:focus {
  outline: none;
  border-color: #003B95;
  box-shadow: 0 0 0 4px rgba(0, 59, 149, 0.1);
}

.tracking-form .input-with-icon input::placeholder {
  color: #94a3b8;
  font-size: 16px;
}

.tracking-submit-inline {
  position: absolute;
  right: 8px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.tracking-submit-inline:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 59, 149, 0.4);
}

.tracking-form .form-hint {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

/* Tracking Code Display */
.tracking-code-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 108, 228, 0.04) 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 59, 149, 0.15);
}

.tracking-code-display svg {
  color: #003B95;
  flex-shrink: 0;
}

.tracking-code-display span {
  font-size: 14px;
  color: #1a1a2e;
}

.tracking-code-display strong {
  color: #003B95;
  font-weight: 700;
  font-family: monospace;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.tracking-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.tracking-form label svg {
  color: #003B95;
}

.tracking-form input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e8eef4;
  border-radius: 12px;
  font-size: 15px;
  color: #1a1a2e;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.tracking-form input:focus {
  outline: none;
  border-color: #003B95;
  box-shadow: 0 0 0 4px rgba(0, 59, 149, 0.1);
}

.tracking-form input::placeholder {
  color: #94a3b8;
}

.tracking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tracking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 59, 149, 0.3);
}

/* Error Message */
.tracking-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  margin-bottom: 30px;
  color: #dc2626;
}

.tracking-error svg {
  flex-shrink: 0;
}

/* Results Section */
.tracking-results {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.tracking-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eef4;
  margin-bottom: 30px;
}

.order-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
}

.order-badge svg {
  color: #22c55e;
}

.order-status {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #e0f2fe;
  color: #0284c7;
}

.order-status.status-ολοκληρωμένη,
.order-status.status-complete,
.order-status.status-delivered {
  background: #dcfce7;
  color: #16a34a;
}

.order-status.status-pending,
.order-status.status-εκκρεμεί {
  background: #fef3c7;
  color: #d97706;
}

.order-status.status-processing,
.order-status.status-σε-επεξεργασία {
  background: #e0f2fe;
  color: #0284c7;
}

.order-status.status-shipped,
.order-status.status-απεστάλη {
  background: #ede9fe;
  color: #7c3aed;
}

/* Timeline */
.tracking-timeline {
  margin-bottom: 30px;
}

.tracking-timeline h3,
.tracking-products h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 20px 0;
}

.tracking-timeline h3 svg,
.tracking-products h3 svg {
  color: #003B95;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e8eef4;
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #e8eef4;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #e8eef4;
}

.timeline-item.active .timeline-marker {
  background: #003B95;
  box-shadow: 0 0 0 2px #003B95;
}

.timeline-content {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
}

.timeline-date {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.timeline-status {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

.timeline-comment {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

/* Details Grid */
.tracking-details {
  margin-bottom: 30px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.detail-icon svg {
  color: #ffffff;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

/* Products Table */
.products-table {
  border: 1px solid #e8eef4;
  border-radius: 12px;
  overflow: hidden;
}

.products-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid #e8eef4;
  font-size: 14px;
  color: #1a1a2e;
}

.product-name {
  font-weight: 500;
}

.products-footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #003B95 0%, #006CE4 100%);
  color: #ffffff;
  font-weight: 700;
}

.grand-total {
  font-size: 18px;
}

/* Help Section */
.tracking-help {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.help-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 59, 149, 0.1);
}

.help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.1) 0%, rgba(0, 108, 228, 0.1) 100%);
  border-radius: 14px;
  flex-shrink: 0;
}

.help-icon svg {
  color: #003B95;
}

.help-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px 0;
}

.help-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.help-content a {
  color: #003B95;
  font-weight: 600;
  text-decoration: none;
}

.help-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .tracking-hero {
    padding: 50px 16px;
  }
  
  .tracking-hero h1 {
    font-size: 28px;
  }
  
  .tracking-form-wrapper {
    padding: 24px 20px;
  }
  
  .tracking-form .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .tracking-form .input-with-icon input {
    padding: 18px 65px 18px 20px;
    font-size: 16px;
  }
  
  .tracking-submit-inline {
    width: 44px;
    height: 44px;
    right: 6px;
  }
  
  .tracking-form .form-hint {
    font-size: 12px;
  }
  
  .tracking-results {
    padding: 24px 20px;
  }
  
  .tracking-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .products-header,
  .products-row {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .products-header span:nth-child(3),
  .products-row .product-price {
    display: none;
  }
  
  .tracking-help {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .tracking-icon {
    width: 80px;
    height: 80px;
  }
  
  .tracking-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .order-badge {
    font-size: 18px;
  }
}

/* =====================================================
   HOT DEALS SECTION - Enterprise Redesign
===================================================== */
#hot-deals-section {
  padding: 80px 0;
  background: #f5f7fa;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
#hot-deals-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 108, 228, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

#hot-deals-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 108, 228, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hot-deals-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.hot-deals-header {
  text-align: center;
  margin-bottom: 50px;
}

.hot-deals-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
  border-radius: 999px;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hot-deals-badge svg {
  color: #0f172a;
}

.hot-deals-badge span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0f172a;
}

.hot-deals-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.hot-deals-header p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* Slider Container */
.hot-deals-slider {
  position: relative;
  padding: 0 50px;
}

#hot-deals-swiper {
  overflow: visible;
  padding: 10px 0 40px 0;
}

#hot-deals-swiper .swiper-wrapper {
  align-items: stretch;
}

/* Product Cards Inside Hot Deals */
#hot-deals-section .glbprdr {
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 100% !important;
  border: 1px solid #e5e7eb !important;
}

#hot-deals-section .glbprdr:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 108, 228, 0.15) !important;
}

#hot-deals-section .glbprdr .cvr .offer {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
  font-weight: 800 !important;
}

/* Navigation Buttons */
.hot-deals-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hot-deals-nav:hover {
  background: #003B95;
  border-color: #003B95;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.hot-deals-prev {
  left: 0;
}

.hot-deals-next {
  right: 0;
}

/* Pagination */
.hot-deals-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hot-deals-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hot-deals-pagination .swiper-pagination-bullet-active {
  background: #003B95;
  width: 30px;
  border-radius: 5px;
}

/* CTA Button */
.hot-deals-cta {
  text-align: center;
  margin-top: 40px;
}

.hot-deals-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #003B95;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hot-deals-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 59, 149, 0.3);
  background: #002a6e;
}

.hot-deals-btn svg {
  transition: transform 0.3s ease;
}

.hot-deals-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  #hot-deals-section {
    padding: 60px 0;
  }
  
  .hot-deals-header h2 {
    font-size: 34px;
  }
  
  .hot-deals-slider {
    padding: 0 40px;
  }
  
  .hot-deals-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  #hot-deals-section {
    padding: 50px 0;
  }
  
  .hot-deals-header {
    margin-bottom: 40px;
  }
  
  .hot-deals-header h2 {
    font-size: 28px;
  }
  
  .hot-deals-header p {
    font-size: 14px;
  }
  
  .hot-deals-slider {
    padding: 0 20px;
  }
  
  .hot-deals-nav {
    width: 40px;
    height: 40px;
  }
  
  .hot-deals-prev {
    left: 5px;
  }
  
  .hot-deals-next {
    right: 5px;
  }
  
  .hot-deals-btn {
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #hot-deals-section {
    padding: 40px 0;
  }
  
  .hot-deals-badge {
    padding: 6px 16px;
  }
  
  .hot-deals-badge span {
    font-size: 10px;
  }
  
  .hot-deals-header h2 {
    font-size: 24px;
  }
  
  .hot-deals-slider {
    padding: 0 10px;
  }
  
  .hot-deals-nav {
    width: 36px;
    height: 36px;
    display: none;
  }
  
  .hot-deals-cta {
    margin-top: 30px;
  }
  
  .hot-deals-btn {
    width: calc(100% - 40px);
    justify-content: center;
    padding: 14px 24px;
  }
}

/* =====================================================
   BANNER TYPE 1 - ENTERPRISE DESIGN
   ===================================================== */

#ban-1.banner-type-1 {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.banner-grid-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-row {
  display: grid;
  gap: 20px;
}

.banner-row-top {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.banner-row-bottom {
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
}

.banner-item {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.banner-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-item:hover .banner-image-wrapper img {
  transform: scale(1.08);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.banner-item:hover .banner-overlay {
  opacity: 1;
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-item:hover .banner-content {
  transform: translateY(0);
  opacity: 1;
}

.banner-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.banner-cta svg {
  transition: transform 0.3s ease;
}

.banner-item:hover .banner-cta {
  background: rgba(255, 255, 255, 0.3);
}

.banner-item:hover .banner-cta svg {
  transform: translateX(4px);
}

/* Aspect Ratios */
.banner-row-top .banner-large {
  aspect-ratio: 16 / 9;
}

.banner-row-top .banner-medium {
  aspect-ratio: 4 / 3;
}

.banner-row-bottom .banner-medium {
  aspect-ratio: 4 / 3;
}

.banner-row-bottom .banner-large {
  aspect-ratio: 16 / 9;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  #ban-1.banner-type-1 {
    margin: 50px auto 50px auto;
  }
  
  .banner-grid-container {
    gap: 16px;
  }
  
  .banner-row {
    gap: 16px;
  }
  
  .banner-item {
    border-radius: 14px;
  }
  
  .banner-content {
    padding: 20px;
  }
  
  .banner-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  #ban-1.banner-type-1 {
    margin: 40px auto 40px auto;
    padding: 0 16px;
  }
  
  .banner-grid-container {
    gap: 12px;
  }
  
  .banner-row {
    gap: 12px;
  }
  
  .banner-row-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .banner-row-bottom {
    grid-template-columns: 1fr 1fr;
  }
  
  .banner-row-top .banner-large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }
  
  .banner-row-bottom .banner-large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
    order: -1;
  }
  
  .banner-row-top .banner-medium,
  .banner-row-bottom .banner-medium {
    aspect-ratio: 3 / 2;
  }
  
  .banner-item {
    border-radius: 12px;
  }
  
  .banner-content {
    padding: 16px;
  }
  
  .banner-title {
    font-size: 15px;
  }
  
  .banner-cta {
    font-size: 13px;
    padding: 6px 14px;
  }
}

@media screen and (max-width: 600px) {
  #ban-1.banner-type-1 {
    margin: 30px auto 30px auto;
    padding: 0 12px;
  }
  
  .banner-grid-container {
    gap: 8px;
  }
  
  .banner-row {
    gap: 8px;
  }
  
  /* Even 2-column grid on mobile */
  .banner-row-top,
  .banner-row-bottom {
    grid-template-columns: 1fr 1fr;
  }
  
  .banner-row-top .banner-large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
    order: -1;
  }
  
  .banner-row-top .banner-medium {
    aspect-ratio: 4 / 3;
  }
  
  .banner-row-bottom .banner-large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
    order: 3;
  }
  
  .banner-row-bottom .banner-medium {
    aspect-ratio: 4 / 3;
  }
  
  .banner-item {
    border-radius: 10px;
  }
  
  .banner-item:hover {
    transform: translateY(-2px);
  }
  
  .banner-content {
    padding: 10px;
    transform: translateY(0);
    opacity: 1;
  }
  
  .banner-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .banner-cta {
    font-size: 10px;
    padding: 5px 10px;
    gap: 4px;
  }
  
  .banner-cta svg {
    width: 12px;
    height: 12px;
  }
}

@media screen and (max-width: 400px) {
  #ban-1.banner-type-1 {
    padding: 0 8px;
  }
  
  .banner-grid-container {
    gap: 6px;
  }
  
  .banner-row {
    gap: 6px;
  }
  
  .banner-item {
    border-radius: 8px;
  }
  
  .banner-content {
    padding: 8px;
  }
  
  .banner-title {
    font-size: 10px;
    margin-bottom: 4px;
  }
  
  .banner-cta {
    font-size: 9px;
    padding: 4px 8px;
  }
}

/* =====================================================
   FEATURES BAR - ENTERPRISE DESIGN
   ===================================================== */

/* Hide old info1 section */
.info1 {
  display: none !important;
}

#features-bar {
  background: #f8fafc;
  padding: 40px 20px;
  margin: 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 8px 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #3b82f6;
  transform: scale(1.05);
}

.feature-item:hover .feature-icon svg {
  color: #ffffff;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-content strong {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.feature-content span {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}

.feature-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, #e2e8f0 50%, transparent 100%);
  margin: 0 8px;
}

/* Features Bar Responsive - Keep horizontal like desktop */
@media screen and (max-width: 1100px) {
  #features-bar {
    padding: 30px 16px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-content strong {
    font-size: 12px;
  }
  
  .feature-content span {
    font-size: 10px;
  }
  
  .feature-divider {
    height: 32px;
  }
}

@media screen and (max-width: 900px) {
  #features-bar {
    padding: 24px 12px;
  }
  
  .features-container {
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  .feature-item {
    flex: 1;
    justify-content: center;
    padding: 6px 4px;
    gap: 8px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
  }
  
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .feature-content strong {
    font-size: 11px;
  }
  
  .feature-content span {
    font-size: 9px;
  }
  
  .feature-divider {
    height: 28px;
    margin: 0 4px;
  }
}

@media screen and (max-width: 600px) {
  #features-bar {
    padding: 20px 8px;
    overflow-x: auto;
  }
  
  .features-container {
    flex-direction: row;
    gap: 6px;
    min-width: max-content;
  }
  
  .feature-item {
    flex: 0 0 auto;
    min-width: 70px;
    padding: 8px 6px;
    gap: 6px;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
  }
  
  .feature-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .feature-content {
    align-items: center;
  }
  
  .feature-content strong {
    font-size: 9px;
    text-align: center;
  }
  
  .feature-content span {
    font-size: 7px;
    text-align: center;
    display: none;
  }
  
  .feature-divider {
    display: none;
  }
}

/* =====================================================
   PRODUCT SECTIONS - ENTERPRISE REDESIGN
   (Νέες Αφίξεις & Trending Now)
   ===================================================== */

#hmft1.product-section,
#hmft2.product-section {
  background: #ffffff !important;
  padding: 70px 0 !important;
  margin: 0 !important;
  position: relative;
}

#hmft1.product-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

#hmft2.product-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.product-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.product-section .section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.product-section .section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.product-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-section .section-badge.green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  border: 1px solid #86efac;
}

.product-section .section-badge.green svg {
  color: #22c55e;
}

.product-section .section-badge.orange {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #c2410c;
  border: 1px solid #fdba74;
}

.product-section .section-badge.orange svg {
  color: #f97316;
}

.product-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.product-section .section-subtitle {
  flex-basis: 100%;
  font-size: 15px;
  color: #64748b;
  margin: -8px 0 0 0;
  order: 3;
}

/* Navigation Buttons */
.product-section .section-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.product-section .nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-section .nav-btn:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  transform: scale(1.05);
}

.product-section .nav-btn:active {
  transform: scale(0.95);
}

/* Products Slider */
.product-section .products-slider {
  position: relative;
}

.product-section .products-slider .swiper-container {
  overflow: visible;
  padding: 10px 0;
}

/* Product Cards Inside Section */
.product-section .glbprdr {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.product-section .glbprdr:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: #3b82f6 !important;
}

#hmft2.product-section .glbprdr:hover {
  border-color: #f97316 !important;
}

/* Section Footer */
.product-section .section-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.product-section .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.product-section .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.product-section .view-all-btn:hover svg {
  transform: translateX(4px);
}

.product-section .view-all-btn svg {
  transition: transform 0.3s ease;
}

.product-section .view-all-btn.orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.product-section .view-all-btn.orange:hover {
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* =====================================================
   SET ΒΑΛΙΤΣΩΝ SECTION - Enterprise Design
===================================================== */
.luggage-sets-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f2ff 50%, #dbeafe 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.luggage-sets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003B95 0%, #006CE4 50%, #003B95 100%);
}

.sets-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.sets-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.sets-header-content {
  flex: 1;
}

.sets-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #003B95;
  color: #ffffff;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sets-badge svg {
  width: 16px;
  height: 16px;
}

.sets-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #003B95;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.sets-header p {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}

.sets-nav {
  display: flex;
  gap: 8px;
}

.sets-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #003B95;
  background: #ffffff;
  color: #003B95;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sets-nav-btn:hover {
  background: #003B95;
  color: #ffffff;
  transform: scale(1.05);
}

.sets-slider {
  position: relative;
}

.sets-slider .swiper-container {
  overflow: visible;
  padding: 10px 0;
}

.sets-footer {
  text-align: center;
  margin-top: 40px;
}

.sets-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #003B95;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 59, 149, 0.3);
}

.sets-view-all:hover {
  background: #002a6e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 59, 149, 0.4);
}

.sets-view-all svg {
  transition: transform 0.3s ease;
}

.sets-view-all:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .luggage-sets-section {
    padding: 50px 0;
  }
  
  .sets-container {
    padding: 0 16px;
  }
  
  .sets-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .sets-header h2 {
    font-size: 28px;
  }
  
  .sets-header p {
    font-size: 14px;
  }
  
  .sets-nav {
    align-self: flex-end;
  }
  
  .sets-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .sets-footer {
    margin-top: 30px;
  }
  
  .sets-view-all {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .luggage-sets-section {
    padding: 40px 0;
  }
  
  .sets-container {
    padding: 0 12px;
  }
  
  .sets-badge {
    padding: 6px 12px;
    font-size: 10px;
  }
  
  .sets-header h2 {
    font-size: 24px;
  }
  
  .sets-nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .sets-view-all {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Product Section Responsive */
@media screen and (max-width: 1100px) {
  #hmft1.product-section,
  #hmft2.product-section {
    padding: 60px 0 !important;
  }
  
  .product-section .section-header h2 {
    font-size: 28px;
  }
  
  .product-section .section-subtitle {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #hmft1.product-section,
  #hmft2.product-section {
    padding: 50px 0 !important;
  }
  
  .product-section .section-container {
    padding: 0 16px;
  }
  
  .product-section .section-header {
    margin-bottom: 30px;
  }
  
  .product-section .section-title-wrapper {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .product-section .section-header h2 {
    font-size: 24px;
    flex-basis: 100%;
    order: 2;
  }
  
  .product-section .section-badge {
    padding: 6px 12px;
    font-size: 10px;
  }
  
  .product-section .section-nav {
    position: absolute;
    right: 16px;
    top: 0;
  }
  
  .product-section .section-header {
    position: relative;
    padding-right: 100px;
  }
  
  .product-section .nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  
  .product-section .section-footer {
    margin-top: 30px;
  }
  
  .product-section .view-all-btn {
    width: calc(100% - 32px);
    justify-content: center;
    padding: 14px 24px;
  }
}

@media screen and (max-width: 480px) {
  #hmft1.product-section,
  #hmft2.product-section {
    padding: 40px 0 !important;
  }
  
  .product-section .section-container {
    padding: 0 12px;
  }
  
  .product-section .section-header h2 {
    font-size: 22px;
  }
  
  .product-section .section-subtitle {
    font-size: 13px;
  }
  
  .product-section .nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .product-section .view-all-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* =====================================================
   POLO BRAND SECTION - Enterprise Style
===================================================== */
#polo-section {
  padding: 60px 20px;
  background: #f5f7fa;
}

.polo-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.polo-header {
  text-align: center;
  margin-bottom: 40px;
}

.polo-header .polo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #003B95;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.polo-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.polo-header p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

/* Main Grid - Hero + Categories */
.polo-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Hero Card */
.polo-hero-card {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 420px;
}

.polo-hero-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.polo-hero-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.polo-hero-content .polo-brand {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0 0 4px 0;
  color: #fff;
}

.polo-hero-content .polo-tagline {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.9);
}

.polo-hero-content .polo-tagline strong {
  font-weight: 600;
}

.polo-hero-description {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.polo-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.polo-hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.polo-hero-features .check {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
}

.polo-hero-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.polo-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b82f6;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.polo-hero-cta:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.polo-hero-price {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Categories Card */
.polo-categories-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.polo-categories-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 24px 0;
  text-align: center;
}

.polo-categories-title strong {
  color: #003B95;
}

.polo-categories-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.polo-category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.polo-category-item:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: translateX(4px);
}

.polo-category-icon {
  width: 56px;
  height: 56px;
  background: #003B95;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.polo-category-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.polo-category-info {
  flex: 1;
}

.polo-category-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  display: block;
  margin-bottom: 2px;
}

.polo-category-desc {
  font-size: 12px;
  color: #6b7280;
}

.polo-category-arrow {
  color: #9ca3af;
  transition: all 0.2s ease;
}

.polo-category-item:hover .polo-category-arrow {
  color: #3b82f6;
  transform: translateX(4px);
}

/* View All Button */
.polo-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 24px;
  background: #003B95;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.polo-view-all:hover {
  background: #002a6e;
  color: #fff;
  transform: translateY(-2px);
}

.polo-shipping-note {
  font-size: 12px;
  color: #6b7280;
  margin: 12px 0 0 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .polo-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .polo-hero-card {
    min-height: auto;
  }
  
  .polo-hero-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  #polo-section {
    padding: 50px 16px;
  }
  
  .polo-header h2 {
    font-size: 26px;
  }
  
  .polo-hero-content .polo-brand {
    font-size: 28px;
  }
  
  .polo-hero-content .polo-tagline {
    font-size: 18px;
  }
  
  .polo-hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .polo-categories-grid {
    gap: 10px;
  }
  
  .polo-category-item {
    padding: 14px;
  }
  
  .polo-category-icon {
    width: 48px;
    height: 48px;
  }
  
  .polo-category-icon img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  #polo-section {
    padding: 40px 12px;
  }
  
  .polo-header h2 {
    font-size: 22px;
  }
  
  .polo-hero-content {
    padding: 20px;
  }
  
  .polo-hero-content .polo-brand {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .polo-hero-content .polo-tagline {
    font-size: 16px;
  }
  
  .polo-categories-card {
    padding: 20px;
  }
  
  .polo-categories-title {
    font-size: 18px;
  }
  
  .polo-category-item {
    padding: 12px;
    gap: 12px;
  }
  
  .polo-category-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  
  .polo-category-name {
    font-size: 14px;
  }
  
  .polo-view-all {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ============================================
   HEADER (HDMD) - Mobile Responsive Fix
   ============================================ */
@media (max-width: 900px) {
  #hdmd{
    padding: 12px 0 !important;
  }
  
  #hdmd .row{
    padding: 0 12px !important;
  }
  
  #hdmd .lg{
    width: auto !important;
    margin-right: 12px !important;
  }
  
  #hdmd .lg > a img{
    max-width: 145px !important;
    height: auto !important;
  }
  
  #hdmd .menu_btn{
    margin-right: 10px !important;
  }
  
  #hdmd .menu_btn button{
    padding: 10px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
  }
  
  #hdmd .menu_btn button span,
  #hdmd .menu_btn button span::before,
  #hdmd .menu_btn button span::after{
    background: #ffffff !important;
  }
  
  #hdmd .cnmn{
    gap: 8px !important;
  }
  
  #hdmd .cnmn > a{
    margin: 0 !important;
  }
  
  #hdmd .cnmn > a img{
    max-width: 22px !important;
  }
  
  #hdcrt{
    border-radius: 8px !important;
  }
  
  #hdcrt a{
    padding: 8px 12px !important;
  }
  
  #hdcrt a img{
    max-width: 20px !important;
  }
}

@media (max-width: 768px) {
  #hdmd .lg > a img{
    max-width: 125px !important;
  }
}

@media (max-width: 600px) {
  #hdmd{
    padding: 10px 0 !important;
  }
  
  #hdmd .row{
    padding: 0 10px !important;
    gap: 8px !important;
  }
  
  #hdmd .lg{
    margin-right: 8px !important;
  }
  
  #hdmd .lg > a img{
    max-width: 115px !important;
  }
  
  #hdmd .menu_btn{
    margin-right: 8px !important;
  }
  
  #hdmd .menu_btn button{
    padding: 8px !important;
    border-radius: 6px !important;
  }
  
  #hdmd .menu_btn button span{
    width: 18px !important;
    height: 2px !important;
  }
  
  #hdmd .menu_btn button span::before,
  #hdmd .menu_btn button span::after{
    width: 18px !important;
    height: 2px !important;
  }
  
  #hdmd .menu_btn button span::before{
    top: -5px !important;
  }
  
  #hdmd .menu_btn button span::after{
    bottom: -5px !important;
  }
  
  #hdmd .cnmn > a img{
    max-width: 20px !important;
  }
  
  #hdmd .cnmn a.search img{
    max-width: 20px !important;
  }
  
  #hdcrt{
    border-radius: 6px !important;
  }
  
  #hdcrt a{
    padding: 6px 10px !important;
  }
  
  #hdcrt a img{
    max-width: 18px !important;
  }
  
  #hdcrt a span{
    width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
  }
}

/* Mobile Search Bar - Always Visible */
@media (max-width: 800px) {
  /* Hide the search icon button */
  #hdmd .cnmn a.search{
    display: none !important;
  }
  
  /* Hide close button */
  #cls-srch{
    display: none !important;
  }
  
  /* Always show search bar */
  #hdmd .srch_input{
    opacity: 1 !important;
    position: relative !important;
    top: 0 !important;
    z-index: 99998 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 10px 0 0 0 !important;
    order: 10 !important;
    flex: 0 0 100% !important;
  }
  
  #hdmd .srch_input input{
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 999px !important;
    padding: 12px 50px 12px 20px !important;
    color: #ffffff !important;
    font-size: 14px !important;
  }
  
  #hdmd .srch_input input::placeholder{
    color: rgba(255,255,255,0.7) !important;
  }
  
  #hdmd .srch_input button{
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    z-index: 5 !important;
  }
  
  #hdmd .srch_input button img{
    width: 18px !important;
    height: 18px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
  }
  
  #hdmd .row{
    flex-wrap: wrap !important;
  }
}

@media (max-width: 480px) {
  #hdmd .lg > a img{
    max-width: 105px !important;
  }
  
  #hdmd .cnmn{
    gap: 6px !important;
  }
  
  #hdmd .cnmn > a img{
    max-width: 18px !important;
  }
  
  #hdcrt a{
    padding: 5px 8px !important;
  }
  
  #hdcrt a img{
    max-width: 16px !important;
  }
  
  #hdcrt a span{
    width: 14px !important;
    height: 14px !important;
    font-size: 8px !important;
    right: -4px !important;
    top: -4px !important;
  }
}

/* =====================================================
   PRODUCT PAGE - Premium Redesign
   ===================================================== */

#product {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto 60px auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

#product > .row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 50px !important;
  align-items: flex-start !important;
}

/* ===== IMAGE GALLERY ===== */
#product .imgs {
  flex: 0 0 55% !important;
  max-width: 55% !important;
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 16px !important;
  position: sticky !important;
  top: 20px !important;
}

#product .imgs .main {
  flex: 1 !important;
  position: relative !important;
  background: #f8fafc !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  aspect-ratio: 1/1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#product .imgs .main a {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 30px !important;
  box-sizing: border-box !important;
}

#product .imgs .main img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.4s ease !important;
}

#product .imgs .main:hover img {
  transform: scale(1.05) !important;
}

/* Discount Badge */
#product .imgs .main .offer {
  position: absolute !important;
  left: 20px !important;
  top: 20px !important;
  padding: 10px 16px !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #fff !important;
  border-radius: 30px !important;
  z-index: 10 !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35) !important;
}

#product .imgs .main .offer::after {
  display: none !important;
}

#product .imgs .main .offer span {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

/* Thumbnails */
#product .imgs .thmb {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 90px !important;
  min-width: 90px !important;
  max-height: 500px !important;
  overflow-y: auto !important;
  padding-right: 8px !important;
  margin: 0 !important;
}

#product .imgs .thmb::-webkit-scrollbar {
  width: 4px !important;
}

#product .imgs .thmb::-webkit-scrollbar-track {
  background: #f1f5f9 !important;
  border-radius: 4px !important;
}

#product .imgs .thmb::-webkit-scrollbar-thumb {
  background: #cbd5e1 !important;
  border-radius: 4px !important;
}

#product .imgs .thmb a {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
  padding: 6px !important;
  box-sizing: border-box !important;
}

#product .imgs .thmb a:hover {
  border-color: #003b95 !important;
  box-shadow: 0 4px 12px rgba(0, 59, 149, 0.15) !important;
}

#product .imgs .thmb a.active {
  border-color: #003b95 !important;
  box-shadow: 0 4px 12px rgba(0, 59, 149, 0.2) !important;
  background: #eff6ff !important;
}

#product .imgs .thmb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* ===== PRODUCT INFO ===== */
#product .info {
  flex: 1 !important;
  max-width: 500px !important;
  padding: 0 !important;
}

#product .info_con {
  width: 100% !important;
  max-width: 100% !important;
}

/* Brand/Manufacturer */
#product .info h2 {
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

#product .info h2 a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  background: #f1f5f9 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
}

#product .info h2 a:hover {
  background: #e2e8f0 !important;
  color: #334155 !important;
  text-decoration: none !important;
}

#product .info h2 a img {
  max-height: 24px !important;
  width: auto !important;
}

/* Product Title */
#product .info h1 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.3px !important;
}

/* Product Code */
#product .info h4 {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  margin: 0 0 24px 0 !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* Prices */
#product .info .prices {
  display: flex !important;
  align-items: baseline !important;
  gap: 14px !important;
  margin: 0 0 8px 0 !important;
  padding: 20px 0 8px 0 !important;
  border-top: none !important;
  border-bottom: none !important;
}

#product .info .prices strong {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #003b95 !important;
  letter-spacing: -1px !important;
}

#product .info .prices strong.only {
  color: #0f172a !important;
}

#product .info .prices span {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

/* Related Colors */
#product .related-colors {
  background: #f8fafc !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 24px !important;
}

#product .related-colors strong {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin-bottom: 16px !important;
}

#product .related-colors .related-color {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 4px !important;
  transition: all 0.25s ease !important;
  overflow: hidden !important;
}

#product .related-colors .related-color img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 4px !important;
}

#product .related-colors .related-color:hover {
  border-color: #003b95 !important;
  box-shadow: 0 4px 12px rgba(0, 59, 149, 0.15) !important;
}

/* Quantity & Cart Section */
#product .info .crt {
  background: #f8fafc !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin: 0 0 24px 0 !important;
}

#product .info .crt .qty {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 20px 0 !important;
}

#product .info .crt .qty strong {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin: 0 8px 0 0 !important;
}

#product .info .crt #minus,
#product .info .crt #plus {
  width: 40px !important;
  height: 40px !important;
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.2s ease !important;
}

#product .info .crt #minus:hover,
#product .info .crt #plus:hover {
  border-color: #003b95 !important;
  background: rgba(0, 59, 149, 0.05) !important;
}

#product .info .crt #minus::after,
#product .info .crt #plus::after {
  background: #334155 !important;
  width: 12px !important;
  height: 2px !important;
}

#product .info .crt #plus::before {
  background: #334155 !important;
  width: 12px !important;
  height: 2px !important;
}

#product .info .crt .qty input {
  width: 60px !important;
  height: 40px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  background: #ffffff !important;
}

#product .info .crt .qty input:focus {
  outline: none !important;
  border-color: #003b95 !important;
}

/* Add to Cart & Wishlist Buttons */
#product .info .prod_agora {
  display: flex !important;
  gap: 12px !important;
}

#product .info .adtcrt {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 28px !important;
  background: linear-gradient(135deg, #003b95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(0, 59, 149, 0.3) !important;
  margin: 0 !important;
}

#product .info .adtcrt:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(0, 59, 149, 0.4) !important;
  background: linear-gradient(135deg, #002d73 0%, #005ad4 100%) !important;
}

#product .info .adtcrt img {
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  filter: brightness(0) invert(1) !important;
}

#product .info .adtcrt svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  stroke: #ffffff !important;
}

#product .info button.wishlist {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  padding: 0 !important;
}

#product .info button.wishlist:hover {
  border-color: #ec4899 !important;
  background: #fdf2f8 !important;
}

#product .info button.wishlist img {
  width: 24px !important;
  height: 24px !important;
  transition: transform 0.25s ease !important;
}

#product .info button.wishlist svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #64748b !important;
  transition: all 0.25s ease !important;
}

#product .info button.wishlist:hover img {
  transform: scale(1.15) !important;
}

#product .info button.wishlist:hover svg {
  transform: scale(1.15) !important;
  stroke: #ec4899 !important;
}

/* Transfer Badge */
#product .transfer-badge {
  margin: 0 0 20px 0 !important;
}

#product .transfer-badge img {
  max-width: 100% !important;
  border-radius: 12px !important;
}

/* Availability */
#product .info .avail {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 20px !important;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important;
  border-radius: 12px !important;
  margin: 0 0 24px 0 !important;
  border: none !important;
}

#product .info .avail strong {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #065f46 !important;
}

#product .info .avail span {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #059669 !important;
  margin: 0 !important;
}

/* Extra Links */
#product .extras {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

#product .extras a {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 18px 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  border-top: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  transition: all 0.25s ease !important;
  position: relative !important;
}

#product .extras a:last-child {
  border-bottom: none !important;
}

#product .extras a:hover {
  background: #f8fafc !important;
  color: #003b95 !important;
  text-decoration: none !important;
}

#product .extras a img {
  width: 22px !important;
  height: 22px !important;
  opacity: 0.7 !important;
  margin: 0 !important;
}

#product .extras a::after {
  content: '' !important;
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(45deg) !important;
  width: 8px !important;
  height: 8px !important;
  border-top: 2px solid #94a3b8 !important;
  border-right: 2px solid #94a3b8 !important;
  background: transparent !important;
  transition: all 0.25s ease !important;
}

#product .extras a:hover::after {
  border-color: #003b95 !important;
  right: 16px !important;
}

/* ===== EXTRA INFO / DESCRIPTION ===== */
#extra_info {
  max-width: 1400px !important;
  margin: 0 auto 60px auto !important;
  padding: 0 20px !important;
  border: none !important;
}

#extra_info .row {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 40px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

#extra_info h4 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 20px 0 !important;
  padding-bottom: 16px !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

#extra_info p {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 0 16px 0 !important;
}

#extra_info ul {
  padding-left: 20px !important;
}

#extra_info li {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 0 8px 0 !important;
  list-style: disc !important;
}

/* ===== RELATED PRODUCTS ===== */
#extra_prod {
  max-width: 1400px !important;
  margin: 0 auto 80px auto !important;
  padding: 0 20px !important;
}

#extra_prod .row {
  max-width: 100% !important;
}

#extra_prod .ttl {
  margin: 0 0 40px 0 !important;
}

#extra_prod .ttl::before {
  display: none !important;
}

#extra_prod .ttl h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#extra_prod .ttl h2 img {
  width: 32px !important;
  height: 32px !important;
}

#extra_prod .prds {
  padding: 0 40px !important;
}

#extra_prod .prds .prev,
#extra_prod .prds .next {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 50% !important;
  padding: 14px !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

#extra_prod .prds .prev:hover,
#extra_prod .prds .next:hover {
  border-color: #003b95 !important;
  background: #003b95 !important;
  filter: brightness(0) invert(1) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  #product .imgs {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  #product .info {
    flex: 1 !important;
    max-width: none !important;
  }
}

@media (max-width: 900px) {
  #product > .row {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  #product .imgs {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    position: relative !important;
    top: 0 !important;
    flex-direction: column !important;
  }
  
  #product .imgs .main {
    width: 100% !important;
    max-height: 400px !important;
    order: 1 !important;
  }
  
  #product .imgs .thmb {
    flex-direction: row !important;
    min-width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 8px !important;
    padding-right: 0 !important;
    order: 2 !important;
    margin-top: 12px !important;
    gap: 10px !important;
  }
  
  #product .imgs .thmb a {
    min-width: 70px !important;
    max-width: 70px !important;
    flex-shrink: 0 !important;
  }
  
  #product .info {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  #product {
    padding: 0 16px !important;
    margin-bottom: 40px !important;
  }
  
  #product .imgs {
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  #product .imgs .main {
    border-radius: 16px !important;
    max-height: 320px !important;
    width: 100% !important;
    aspect-ratio: 1/1 !important;
  }
  
  #product .imgs .main .offer {
    left: 12px !important;
    top: 12px !important;
    padding: 8px 12px !important;
  }
  
  #product .imgs .main .offer span {
    font-size: 12px !important;
  }
  
  #product .imgs .thmb {
    width: 100% !important;
    min-width: 100% !important;
    justify-content: flex-start !important;
  }
  
  #product .imgs .thmb a {
    min-width: 60px !important;
    max-width: 60px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
  }
  
  #product .info h1 {
    font-size: 22px !important;
  }
  
  #product .info .prices strong {
    font-size: 28px !important;
  }
  
  #product .info .prices span {
    font-size: 16px !important;
  }
  
  #product .info .crt {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }
  
  #product .info .adtcrt {
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }
  
  #product .info button.wishlist {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 10px !important;
  }
  
  #product .info .avail {
    padding: 14px 16px !important;
    border-radius: 10px !important;
  }
  
  #product .extras {
    border-radius: 14px !important;
  }
  
  #product .extras a {
    padding: 16px !important;
    font-size: 13px !important;
  }
  
  #extra_info {
    padding: 0 16px !important;
    margin-bottom: 40px !important;
  }
  
  #extra_info .row {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
  
  #extra_info h4 {
    font-size: 18px !important;
  }
  
  #extra_info p,
  #extra_info li {
    font-size: 14px !important;
  }
  
  #extra_prod {
    padding: 0 16px !important;
    margin-bottom: 50px !important;
  }
  
  #extra_prod .ttl h2 {
    font-size: 22px !important;
  }
  
  #extra_prod .prds {
    padding: 0 25px !important;
  }
  
  #extra_prod .prds .prev,
  #extra_prod .prds .next {
    width: 36px !important;
    height: 36px !important;
    padding: 10px !important;
  }
}

@media (max-width: 400px) {
  #product .info .prod_agora {
    flex-direction: column !important;
  }
  
  #product .info .adtcrt {
    width: 100% !important;
  }
  
  #product .info button.wishlist {
    width: 100% !important;
    max-width: none !important;
  }
  
  #product .related-colors .related-color {
    flex: 0 0 calc(33.33% - 8px) !important;
  }
}

/* =====================================================
   PRODUCT PAGE - Additional Elements Styling
   ===================================================== */

/* Brand Badge */
#product .brand-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  margin-bottom: 16px !important;
}

#product .brand-badge:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%) !important;
  color: #334155 !important;
  text-decoration: none !important;
}

/* Product Meta (SKU & Availability) */
#product .product-meta {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

#product .product-sku {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #94a3b8 !important;
}

#product .product-availability {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #059669 !important;
}

#product .product-availability svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #059669 !important;
}

/* Save Badge */
#product .save-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 12px !important;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #dc2626 !important;
  margin-left: 10px !important;
}

/* Shipping Benefits Banner */
#product .shipping-benefits {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
}

#product .shipping-benefits .benefit-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #334155 !important;
}

#product .shipping-benefits .benefit-item svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #003b95 !important;
  flex-shrink: 0 !important;
}

/* Zoom Hint */
#product .zoom-hint {
  position: absolute !important;
  bottom: 16px !important;
  right: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  padding: 10px 14px !important;
  border-radius: 25px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  opacity: 0 !important;
  transform: translateY(10px) !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
}

#product .imgs .main:hover .zoom-hint {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#product .zoom-hint svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #003b95 !important;
}

#product .zoom-hint span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #334155 !important;
}

/* Estimated Delivery Live Indicator */
#product .estimated-delivery-live {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
  border: 1px solid #bfdbfe !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
}

#product .delivery-content {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

#product .delivery-truck {
  width: 24px !important;
  height: 24px !important;
  stroke: #003b95 !important;
  animation: truckMove 2s ease-in-out infinite !important;
}

@keyframes truckMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

#product .delivery-label {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1e40af !important;
}

#product .delivery-date {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1e3a8a !important;
}

#product .live-dot {
  width: 10px !important;
  height: 10px !important;
  background: #22c55e !important;
  border-radius: 50% !important;
  animation: pulse 1.5s ease-in-out infinite !important;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Colors Grid */
#product .colors-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 12px !important;
}

/* Share Section */
#product .share-section {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding-top: 20px !important;
  border-top: 1px solid #e2e8f0 !important;
  margin-top: 20px !important;
}

#product .share-section > span {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #64748b !important;
}

#product .share-buttons {
  display: flex !important;
  gap: 10px !important;
}

#product .share-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

#product .share-btn svg {
  width: 18px !important;
  height: 18px !important;
}

#product .share-facebook:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
}

#product .share-facebook:hover svg {
  fill: #ffffff !important;
}

#product .share-twitter:hover {
  background: #1da1f2 !important;
  border-color: #1da1f2 !important;
}

#product .share-twitter:hover svg {
  fill: #ffffff !important;
}

#product .share-email:hover {
  background: #ea4335 !important;
  border-color: #ea4335 !important;
}

#product .share-email:hover svg {
  stroke: #ffffff !important;
}

#product .share-copy:hover {
  background: #6366f1 !important;
  border-color: #6366f1 !important;
}

#product .share-copy:hover svg {
  stroke: #ffffff !important;
}

#product .share-copy.copied {
  background: #22c55e !important;
  border-color: #22c55e !important;
}

#product .share-copy.copied svg {
  stroke: #ffffff !important;
}

/* Upsell Section - Light Premium Redesign */
#product .upsell-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

#product .upsell-section::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  right: -50% !important;
  width: 100% !important;
  height: 100% !important;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

#product .upsell-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
  position: relative !important;
  z-index: 1 !important;
}

#product .upsell-icon {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

#product .upsell-icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #ffffff !important;
}

#product .upsell-emoji {
  font-size: 26px !important;
  line-height: 1 !important;
}

#product .upsell-title span {
  display: block !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  letter-spacing: -0.3px !important;
}

#product .upsell-title small {
  font-size: 13px !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

#product .upsell-title small::before {
  content: '⭐' !important;
  font-size: 11px !important;
}

#product .upsell-products {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
  position: relative !important;
  z-index: 1 !important;
}

#product .upsell-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 14px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

#product .upsell-item:hover {
  background: #f8fafc !important;
  border-color: #3b82f6 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1) !important;
}

#product .upsell-checkbox {
  position: relative !important;
}

#product .upsell-checkbox input[type="checkbox"] {
  display: none !important;
}

#product .upsell-checkbox label {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #cbd5e1 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  background: #ffffff !important;
}

#product .upsell-checkbox label:hover {
  border-color: #3b82f6 !important;
}

#product .upsell-checkbox input[type="checkbox"]:checked + label {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border-color: #22c55e !important;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.4) !important;
}

#product .upsell-checkbox input[type="checkbox"]:checked + label::after {
  content: '' !important;
  position: absolute !important;
  left: 7px !important;
  top: 3px !important;
  width: 6px !important;
  height: 11px !important;
  border: solid #ffffff !important;
  border-width: 0 2.5px 2.5px 0 !important;
  transform: rotate(45deg) !important;
}

#product .upsell-image {
  width: 65px !important;
  height: 65px !important;
  flex-shrink: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

#product .upsell-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

#product .upsell-info {
  flex: 1 !important;
  min-width: 0 !important;
}

#product .upsell-name {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  margin-bottom: 5px !important;
  line-height: 1.3 !important;
  transition: color 0.2s ease !important;
}

#product .upsell-name:hover {
  color: #3b82f6 !important;
}

#product .upsell-benefit {
  font-size: 11px !important;
  color: #64748b !important;
  margin: 2px 0 6px 0 !important;
  line-height: 1.3 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

#product .upsell-price .old {
  font-size: 12px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
  margin-right: 8px !important;
}

#product .upsell-price .current {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #16a34a !important;
}

/* Bundle Deal Styling */
#product .upsell-price-wrapper {
  margin-top: 4px !important;
}

#product .upsell-bundle-deal {
  margin-bottom: 4px !important;
}

#product .bundle-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: #000000 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4) !important;
  animation: bundle-pulse 2s ease-in-out infinite !important;
}

@keyframes bundle-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 2px 15px rgba(251, 191, 36, 0.7); }
}

#product .upsell-price.bundle-active .old {
  font-size: 13px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
  margin-right: 8px !important;
}

#product .upsell-price.bundle-active .current {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #16a34a !important;
}

#product .upsell-bundle-note {
  font-size: 12px !important;
  color: #b45309 !important;
  margin-top: 6px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #fef3c7 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  border-left: 3px solid #f59e0b !important;
}

#product .upsell-complement {
  font-size: 12px !important;
  color: #16a34a !important;
  margin-bottom: 6px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Bundle Warning Message */
#product .upsell-warning {
  background: #fef3c7 !important;
  border: 1px solid #f59e0b !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  margin-bottom: 16px !important;
  position: relative !important;
  z-index: 1 !important;
}

#product .upsell-warning span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #b45309 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

#product .upsell-total {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e2e8f0 !important;
  position: relative !important;
  z-index: 1 !important;
}

#product .total-info {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

#product .total-label {
  font-size: 14px !important;
  color: #64748b !important;
  font-weight: 500 !important;
}

#product .total-price {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #16a34a !important;
}

#product .total-suffix {
  font-size: 13px !important;
  color: #b45309 !important;
  font-weight: 600 !important;
}

#product .upsell-add-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

#product .upsell-add-all:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%) !important;
}

#product .upsell-add-all svg {
  width: 18px !important;
  height: 18px !important;
}

/* Upsell Color Selection */
#product .upsell-colors {
  display: flex !important;
  gap: 8px !important;
  margin: 8px 0 !important;
}

#product .upsell-color-btn {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 2px solid #e2e8f0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

#product .upsell-color-btn:hover {
  transform: scale(1.15) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

#product .upsell-color-btn.active {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

#product .upsell-color-btn.active::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 12px !important;
  font-weight: bold !important;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

#product .upsell-item.has-colors .upsell-info {
  flex: 1 !important;
}

/* Product Tabs */
#extra_info .product-tabs {
  width: 100% !important;
}

#extra_info .tab-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

#extra_info .tab-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

#extra_info .tab-btn svg {
  width: 18px !important;
  height: 18px !important;
}

#extra_info .tab-btn:hover {
  background: #f1f5f9 !important;
  color: #334155 !important;
}

#extra_info .tab-btn.active {
  background: linear-gradient(135deg, #003b95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
}

#extra_info .tab-btn.active svg {
  stroke: #ffffff !important;
}

#extra_info .tab-content {
  min-height: 200px !important;
}

#extra_info .tab-pane {
  display: none !important;
}

#extra_info .tab-pane.active {
  display: block !important;
}

#extra_info .description-content {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #475569 !important;
}

#extra_info .description-content p {
  margin-bottom: 16px !important;
}

#extra_info .description-content ul {
  padding-left: 20px !important;
  margin-bottom: 16px !important;
}

#extra_info .description-content li {
  margin-bottom: 8px !important;
  list-style: disc !important;
}

/* Shipping & Returns Info */
#extra_info .shipping-info,
#extra_info .returns-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

#extra_info .info-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 20px !important;
  background: #f8fafc !important;
  border-radius: 14px !important;
}

#extra_info .info-item svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #003b95 !important;
  flex-shrink: 0 !important;
}

#extra_info .info-item strong {
  display: block !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
}

#extra_info .info-item p {
  font-size: 14px !important;
  color: #64748b !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Airlines Grid */
#extra_info .airlines-intro {
  font-size: 15px !important;
  color: #64748b !important;
  margin-bottom: 24px !important;
}

#extra_info .airlines-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
}

#extra_info .airline-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
}

#extra_info .airline-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px) !important;
}

#extra_info .airline-header {
  padding: 14px 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

#extra_info .airline-header.ryanair { background: linear-gradient(135deg, #003087 0%, #0033a0 100%) !important; }
#extra_info .airline-header.aegean { background: linear-gradient(135deg, #00205b 0%, #003087 100%) !important; }
#extra_info .airline-header.skyexpress { background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%) !important; }
#extra_info .airline-header.wizzair { background: linear-gradient(135deg, #c6007e 0%, #e6007e 100%) !important; }
#extra_info .airline-header.easyjet { background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%) !important; }
#extra_info .airline-header.volotea { background: linear-gradient(135deg, #8cc63f 0%, #a8d44a 100%) !important; }
#extra_info .airline-header.transavia { background: linear-gradient(135deg, #00a651 0%, #00c853 100%) !important; }
#extra_info .airline-header.lufthansa { background: linear-gradient(135deg, #05164d 0%, #0a2a6e 100%) !important; }

#extra_info .airline-name {
  font-size: 15px !important;
}

#extra_info .airline-body {
  padding: 16px 18px !important;
}

#extra_info .luggage-type {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 0 !important;
  border-bottom: 1px dashed #e2e8f0 !important;
}

#extra_info .luggage-type:last-child {
  border-bottom: none !important;
}

#extra_info .type-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  flex: 1 1 100% !important;
}

#extra_info .dimensions {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #003b95 !important;
  background: #eff6ff !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

#extra_info .weight {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #059669 !important;
  background: #ecfdf5 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

#extra_info .airlines-note {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  background: #fef3c7 !important;
  border-radius: 12px !important;
}

#extra_info .airlines-note svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #b45309 !important;
  flex-shrink: 0 !important;
}

#extra_info .airlines-note p {
  font-size: 14px !important;
  color: #92400e !important;
  margin: 0 !important;
}

/* Product Suggestions Section */
#product-suggestions {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
  padding: 60px 0 !important;
  margin-bottom: 60px !important;
}

#product-suggestions .suggestions-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

#product-suggestions .suggestions-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 32px !important;
}

#product-suggestions .header-content {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

#product-suggestions .header-icon {
  width: 56px !important;
  height: 56px !important;
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%) !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#product-suggestions .header-icon svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #dc2626 !important;
  fill: #dc2626 !important;
}

#product-suggestions .header-text h2 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 4px 0 !important;
}

#product-suggestions .header-text p {
  font-size: 14px !important;
  color: #64748b !important;
  margin: 0 !important;
}

#product-suggestions .header-nav {
  display: flex !important;
  gap: 10px !important;
}

#product-suggestions .nav-btn {
  width: 48px !important;
  height: 48px !important;
  border: 2px solid #e2e8f0 !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

#product-suggestions .nav-btn svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #334155 !important;
}

#product-suggestions .nav-btn:hover {
  background: #003b95 !important;
  border-color: #003b95 !important;
}

#product-suggestions .nav-btn:hover svg {
  stroke: #ffffff !important;
}

#product-suggestions .suggestions-slider {
  overflow: hidden !important;
  margin-bottom: 32px !important;
}

#product-suggestions .swiper-slide {
  height: auto !important;
}

#product-suggestions .suggestions-footer {
  text-align: center !important;
}

#product-suggestions .view-all-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  background: transparent !important;
  border: 2px solid #003b95 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #003b95 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

#product-suggestions .view-all-btn svg {
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.25s ease !important;
}

#product-suggestions .view-all-btn:hover {
  background: #003b95 !important;
  color: #ffffff !important;
}

#product-suggestions .view-all-btn:hover svg {
  stroke: #ffffff !important;
  transform: translateX(4px) !important;
}

/* Mobile Sticky Cart */
#mobile-sticky-cart {
  display: none !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 12px 16px !important;
  z-index: 999 !important;
  transform: translateY(100%) !important;
  transition: transform 0.3s ease !important;
}

#mobile-sticky-cart.visible {
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  #mobile-sticky-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }
}

#mobile-sticky-cart .sticky-price {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
}

#mobile-sticky-cart .old-price {
  font-size: 12px !important;
  color: #94a3b8 !important;
  text-decoration: line-through !important;
}

#mobile-sticky-cart .current-price {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #003b95 !important;
}

#mobile-sticky-cart .sticky-savings {
  display: inline-flex !important;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  padding: 3px 6px !important;
  border-radius: 8px !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

#mobile-sticky-cart .sticky-add-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 1 !important;
  max-width: 200px !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, #003b95 0%, #006CE4 100%) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(0, 59, 149, 0.3) !important;
}

#mobile-sticky-cart .sticky-add-btn svg {
  width: 20px !important;
  height: 20px !important;
}

/* Push chat widgets up when mobile sticky cart is visible */
@media (max-width: 768px) {
  #mobile-sticky-cart.visible ~ iframe[title*="chat"],
  #mobile-sticky-cart.visible ~ div[class*="tawk"],
  body:has(#mobile-sticky-cart.visible) iframe[title*="chat"],
  body:has(#mobile-sticky-cart.visible) div[class*="tawk"],
  body:has(#mobile-sticky-cart.visible) #tawk-bubble-container,
  body:has(#mobile-sticky-cart.visible) .tawk-min-container,
  body:has(#mobile-sticky-cart.visible) [id^="tawk"] {
    bottom: 75px !important;
    transition: bottom 0.3s ease !important;
  }
}

/* Cart Added Popup */
#cart-popup-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(4px) !important;
  z-index: 9998 !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

#cart-popup-overlay.active {
  opacity: 1 !important;
}

#cart-added-popup {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.9) !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 40px 48px !important;
  text-align: center !important;
  z-index: 9999 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2) !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  max-width: 400px !important;
  width: 90% !important;
}

#cart-added-popup.active {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

#cart-added-popup .cart-popup-icon {
  width: 72px !important;
  height: 72px !important;
  margin: 0 auto 20px auto !important;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: popIn 0.4s ease !important;
}

@keyframes popIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

#cart-added-popup .cart-popup-icon svg {
  width: 36px !important;
  height: 36px !important;
  stroke: #ffffff !important;
}

#cart-added-popup h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
}

#cart-added-popup p {
  font-size: 15px !important;
  color: #64748b !important;
  margin: 0 0 28px 0 !important;
}

#cart-added-popup .cart-popup-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

#cart-added-popup .cart-popup-continue {
  padding: 14px 28px !important;
  background: transparent !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

#cart-added-popup .cart-popup-continue:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}

#cart-added-popup .cart-popup-goto {
  display: block !important;
  padding: 14px 28px !important;
  background: linear-gradient(135deg, #003b95 0%, #006CE4 100%) !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

#cart-added-popup .cart-popup-goto:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 59, 149, 0.35) !important;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  #product .shipping-benefits {
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }
  
  #product .shipping-benefits .benefit-item {
    font-size: 13px !important;
  }
  
  #product .shipping-benefits .benefit-item svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  #product .estimated-delivery-live {
    padding: 14px 16px !important;
    border-radius: 12px !important;
  }
  
  #product .delivery-content {
    gap: 8px !important;
  }
  
  #product .delivery-truck {
    width: 20px !important;
    height: 20px !important;
  }
  
  #product .upsell-section {
    padding: 16px !important;
    border-radius: 14px !important;
  }
  
  #product .upsell-total {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  #product .total-info {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
  }
  
  #product .share-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  
  #extra_info .tab-buttons {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  #extra_info .tab-btn {
    flex-shrink: 0 !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
  
  #extra_info .airlines-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  #product-suggestions {
    padding: 40px 0 !important;
  }
  
  #product-suggestions .suggestions-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  #product-suggestions .header-text h2 {
    font-size: 22px !important;
  }
  
  #product-suggestions .nav-btn {
    width: 42px !important;
    height: 42px !important;
  }
  
  #cart-added-popup {
    padding: 32px 24px !important;
    border-radius: 20px !important;
  }
  
  #cart-added-popup h3 {
    font-size: 20px !important;
  }
}

/* Cart Page Layout - Right Column */
#cart-page .cart-right-column {
  width: 380px !important;
  flex: 0 0 380px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  align-self: flex-start !important;
  position: sticky !important;
  top: 20px !important;
  height: fit-content !important;
}

#cart-page .cart-right-column .cart-totals-container {
  width: 100% !important;
  position: relative !important;
  top: 0 !important;
  order: unset !important;
}

#cart-page .cart-right-column .cart-modules {
  width: 100% !important;
  flex: unset !important;
  order: unset !important;
  margin-left: 0 !important;
}

/* Fix coupon form in narrow right column */
#cart-page .cart-right-column .coupon-module {
  padding: 20px !important;
}

#cart-page .cart-right-column .coupon-module .coupon-form {
  flex-direction: column !important;
  gap: 10px !important;
}

#cart-page .cart-right-column .coupon-module .coupon-form input[type=text] {
  width: 100% !important;
  max-width: 100% !important;
}

#cart-page .cart-right-column .coupon-module .coupon-form input[type=button] {
  width: 100% !important;
  min-width: unset !important;
}

/* Cart Page Upsell Section */
#cart-page .cart-upsell-section {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 2px solid #fbbf24;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 20px;
}

.cart-upsell-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.cart-upsell-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-upsell-icon {
  font-size: 32px;
  line-height: 1;
  animation: pulse-warning 1.5s ease-in-out infinite;
}

@keyframes pulse-warning {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cart-upsell-title span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #92400e;
  letter-spacing: -0.3px;
}

.cart-upsell-title small {
  font-size: 14px;
  color: #b45309;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-upsell-title small::before {
  content: '';
}

.cart-upsell-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #fcd34d;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.15);
}

.cart-upsell-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.25);
  border-color: #f59e0b;
}

.cart-upsell-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fefce8;
}

.cart-upsell-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-upsell-info {
  flex: 1;
  min-width: 0;
}

.cart-upsell-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.cart-upsell-name:hover {
  color: #f59e0b;
}

.cart-upsell-benefit {
  font-size: 11px;
  color: #92400e;
  margin: 2px 0 6px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-upsell-price .old {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-right: 8px;
}

.cart-upsell-price .current {
  font-size: 16px;
  font-weight: 700;
  color: #059669;
}

/* Cart Bundle Deal Styling */
.cart-bundle-deal {
  margin: 6px 0 4px 0;
}

.cart-bundle-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  animation: cart-bundle-pulse 2s ease-in-out infinite;
}

@keyframes cart-bundle-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 2px 15px rgba(220, 38, 38, 0.6); }
}

.cart-upsell-price.bundle-active .old {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-right: 8px;
}

.cart-upsell-price.bundle-active .current {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
}

.cart-bundle-note {
  font-size: 11px;
  color: #92400e;
  margin-top: 4px;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  border-left: 3px solid #f59e0b;
}

.cart-complement {
  font-size: 12px;
  color: #059669;
  margin-bottom: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-upsell-add {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cart-upsell-add:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.cart-upsell-add svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.cart-upsell-add svg.spin {
  animation: spin 1s linear infinite;
}

/* Cart Upsell Color Selection */
.cart-upsell-colors {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}

.cart-color-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-color-btn:hover {
  transform: scale(1.15);
  border-color: #f59e0b;
}

.cart-color-btn.active {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cart-color-btn.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cart-upsell-item.has-colors .cart-upsell-info {
  flex: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
  .cart-upsell-section {
    width: 100%;
  }
  
  #cart-page .cart-right-column {
    width: 100% !important;
    flex: 0 0 100% !important;
    position: relative !important;
    top: 0 !important;
    order: 3 !important;
  }
  
  #cart-page .cart-right-column .cart-totals-container,
  #cart-page .cart-right-column .cart-modules {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .cart-upsell-section {
    padding: 20px;
    border-radius: 16px;
  }
  
  .cart-upsell-title span {
    font-size: 17px;
  }
  
  .cart-upsell-products {
    grid-template-columns: 1fr;
  }
  
  .cart-upsell-item {
    padding: 14px;
  }
  
  .cart-upsell-image {
    width: 60px;
    height: 60px;
  }
}

/* Header Top Bar - Divider & Installments */
#hdtp .box1 .header-divider {
  margin: 0 12px;
  color: #ccc;
  font-weight: 300;
}

@media (max-width: 1000px) {
  #hdtp .box1 .header-divider {
    display: none;
  }
}

/* Installment Calculator - Enterprise Style */
.installment-calculator {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.installment-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.installment-icon {
  width: 24px;
  height: 24px;
  stroke: #003b95;
  flex-shrink: 0;
}

.installment-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.installment-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #003b95;
  box-shadow: 0 2px 8px rgba(0, 59, 149, 0.1);
}

.installment-prefix {
  font-size: 14px;
  font-weight: 600;
  color: #003b95;
}

.installment-value {
  font-size: 20px;
  font-weight: 800;
  color: #003b95;
  letter-spacing: -0.5px;
}

.installment-suffix {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.installment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.installment-methods .klarna-logo {
  height: 24px;
  width: auto;
}

@media (max-width: 600px) {
  .installment-calculator {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }
  
  .installment-methods {
    margin-left: 0;
  }
  
  .installment-amount {
    padding: 6px 12px;
  }
  
  .installment-value {
    font-size: 18px;
  }
}

/* Search Page - Force 4 products per row (override style.css and category.css) */
#search-pg .search_page .allproducts,
.search_page .allproducts,
div.search_page .allproducts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-right: 0 !important;
  justify-content: flex-start !important;
}

#search-pg .search_page .allproducts .glbprdr,
div.search_page .allproducts .glbprdr,
.search_page .allproducts .glbprdr,
#search-list .allproducts .glbprdr,
#search_products .allproducts .glbprdr {
  flex: 0 0 calc(25% - 8px) !important;
  flex-basis: calc(25% - 8px) !important;
  width: calc(25% - 8px) !important;
  max-width: calc(25% - 8px) !important;
  box-sizing: border-box !important;
  margin-right: 0 !important;
  margin-bottom: 15px !important;
}

@media only screen and (max-width: 1000px) {
  #search-pg .search_page .allproducts .glbprdr,
  div.search_page .allproducts .glbprdr,
  .search_page .allproducts .glbprdr,
  #search-list .allproducts .glbprdr,
  #search_products .allproducts .glbprdr {
    flex: 0 0 calc(25% - 10px) !important;
    flex-basis: calc(25% - 10px) !important;
    width: calc(25% - 10px) !important;
    max-width: calc(25% - 10px) !important;
  }
}

@media only screen and (max-width: 900px) {
  #search-pg .search_page .allproducts .glbprdr,
  div.search_page .allproducts .glbprdr,
  .search_page .allproducts .glbprdr,
  #search-list .allproducts .glbprdr,
  #search_products .allproducts .glbprdr {
    flex: 0 0 calc(33.333% - 10px) !important;
    flex-basis: calc(33.333% - 10px) !important;
    width: calc(33.333% - 10px) !important;
    max-width: calc(33.333% - 10px) !important;
  }
}

@media only screen and (max-width: 600px) {
  #search-pg .search_page .allproducts .glbprdr,
  div.search_page .allproducts .glbprdr,
  .search_page .allproducts .glbprdr,
  #search-list .allproducts .glbprdr,
  #search_products .allproducts .glbprdr {
    flex: 0 0 calc(50% - 10px) !important;
    flex-basis: calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
}

/* ============================================
   PAGINATION - Modern Enterprise Style
   ============================================ */

#pagination {
  margin: 50px auto !important;
  width: 100% !important;
  padding: 30px 0 !important;
  box-sizing: border-box !important;
  border-top: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#pagination .pagination {
  list-style-type: none !important;
  display: flex !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center !important;
  gap: 6px !important;
  background: #f1f5f9 !important;
  padding: 8px !important;
  border-radius: 12px !important;
}

#pagination .pagination li {
  margin: 0 !important;
}

#pagination .pagination li a,
#pagination .pagination li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 14px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: #64748b !important;
  background: transparent !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: none !important;
}

#pagination .pagination li a:hover {
  background: #e2e8f0 !important;
  color: #1e293b !important;
}

#pagination .pagination li.active,
#pagination .pagination .active {
  background: transparent !important;
}

#pagination .pagination li.active a,
#pagination .pagination li.active span,
#pagination .pagination .active a,
#pagination .pagination .active span {
  background: linear-gradient(135deg, #003B95 0%, #0052cc 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 59, 149, 0.3) !important;
}

/* Prev/Next buttons */
#pagination .pagination li:first-child a,
#pagination .pagination li:last-child a {
  font-size: 18px !important;
  font-weight: 400 !important;
}

#pagination .pagination li:first-child a:hover,
#pagination .pagination li:last-child a:hover {
  background: #003B95 !important;
  color: #fff !important;
}

/* Ellipsis styling */
#pagination .pagination li span:not(.active):not([class]) {
  color: #94a3b8 !important;
  cursor: default !important;
  background: transparent !important;
}

/* Mobile responsive */
@media only screen and (max-width: 600px) {
  #pagination .pagination {
    gap: 4px !important;
    padding: 6px !important;
    border-radius: 10px !important;
  }
  
  #pagination .pagination li a,
  #pagination .pagination li span {
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
  }
}

/* Top Bar Font Size Override */
#hdtp .box1 strong {
  font-size: 12.5px !important;
  line-height: 15.5px !important;
}

#hdtp .box1 span {
  font-size: 12.5px !important;
  line-height: 15.5px !important;
}

/* Make user icon same visual size as other icons */
#hdmd .cnmn a.user img {
  max-width: 18.63px !important;
  width: 18.63px !important;
  height: 18.74px !important;
}

/* Mobile cart - always show hover state */
@media (max-width: 1000px) {
  #hdcrt {
    border: 0.5px solid #000 !important;
  }
}
