.topbar{
  background-color:var(--bs-primary)!important;
  overflow: hidden;
  height: auto;
}

.topbar-slider {
  display: flex;
  width: 400%;
 animation: slide 20s infinite;
}

.topbar-slide {
  width: 25%;
  float: left;
}

@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-25%); }
  45% { transform: translateX(-25%); }
  50% { transform: translateX(-50%); }
  70% { transform: translateX(-50%); }
  75% { transform: translateX(-75%); }
  95% { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}
.mobile-logo{
  height:40px;
  width: 180px;
}

/* Banner overlay styles */
.banner-01 .card-img-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  border-radius: 0;
  margin: 0 !important;
  padding: 12px !important;
}

/* Banner 02 overlay styles */
.banner-02-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%) !important;
    margin: 0 !important;
  padding: 12px !important;
}

/* Custom class to reduce travel bag image height on mobile */
@media (max-width: 767px) {
  .travel-bag-image {
    height: 300px !important;
    object-fit: cover !important;
  }
  
  /* Hide desktop hero on mobile */
  .desktop-hero {
    display: none !important;
  }
  
  /* Mobile hero styles */
  .mobile-hero {
    display: block !important;
    height: 70vh !important;
  }
}

/* Hide mobile hero on desktop */
@media (min-width: 768px) {
  .mobile-hero {
    display: none !important;
  }
}

.banner-02-overlay .card-title {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.banner-02-overlay .card-text {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.banner-02-btn {
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Button hover effect */
.banner-01 .btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;

  background: transparent;
  color: #000;                         /* initial black text */
  border: 2px solid #fff;

  transition: color 0.45s ease;        /* same timing as bg */
}

/* INITIAL background */
.banner-01 .btn-white::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fff;                    /* white fill */
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.45s ease;

  z-index: -1;
}
.card-text{
  color: white!important;
}
/* HOVER → bg slides out */
.banner-01 .btn-white:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}

/* TEXT COLOR CHANGE */
.banner-01 .btn-white:hover {
  color: #fff;                         /* smooth black → white */
}


@media (max-width: 473px) {
  .topbar-slide p{
    font-size: 13px!important;
  }
  
}
.main-titles{
  background: linear-gradient(
    135deg,
    #06437c 0%, 
    #042141 25%,
    #7f94ab 50%,
    #b8c6d6  75%,
    #e6edf3  100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-product-flash,.badge{
  background: linear-gradient(
    to bottom,
    #3f4f6b 0%,
    #85a3d2 40%,
    #496fa9 60%,
    #1d4071 100%
  );
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
}
.btn-add-to-cart{
  background: var(--btn-blue-grey-glossy);
  color: #fff;
  border: none;
  border-radius: 6px;

  transition: background 0.35s ease;
}

.btn-add-to-cart:hover{
  background: var(--btn-blue-grey-glossy-hover);
}
.btn {
  background: var(--btn-blue-grey-glossy);
  color: white;
  border: none;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #bfcbd3;
  color: #000000;
}

.poster-box img{
 height: 400px; 
  object-fit: cover;
}
.card-title a:hover{
  color: #1f437a!important;
  
}
.post-meta li a:hover{
  color: #1d4071!important;}
@media (max-width: 1214px) {
  .poster-box img{
    height: auto; 
  }
}
.product-action:hover{
  background: var(--btn-blue-grey-glossy)!important;
}
.quick-view-modal{
  background-color: var(--btn-blue-grey-glossy)!important;
}

/* Tooltip styling - change background color to blue */
.tooltip {
  --bs-tooltip-bg:rgb(13, 49, 91);
  --bs-tooltip-color: #fff !important;
  opacity: 1 !important;
}

.tooltip-inner {
  background:var(--btn-blue-grey-glossy)!important;
  color: #fff !important;
  opacity: 1 !important;
}

/* Hero section overlay for better text visibility */
.hero-overlay {
  position: relative;
}
.cat-btn {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: white!important;
  border: 2px solid transparent;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
  width: 180px;
height: 40px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

/* white layer */
.cat-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-blue-grey-glossy);
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: -1;

}

/* hover → white slides out */
.cat-btn:hover::before {
  transform: translateX(100%);
}

/* hover text + border */
.cat-btn:hover {
  color: #fff;
  border-color: #fff;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-overlay > .container {
  position: relative;
  z-index: 2;
}
.blg-btn:hover{
  background: var(--btn-blue-grey-glossy)!important;
  border-color: white;

}
.footer-logo{
  width: 170px;
  margin-bottom: 10px;
}
.product-title a:hover{
  color: #496fa9!important;
}
.copy,.cart-btn-side,.login-modal-btn{
  background: var(--btn-blue-grey-glossy);
  border-color: white;
}
.cart-title{
      display: -webkit-box;
  -webkit-line-clamp: 1; /* Show only 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-cart-side:hover{
  background: var(--btn-blue-grey-glossy)!important;
  border-color: white;
}

/* Responsive flex column layout for medium screens */
@media (max-width: 1003px) {
  .responsive-flex-column {
    flex-direction: column !important;
  }

  .responsive-flex-column .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .responsive-flex-column .col-md-6:first-child {
    margin-bottom: 2rem;
  }
}

/* Quantity selector styles */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  overflow: hidden;
  height: 48px; /* Match height with Add to cart button */
  width: 100%;
}

.quantity-btn {
  background-color: #fff;
  border: none;
  padding: 0;
  width: 42px;
  height: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #f8f9fa;
}

.quantity-input {
  border: none;
  width: 50px;
  text-align: center;
  outline: none;
  height: 100%;
}
     /* Mobile layout fixes for quantity selector */
      @media (max-width: 875px) {
        .form-group.col-sm-4, .col-sm-8 {
          width: 100%;
        }

        .quantity-selector {
      display: flex;
      justify-content: space-between;
          margin: 0 auto;
        }

        .pt-9.pt-sm-0 {
          padding-top: 1rem !important;
        }
      }
/* Responsive adjustments for quantity selector */
@media (max-width: 768px) {
  .quantity-selector {
    height: 44px;
  }

  .quantity-btn {
    width: 36px;
  }

  .quantity-input {
    width: 45px;
  }
  .footer{
    padding-bottom: 6rem;
  }
}
.filter-btn{
  background:var(--btn-blue-grey-glossy)!important;
  color: white;
  border: none;
}
.shop-prd-img{
  max-height: 440px;
}

/* Cart Page Styles - Card Layout */
.cart-item-card {
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.cart-item-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Cart Product Image - Default for desktop/laptop */
.cart-product-img {
  border-radius: 8px;
  object-fit: cover;
  width: auto;
  height: auto;
}

/* Desktop/Laptop view - Increase image size */
@media (min-width: 992px) {
  .cart-table .cart-product-img {
    width: 120px !important;
    height: 160px !important;
    min-width: 120px;
  }
}

/* Tablet view - Medium size with proper alignment (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .cart-table .cart-product-img {
    width: 100px !important;
    height: 133px !important;
    min-width: 100px;
  }

  .cart-table td {
    vertical-align: middle !important;
  }

  .cart-table .d-flex.align-items-center {
    align-items: center !important;
    flex-wrap: nowrap;
  }

  .cart-item-card .cart-product-img {
    max-width: 150px;
    width: 100%;
  }

  .cart-item-card .card-body {
    padding: 1rem !important;
  }

  .cart-item-card .row {
    align-items: center;
    text-align: center;
  }

  .cart-item-card .col-12.col-sm-4 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .cart-item-card .col-12.col-sm-8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Mobile cart controls - centered column layout for tablet */
  .mobile-cart-controls {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    gap: 1.5rem !important;
  }

  .mobile-cart-controls .quantity-selector {
    width: 100% !important;
    max-width: 150px !important;
    margin: 0 auto;
  }

  .mobile-cart-controls .text-center {
    width: 100%;
  }
}

/* Mobile and Tablet view - Reduce image size and center layout (from 768px down) */
@media (max-width: 991.98px) {
  .cart-item-card .card-body {
    padding: 1rem !important;
  }

  .cart-item-card .cart-product-img {
    max-width: 100px;
    width: 100%;
    margin-bottom: 1rem;
  }

  .cart-item-card h5 {
    font-size: 1rem;
  }

  .cart-item-card .product-price {
    font-size: 0.9rem;
  }

  .cart-item-card .subtotal {
    font-size: 1.1rem !important;
  }

  .cart-item-card .row {
    align-items: center;
    text-align: center;
  }

  .cart-item-card .col-12.col-sm-4 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .cart-item-card .col-12.col-sm-8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Mobile cart controls - column layout and centered */
  .mobile-cart-controls {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    gap: 1.5rem !important;
  }

  .mobile-cart-controls .quantity-selector {
    width: 100% !important;
    max-width: 150px !important;
    margin: 0 auto;
  }

  .mobile-cart-controls .text-center {
    width: 100%;
  }
}

.cart-item-card .remove-item {
  transition: all 0.2s ease;
  text-decoration: none;
  background: var(--btn-blue-grey-glossy);
  color: white!important;
}

.cart-item-card .remove-item:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  transform: scale(1.1);
}

.clear-cart-btn {
  white-space: nowrap;
}

/* Cart Total Card */
.card.sticky-top {
  position: sticky;
  top: 100px;
}

@media (max-width: 991.98px) {
  .card.sticky-top {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

/* Product detail gallery - main slider arrows and thumbnails */
.product-main-slider .slick-arrow {
  z-index: 2;
}

.product-main-slider .slick-prev,
.product-main-slider .slick-next {
  width: 32px;
  height: 32px;
}

.product-main-slider .slick-prev {
  left: 12px;
}

.product-main-slider .slick-next {
  right: 12px;
}

.product-main-slider .slick-prev:before,
.product-main-slider .slick-next:before {
  font-size: 24px;
  color: #000;
}

/* Extra spacing for main slider dots */
.product-main-slider .slick-dots {
  margin-top: 16px;
}

.product-thumbnail-slider .product-thumb-item img {
  border-radius: 6px;
  object-fit: cover;
}

.product-thumbnail-slider .slick-slide {
  padding: 0 4px;
}

.product-thumbnail-slider .slick-current img {
  border: 2px solid var(--btn-blue-grey-glossy);
}

/* Arrows for bottom (thumbnail) slider */
.product-thumbnail-slider .slick-arrow {
  z-index: 2;
}

.product-thumbnail-slider .slick-prev,
.product-thumbnail-slider .slick-next {
  width: 26px;
  height: 26px;
}

.product-thumbnail-slider .slick-prev {
  left: -10px;  /* a bit more inside/outside so icon is half on slider */
}

.product-thumbnail-slider .slick-next {
  right: -10px; /* a bit more inside/outside so icon is half on slider */
}

.product-thumbnail-slider .slick-prev:before,
.product-thumbnail-slider .slick-next:before {
  font-size: 20px;
  color: #000;
}

@media (max-width: 768px) {
  .product-main-slider .slick-prev {
    left: 6px;
  }
.cart-item-card{
  width: 100%!important;
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
}
.cart-item-card h5 ,.cart-item-card p{
  text-align: center!important;
}
.cart-item-card .product-price{
  text-align: center;
}
  .product-main-slider .slick-next {
    right: 6px;
  }
  .cart-item-card{
    display: flex;
    justify-content: center;
  }
}
.payment-img{
  width: 40%;
  display: flex;
  justify-content: center;
}

/* Wishlist mobile styles */
.wishlist-mobile-container {
  display: none;
  padding: 0 15px;
}

.wishlist-mobile-item {
  border-bottom: 1px solid #e9ecef;
  padding: 15px 0;
}

.wishlist-mobile-item:last-child {
  border-bottom: none;
}

.wishlist-mobile-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.wishlist-mobile-image {
  width: 75px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.wishlist-mobile-details {
  flex: 1;
  padding-left: 15px;
}

.wishlist-mobile-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.wishlist-mobile-price {
  font-weight: bold;
  margin-bottom: 5px;
}

.wishlist-mobile-date {
  color: #6c757d;
  font-size: 0.875rem;
}

.wishlist-mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.wishlist-mobile-stock {
  color: #28a745;
}

.wishlist-mobile-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.wishlist-mobile-buttons .btn {
  flex: 1;
  margin: 0 5px;
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: none;
  }
  
  .wishlist-mobile-container {
    display: block;
  }
  
  .wishlist-mobile-buttons {
    display: flex;
  }
    .check-text{
    font-size: 13px!important;
  }
}

@media (min-width: 768px) {
  .wishlist-mobile-container {
    display: none;
  }
  
  .table-responsive-md {
    display: block;
  }
  
  .wishlist-mobile-buttons {
    display: none;
  }

}
.blog-title:hover{
  color: #1d4071;

}

.btn-fill-hover {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #000;
  border: 2px solid transparent;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
}

/* WHITE layer (initial state) */
.btn-fill-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: -1;
}

/* hover → white slides OUT left → right */
.btn-fill-hover:hover::before {
  transform: translateX(100%);
}

/* hover text + border */
.btn-fill-hover:hover {
  color: #fff;
  border-color: #fff;
}
.banner-subtitle{
  color: white!important;
}


 .premium-ecom-demo-content {
            text-align: center;
            color: white;
            margin-bottom: 50px;
            padding-top: 50px;
        }

        .premium-ecom-demo-content h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .premium-ecom-scroll-content {
            max-width: 600px;
            margin: 50px auto;
            padding: 30px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .premium-ecom-scroll-content h2 {
            color: #1e40af;
            margin-bottom: 20px;
        }

        .premium-ecom-scroll-content p {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Premium Bottom Navigation Bar */
        .premium-ecom-bottom-nav-wrapper {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: none;
            z-index: 1000;
            padding: 0 1px 0px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;

        }

        .premium-ecom-bottom-nav-wrapper.premium-ecom-hidden {
            transform: translateY(150px);
            opacity: 0;
        }

        .premium-ecom-bottom-nav {
            background: white;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
    
            border-radius: 32px 32px 0px 0px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
                        0 2px 8px rgba(0, 0, 0, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            max-width: 100%;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: visible;
        }

        .premium-ecom-nav-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4px;
            position: relative;
            align-items: center;
        }

        /* Animated background indicator */
        .premium-ecom-active-bg {
            position: absolute;
            height: 60px;
            width: calc(25% - 8px);
            background: #1a365d;
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 8px 24px rgba(26, 54, 93, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            z-index: 1;
            left: 4px;
        }

        .premium-ecom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #1a365d;
            transition: all 0.3s ease;
            padding: 14px 8px;
            border-radius: 18px;
            position: relative;
            z-index: 2;
            cursor: pointer;
            user-select: none;
        }

        .premium-ecom-nav-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .premium-ecom-nav-item.premium-ecom-active {
            color: white;
            background-color: #1a365d;
            box-shadow: 0 4px 12px rgba(26, 54, 93, 0.4);
        }

        .premium-ecom-nav-icon-wrapper {
            position: relative;
            margin-bottom: 6px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
         padding: 10px;
            justify-content: center;
            width: 32px;
            height: 32px;
        }

        .premium-ecom-nav-item.premium-ecom-active .premium-ecom-nav-icon-wrapper {
            transform: translateY(-6px) scale(1.15);
        }

        .premium-ecom-nav-icon {
            font-size: 22px;
            transition: all 0.3s ease;
            color: #1a365d;
        }

        .premium-ecom-nav-item.premium-ecom-active .premium-ecom-nav-icon {
            color: white;
        }

        .premium-ecom-nav-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
            color: #1a365d;
            
        }

        .premium-ecom-nav-item.premium-ecom-active .premium-ecom-nav-label {
            opacity: 1;
            font-weight: 700;
            transform: translateY(0);
            color: white;
        }

        /* Floating badge for notifications */
        .premium-ecom-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 3px 6px;
            border-radius: 12px;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(239, 68, 68, 0.5);
            animation: premium-ecom-badge-pop 0.5s ease;
            border: 2px solid white;
        }

        @keyframes premium-ecom-badge-pop {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.3);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Sparkle effect on active */
        .premium-ecom-sparkle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: white;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }

        .premium-ecom-nav-item.premium-ecom-active .premium-ecom-sparkle {
            animation: premium-ecom-sparkle-float 1.8s ease-in-out infinite;
        }

        .premium-ecom-sparkle:nth-child(1) {
            top: 2px;
            left: 8px;
            animation-delay: 0s;
        }

        .premium-ecom-sparkle:nth-child(2) {
            top: 5px;
            right: 10px;
            animation-delay: 0.4s;
        }

        .premium-ecom-sparkle:nth-child(3) {
            bottom: 8px;
            left: 12px;
            animation-delay: 0.8s;
        }

        @keyframes premium-ecom-sparkle-float {
            0%, 100% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-12px) scale(1.2);
            }
        }

        /* Ripple effect */
        .premium-ecom-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.3);
            transform: scale(0);
            animation: premium-ecom-ripple-effect 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes premium-ecom-ripple-effect {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Show only on mobile */
        @media (max-width: 768px) {
            .premium-ecom-bottom-nav-wrapper {
                display: block;
            }
        }

        /* Premium shine effect on navbar */
        .premium-ecom-bottom-nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: premium-ecom-shine 3s infinite;
            border-radius: 32px;
        }

        @keyframes premium-ecom-shine {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        /* Floating Contact Buttons Container */
        .floating__contact__btns__container {
            position: fixed;
            right: 25px;
            bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
            transform: translateX(150px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .floating__contact__btns__container.show__contact__btns {
            transform: translateX(0);
            opacity: 1;
        }

        /* Individual Button Styles */
        .contact__btn__floating {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: pulse__animation 2s infinite;
        }

        /* WhatsApp Button */
        .whatsapp__btn__floating {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        .whatsapp__btn__floating:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        /* Call Button */
        .call__btn__floating {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
        }

        .call__btn__floating:hover {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
        }

        /* Icon Styles */
        .contact__btn__floating svg {
            width: 30px;
            height: 30px;
            fill: white;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .contact__btn__floating:hover svg {
            transform: scale(1.1);
        }

        /* Ripple Effect */
        .contact__btn__floating::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s ease;
        }

        .contact__btn__floating:active::before {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }

        /* Pulse Animation */
        @keyframes pulse__animation {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }
            50% {
                box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.1);
            }
        }

        /* Tooltip */
        .contact__btn__floating::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 75px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .contact__btn__floating:hover::after {
            opacity: 1;
            right: 70px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .floating__contact__btns__container {
                right: 15px;
                bottom: 15px;
                gap: 12px;
            }

            .contact__btn__floating {
                width: 55px;
                height: 55px;
            }

            .contact__btn__floating svg {
                width: 26px;
                height: 26px;
            }

            .demo__content__wrapper h1 {
                font-size: 2rem;
            }

            .demo__content__wrapper p {
                font-size: 1rem;
            }
            .side-social-icons{
              bottom: 80px!important;
          
            }
        }
.side-social-icons{
  z-index: 999!important;
  
}
        @media (max-width: 480px) {
            .contact__btn__floating {
                width: 50px;
                height: 50px;
            }

            .contact__btn__floating svg {
                width: 24px;
                height: 24px;
            }

            .contact__btn__floating::after {
                display: none;
            }
        }
        #whatsapp-btn{
          background: var(--btn-blue-grey-glossy)!important;
        }
        .floating-contact-btn {
    transition: all 0.3s ease;
    transform: scale(1);
}

.floating-contact-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
}

.floating-contact-btn:hover .hover-opacity-25 {
    opacity: 0.25;
}

.floating-contact-btn i {
    transition: all 0.3s ease;
}

.floating-contact-btn:hover i {
    transform: scale(1.2);
}

/* Enhanced pulse animation for WhatsApp button */
#whatsapp-btn {
    animation: pulse-whatsapp 2s infinite, float 3s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Float animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Continuous animation for call button */
#call-btn {
  background: var(--btn-blue-grey-glossy);
    animation: ring 1.5s ease-in-out infinite alternate, float 3s ease-in-out infinite;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Shake animation for call button on hover */
#call-btn:hover {
    animation: shake 0.5s, ring 1.5s ease-in-out infinite alternate;
    animation-iteration-count: infinite, infinite;
}

@keyframes shake {
    0% { transform: translateX(0) scale(1.1) rotate(0deg); }
    25% { transform: translateX(-5px) scale(1.1) rotate(-5deg); }
    50% { transform: translateX(0) scale(1.1) rotate(0deg); }
    75% { transform: translateX(5px) scale(1.1) rotate(5deg); }
    100% { transform: translateX(0) scale(1.1) rotate(0deg); }
}

/* Add glowing and wave effect to both buttons */
.floating-contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

/* WhatsApp button effects */
#whatsapp-btn::after {
    box-shadow: 0 0 20px 5px rgba(37, 211, 102, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* WhatsApp wave effect */
#whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.7);
    z-index: -2;
    animation: wave 3s linear infinite;
}

/* Call button effects */
#call-btn::after {
    box-shadow: 0 0 20px 5px rgba(52, 152, 219, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Call button wave effect */
#call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.7);
    z-index: -2;
    animation: wave 3s linear infinite;
}

/* Glow animation */
@keyframes glow {
    from { opacity: 0.4; }
    to { opacity: 0.8; }
}

/* Wave animation */
@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Mobile Bottom Bar – hidden by default */
.mbb-glossy-nav {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .mbb-glossy-nav {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
    border-radius: 18px;
    background: white;
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.45),
      inset 0 1px 1px rgba(255, 255, 255, 0.15);
    z-index: 1009;
    backdrop-filter: blur(6px);
    /* z-index: 9999; */
  }

  .mbb-item {
    flex: 1;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    transition: all 0.3s ease;
  }

  .mbb-icon {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 4px;
    color: black;
  }

  .mbb-label {
    display: block;
    letter-spacing: 0.2px;
  background: linear-gradient(
    135deg,
    #06437c 0%, 
    #042141 25%,
    #7f94ab 50%,
    #5a8bc4  75%,
    #949596  100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }

  /* Hover / Tap */
  .mbb-item:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

  /* Active Item */
  .mbb-active {
    opacity: 1;
    position: relative;
    background: var(--btn-blue-grey-glossy);
    border-radius: 10px;
    padding: 5px;
  }

  .mbb-active .mbb-label{
  background: linear-gradient(
    135deg,
    #ffffff 0%, 
    #e3e3e3 25%,
    #f9f9f9 50%,
    #d0d0d0  75%,
    #949596  100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  .mbb-active .mbb-icon{
    color: white;
  }
}
/* Scroll behavior */
.mbb-glossy-nav {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hidden state */
.mbb-hide {
  transform: translateY(120%);
  opacity: 0;
}
  :root,
  [data-bs-theme="light"],
  [data-bs-theme="dark"] {
    color-scheme: light !important;
  }
  
  html[data-bs-theme="dark"] {
    --bs-body-bg: #ffffff !important;
    --bs-body-color: #000000 !important;
  }
  
  /* Hide dark mode images */
  .dark-mode-img {
    display: none !important;
  }
  
  /* Always show light mode images */
  .light-mode-img {
    display: block !important;
  }
.poster-text:hover{
  color: white!important;
  text-decoration: none!important;

}
.poster-img img{

  height:300px!important;

}
  .logo-stowjet {
    width: 300px;
    height: auto;
    max-width: 100%;
  }
  @media (max-width: 576px) {
    .logo-stowjet {
      width: 200px;
    }
  }

    /* Mobile Slider Add-on Styles - Only for mobile view */
    @media (max-width: 991px) {
      .banner-mobile-slider-wrapper {
        overflow: hidden;
        position: relative;
      }

      .banner-mobile-slider-wrapper .row {
        flex-wrap: nowrap;
        transition: transform 0.5s ease-in-out;
        margin: 0;
      }

      .banner-mobile-slider-wrapper .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
      }

      .banner-slider-dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0;
      }

      .banner-slider-dot-btn {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
      }

      .banner-slider-dot-btn.banner-dot-active {
        background: #374151;
        width: 24px;
        border-radius: 4px;
      }
    }

    @media (min-width: 992px) {
      .banner-slider-dots-container {
        display: none;
      }
    }
    .cat-img{
      max-height: 690px;
    }



    /* Category Text Overlay Styles */
.category-text-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0;
  transition: all 0.3s ease;
}

.category-text-overlay h3 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.category-text-overlay:hover h3 {
  transform: translateY(-5px);
}

.category-text-overlay .btn {
  transition: all 0.3s ease;
  position: relative;
}

.category-text-overlay .btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.category-text-overlay:hover .btn::after {
  width: 100%;
}

.category-text-overlay:hover {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

/* Mobile styles for category section */
@media (max-width: 767px) {
  .mobile-category-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mobile-category-overlay {
    padding: 1.5rem !important;
  }
  .main-titles{
    font-size: 28px;
  }
  
  .mobile-category-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .cat-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    font-size: 0.875rem !important;
 
  }
  .cat-btn-main{
    display: flex!important;
  }
  
  .category-slider .card {
    height: 200px !important;
    border-radius: 15px !important;
  }
  
  .fs-18px {
    font-size: 16px !important;
  }
}
.search-results-dropdown {
  max-height: 500px;
  overflow-y: auto;
  z-index: 1050;
  border: 1px solid #dee2e6;
}

/* Enable horizontal scroll for dropdown on small/mobile devices */
@media (max-width: 767px) {
  .search-results-dropdown {
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Allow a minimum width so you can scroll horizontally if contents overflow */
    min-width: 260px;
  }
}

.search-result-item {
  transition: background-color 0.2s;
  border-radius: 8px;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

.search-result-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.search-result-price {
  color: #28a745;
  font-weight: 600;
}

.search-result-category {
  font-size: 0.85rem;
  color: #6c757d;
}

.result-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
}

.type-product { background-color: #000000; color: #ffffff; }
.type-category { background-color: #000000; color: #ffffff; }
.type-subcategory { background-color: #fff3e0; color: #f57c00; }

/* Popular search item styling */
.popular-search-item {
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: #f8f9fa;
  transition: all 0.2s;
}

.popular-search-item:hover {
  background-color: #e9ecef;
  text-decoration: none;
  transform: translateY(-1px);
}

.recently-viewed-item {
  border-left: 3px solid #007bff;
}
