@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Additional Animations and Hover Effects */
@keyframes glowing {
  0% {
    box-shadow: 0 0 3px rgba(255, 76, 136, 0.5);
  }

  50% {
    box-shadow: 0 0 10px rgba(255, 76, 136, 0.8);
  }

  100% {
    box-shadow: 0 0 3px rgba(255, 76, 136, 0.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 76, 136, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 76, 136, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 76, 136, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: transl1400ateY(-4px);
  }
}

.sticky-footer .container {
  background: white !important;
  padding: 0px 0px 0px 0px !important;
}

.gform_title {
  display: none !important;
}

#proceed-print-btn {
  background: linear-gradient(120deg, #ff4c88, #6a297a) !important;
  background-image: linear-gradient(
    120deg,
    rgb(255, 76, 136),
    rgb(106, 41, 122)
  ) !important;
}

.mobile-cart-toggle {
  display: none !important;
}

/* Loading Effects */
#lab-dos .shimmer-loading {
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
  min-height: 120px;
  margin-bottom: 15px;
}

/* Interactive Button States */
#lab-dos .bttn-primary.add_to_cart_button:hover {
  animation: glowing 1.5s infinite;
  transform: translateY(-3px) scale(1.05);
  transition: all 0.3s ease;
}

/* Tooltip Styles */
#lab-dos .custom-tooltip {
  position: relative;
  display: inline-block;
}

#lab-dos .custom-tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: rgba(106, 41, 122, 0.9);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
  font-size: 12px;
  pointer-events: none;
}

#lab-dos .custom-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Empty States Styling */
#lab-dos .empty-state {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  margin: 20px 0;
}

#lab-dos .empty-state i {
  font-size: 50px;
  color: rgba(106, 41, 122, 0.2);
  margin-bottom: 20px;
}

#lab-dos .empty-state h4 {
  color: #6a297a;
  margin-bottom: 15px;
  font-weight: 600;
}

#lab-dos .empty-state p {
  color: #777;
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress steps indicator */
#lab-dos .order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

#lab-dos .order-steps::before {
  content: "";
  position: absolute;
  height: 2px;
  background: #f0e8f5;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}

#lab-dos .order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
#lab-dos .order-step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0e8f5;
  color: #6a297a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

#lab-dos .order-step .step-text {
  font-size: 12px;
  color: #6a297a;
  font-weight: 500;
}

#lab-dos .order-step.active .step-number {
  background: linear-gradient(120deg, #ff4c88, #ff8a63);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2);
}

#lab-dos .order-step.completed .step-number {
  background: #6a297a;
  color: white;
}

#lab-dos .order-step.completed .step-number::after {
  content: "✓";
  position: absolute;
  font-size: 12px;
}

/* Badge with count for cart */
#lab-dos .badge-glow {
  animation: pulse 2s infinite;
  background: linear-gradient(120deg, #ff4c88, #ff8a63);
  color: white;
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2);
}

/* Base styling */
#lab-dos {
  position: relative !important;
  width: 100% !important;
  background: linear-gradient(140deg, #f9f5fa, #fff5f8) !important;
  padding-top: 40px !important;
  overflow: visible !important;
  font-family: "Poppins", sans-serif !important;
  color: #393854 !important;
}

/* Scrollable columns */
#lab-dos .scrollable-column {
  max-height: 70vh !important;
  overflow-y: auto !important;
  padding-right: 10px !important;
  padding-bottom: 20px !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(106, 41, 122, 0.3) transparent !important;
}

#lab-dos .scrollable-column::-webkit-scrollbar {
  width: 6px !important;
}

#lab-dos .scrollable-column::-webkit-scrollbar-thumb {
  background-color: rgba(106, 41, 122, 0.3) !important;
  border-radius: 10px !important;
}

#lab-dos .scrollable-column::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Only make column 2 and 3 scrollable */
#lab-dos .filters-column {
  overflow-y: visible !important;
  max-height: none !important;
}

/* Primary styling */
#lab-dos .container {
  width: 100% !important;
  max-width: 1700px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

.pagination li a,
.pagination li span {
  width: fit-content !important;
  background: white !important;
  border-radius: 8px !important;
  margin: 0 3px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.pagination li a:hover {
  background: #ff4c88 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 10px rgba(255, 76, 136, 0.3) !important;
}

.pagination li.active a {
  background: #ff4c88 !important;
  color: white !important;
  border-color: #ff4c88 !important;
}

#lab-dos .col-md-6,
#lab-dos .col-md-3 {
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}

@media (min-width: 992px) {
  #lab-dos .col-md-6,
  #lab-dos .col-md-3 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

#lab-dos .d-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

#lab-dos .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
  box-sizing: border-box !important;
}

/* Headers */
#lab-dos h3 {
  font-size: 24px !important;
  color: #ff4c88 !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
  width: 100% !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
}

#lab-dos h5 {
  color: #6a297a !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
  font-weight: 600 !important;
  width: 100% !important;
}

/* Section headings */
#lab-dos .section-heading {
  padding-top: 20px !important;
  border-top: 1px solid rgba(106, 41, 122, 0.1) !important;
  margin-top: 20px !important;
  position: relative !important;
}

#lab-dos .section-heading:before {
  content: "" !important;
  position: absolute !important;
  top: -2px !important;
  left: 0 !important;
  width: 60px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #ff4c88, #ff8a63) !important;
  border-radius: 3px !important;
}

/* Search Box */
#lab-dos .search-box {
  position: relative !important;
  background-color: white !important;
  background-image: url("https://medex.co.th/wp-content/uploads/2024/09/lens.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  border: none !important;
  border-radius: 16px !important;
  background-size: 20px !important;
  margin-bottom: 25px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: 0 5px 20px rgba(106, 41, 122, 0.1) !important;
  transition: all 0.3s ease !important;
}

#lab-dos .search-box:focus-within {
  box-shadow: 0 8px 25px rgba(255, 76, 136, 0.15) !important;
  transform: translateY(-2px) !important;
}

#lab-dos #searchBox {
  width: 100% !important;
  padding: 16px 20px !important;
  font-size: 16px !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
  color: #393854 !important;
}

#lab-dos #searchBox::placeholder {
  color: #9994b8 !important;
  opacity: 0.8 !important;
}

/* Item Cards */
#lab-dos .item-card {
  background: white !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

#lab-dos .item-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(106, 41, 122, 0.1) !important;
}

#lab-dos .item-card:after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 6px !important;
  height: 100% !important;
  background: linear-gradient(180deg, #ff4c88, #ff8a63) !important;
  border-radius: 16px 0 0 16px !important;
}

#lab-dos .item-details {
  margin: 15px 0 20px 0 !important;
  width: 100% !important;
  position: relative !important;
}

#lab-dos .item-details p {
  margin-bottom: 8px !important;
  color: #555 !important;
  line-height: 1.4 !important;
  font-size: 14px !important;
  width: 100% !important;
}

#lab-dos .compact-text {
  font-size: 12px !important;
  color: #777 !important;
}

/* Buttons and Controls */
#lab-dos .button,
#lab-dos .bttn {
  opacity: 1 !important;
  visibility: visible !important;
  font-family: "Poppins", sans-serif !important;
  line-height: 1.7em !important;
  background: linear-gradient(120deg, #ff4c88 10%, #ff8a63 90%) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2) !important;
}

#lab-dos .button:hover,
#lab-dos .bttn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 7px 15px rgba(255, 76, 136, 0.3) !important;
}

#lab-dos .bttn-outline-secondary {
  background: white !important;
  color: #6a297a !important;
  border: 1px solid rgba(106, 41, 122, 0.2) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

#lab-dos .bttn-outline-secondary:hover {
  background: #f9f5fa !important;
  border-color: #6a297a !important;
}

#lab-dos .bttn-danger {
  background: linear-gradient(120deg, #ff5c5c, #ff8c5c) !important;
}

/* Card Actions Layout */
#lab-dos .card-actions {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 15px !important;
  padding-top: 15px !important;
  border-top: 1px dashed rgba(106, 41, 122, 0.1) !important;
}

#lab-dos .card-left-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#lab-dos .card-right-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Quantity Controls */
#lab-dos .quantity-box {
  display: inline-flex !important;
  align-items: center !important;
  background: #f5f5f5 !important;
  border-radius: 12px !important;
  padding: 2px !important;
  margin-right: 10px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
}

#lab-dos .quantity-box button {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  font-size: 16px !important;
  border: none !important;
  background: white !important;
  color: #6a297a !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

#lab-dos .quantity-box button:hover {
  background: #ff4c88 !important;
  color: white !important;
}

#lab-dos .quantity-input {
  width: 40px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 14px !important;
  color: #333 !important;
  padding: 0 5px !important;
  font-weight: 600 !important;
}

/* Categories and Tags */
#lab-dos .category-link {
  display: inline-block !important;
  color: #6a297a !important;
  padding: 2px 8px !important;
  background: rgba(106, 41, 122, 0.1) !important;
  border-radius: 10px !important;
  margin: 3px 3px 3px 0 !important;
  font-size: 11px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

#lab-dos .category-link:hover {
  background: rgba(106, 41, 122, 0.2) !important;
  transform: translateY(-1px) !important;
}

/* Quick Filter Tags */
#lab-dos .filter-tag {
  display: inline-block !important;
  padding: 5px 12px !important;
  background: white !important;
  border-radius: 20px !important;
  margin: 0 5px 8px 0 !important;
  font-size: 12px !important;
  color: #6a297a !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border: 1px solid rgba(106, 41, 122, 0.2) !important;
}

#lab-dos .filter-tag:hover {
  background: #f9f5fa !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

#lab-dos .filter-tag.active {
  background: linear-gradient(120deg, #ff4c88, #ff8a63) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2) !important;
}

#lab-dos .quick-filter-tags {
  margin: 15px 0 20px 0 !important;
  padding: 15px !important;
  background: white !important;
  border-radius: 10px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Quick Links */
#lab-dos .quick-links-container {
  padding: 20px !important;
  background: white !important;
  border-radius: 16px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

#lab-dos .quick-links {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

#lab-dos .quick-link-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 12px !important;
  background: #f9f5fa !important;
  border-radius: 12px !important;
  color: #6a297a !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

#lab-dos .quick-link-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(106, 41, 122, 0.1) !important;
}

#lab-dos .quick-link-item i {
  font-size: 24px !important;
  margin-bottom: 8px !important;
}

#lab-dos .quick-link-item span {
  font-size: 12px !important;
  text-align: center !important;
  font-weight: 500 !important;
}

/* Cart Summary */
#lab-dos .cart-summary {
  background: white !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-top: 20px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}

#lab-dos .cart-summary:before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  background: linear-gradient(90deg, #ff4c88, #ff8a63) !important;
}

/* Cart Item Styles */
#lab-dos .cart-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 15px !important;
  border-bottom: 1px solid rgba(106, 41, 122, 0.05) !important;
  gap: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  border-radius: 12px !important;
}

#lab-dos .cart-item:hover {
  background: #f9f5fa !important;
}

#lab-dos .cart-item > div:first-child {
  flex: 1 !important;
  min-width: 0 !important;
  padding-right: 10px !important;
}

#lab-dos .cart-item .quantity-box {
  display: inline-flex !important;
  align-items: center !important;
  background: #f5f5f5 !important;
  border-radius: 10px !important;
  padding: 2px !important;
  margin-right: 10px !important;
}

#lab-dos .cart-item > span:last-child {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  text-align: right !important;
  min-width: 80px !important;
  font-weight: 600 !important;
}

/* Cart item animations */
#lab-dos .cart-item.animate-add {
  animation: pulse 0.5s ease-in-out !important;
}

/* Improved Filter Styling */
#lab-dos .filters-container {
  background: white !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 25px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
}

#lab-dos .filters-container:before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: linear-gradient(180deg, #ff4c88, #ff8a63) !important;
}

#lab-dos .filters-container h4 {
  font-size: 18px !important;
  color: #6a297a !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
  width: 100% !important;
  position: relative !important;
  display: inline-block !important;
}

#lab-dos .filters-container label {
  display: block !important;
  margin-bottom: 5px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #6a297a !important;
  width: 100% !important;
}

#lab-dos .filters-container select {
  margin-bottom: 15px !important;
  width: 100% !important;
  font-size: 13px !important;
  box-sizing: border-box !important;
  border-radius: 10px !important;
  padding: 10px !important;
  border: 1px solid rgba(106, 41, 122, 0.1) !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236a297a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 16px !important;
}

#lab-dos .filters-container select:focus {
  outline: none !important;
  border-color: #ff4c88 !important;
  box-shadow: 0 0 0 3px rgba(255, 76, 136, 0.1) !important;
}

/* Status Indicators */
#lab-dos .text-success {
  color: #28a745 !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-weight: 500 !important;
}

/* Highlighted/Selected Items */
#lab-dos .highlighted-item {
  border: none !important;
  box-shadow: 0 8px 25px rgba(106, 41, 122, 0.15) !important;
  margin-bottom: 25px !important;
  transform: scale(1.02) !important;
  z-index: 1 !important;
}

#lab-dos .highlighted-item:after {
  width: 8px !important;
  background: linear-gradient(180deg, #6a297a, #9a5baa) !important;
}

#lab-dos .highlighted-item-label {
  background: #6a297a !important;
  color: white !important;
  padding: 5px 15px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 10px rgba(106, 41, 122, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
  animation: float 3s infinite ease-in-out !important;
}

#lab-dos .highlighted-item-label:before {
  content: "★" !important;
  margin-right: 5px !important;
}

#lab-dos .selected-item {
  border: none !important;
  box-shadow: 0 8px 25px rgba(255, 76, 136, 0.15) !important;
  margin-bottom: 25px !important;
  transform: scale(1.02) !important;
  z-index: 1 !important;
}

#lab-dos .selected-item:after {
  width: 8px !important;
  background: linear-gradient(180deg, #ff4c88, #ff8a63) !important;
}

#lab-dos .selected-item-label {
  background: #ff4c88 !important;
  color: white !important;
  padding: 5px 15px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
  animation: float 3s infinite ease-in-out !important;
}

#lab-dos .selected-item-label:before {
  content: "✓" !important;
  margin-right: 5px !important;
}

#lab-dos .search-results-separator {
  margin: 20px 0 !important;
  padding: 10px !important;
  background: rgba(249, 245, 250, 0.7) !important;
  border-radius: 12px !important;
  text-align: center !important;
  color: #6a297a !important;
  font-weight: 500 !important;
  width: 100% !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  position: relative !important;
}

#lab-dos .search-results-separator:before,
#lab-dos .search-results-separator:after {
  content: "" !important;
  position: absolute !important;
  height: 1px !important;
  width: 30% !important;
  background: linear-gradient(
    90deg,
    rgba(106, 41, 122, 0.1),
    rgba(106, 41, 122, 0.4)
  ) !important;
  top: 50% !important;
  left: 5% !important;
}

#lab-dos .search-results-separator:after {
  left: auto !important;
  right: 5% !important;
  background: linear-gradient(
    90deg,
    rgba(106, 41, 122, 0.4),
    rgba(106, 41, 122, 0.1)
  ) !important;
}

/* Added to cart message */
#lab-dos .added-to-cart-message {
  background: linear-gradient(120deg, #28a745, #20c997);
  color: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.5s ease-in-out;
  width: 100%;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

#lab-dos .added-to-cart-message .message-text {
  flex: 1;
  font-size: 14px !important;
}

#lab-dos .added-to-cart-message .dismiss-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#lab-dos .added-to-cart-message .dismiss-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Search Wrapper */
#lab-dos .search-wrapper {
  background: linear-gradient(120deg, #fff5f8, #fff);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 10px 30px rgba(106, 41, 122, 0.08);
  border: 1px solid rgba(255, 76, 136, 0.1);
}

/* Autocomplete Suggestions */
#lab-dos .autocomplete-suggestions {
  border: none !important;
  border-radius: 16px !important;
  max-height: 500px !important;
  overflow-y: hidden !important;
  background: white !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  margin-top: 8px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-wrap: wrap !important;
  animation: slideDown 0.3s ease-out !important;
}

#lab-dos .autocomplete-results-container {
  width: 50% !important;
  height: 500px !important;
  overflow-y: auto !important;
  padding: 15px !important;
  border-right: 1px solid rgba(106, 41, 122, 0.1) !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(106, 41, 122, 0.3) transparent !important;
}

#lab-dos .autocomplete-results-container::-webkit-scrollbar {
  width: 4px !important;
}

#lab-dos .autocomplete-results-container::-webkit-scrollbar-thumb {
  background-color: rgba(106, 41, 122, 0.3) !important;
  border-radius: 10px !important;
}

#lab-dos .autocomplete-preview-container {
  width: 50% !important;
  padding: 20px !important;
  height: 500px !important;
  overflow-y: auto !important;
  background: #f9f5fa !important;
  border-radius: 0 16px 16px 0 !important;
}

#lab-dos .autocomplete-suggestion {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px !important;
  margin-bottom: 8px !important;
  border-radius: 12px !important;
  border: none !important;
  transition: all 0.2s ease !important;
  gap: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  cursor: pointer !important;
}

#lab-dos .autocomplete-suggestion:last-child {
  margin-bottom: 0 !important;
}

#lab-dos .autocomplete-suggestion:hover {
  background-color: #f0e8f5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(106, 41, 122, 0.1) !important;
}

#lab-dos .autocomplete-suggestion span {
  font-size: 13px !important;
  color: #333 !important;
  line-height: 1.4 !important;
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#lab-dos .preview-card {
  background: white !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 8px 25px rgba(106, 41, 122, 0.1) !important;
  animation: fadeIn 0.3s ease-out !important;
  position: relative !important;
  overflow: hidden !important;
}

#lab-dos .preview-card:after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 6px !important;
  height: 100% !important;
  background: linear-gradient(180deg, #ff4c88, #ff8a63) !important;
  border-radius: 16px 0 0 16px !important;
}

#lab-dos .preview-card h5 {
  font-size: 16px !important;
  color: #6a297a !important;
  margin-bottom: 15px !important;
  border-bottom: 1px solid rgba(106, 41, 122, 0.1) !important;
  padding-bottom: 15px !important;
  font-weight: 600 !important;
}

#lab-dos .autocomplete-suggestion .suggestion-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

#lab-dos .autocomplete-suggestion .text-success {
  color: #28a745 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

#lab-dos .autocomplete-suggestion .bttn {
  padding: 6px 12px !important;
  min-width: unset !important;
  font-size: 13px !important;
  height: 28px !important;
}

#lab-dos .autocomplete-suggestion .bttn.bttn-danger {
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
}

#lab-dos .autocomplete-suggestion.active {
  background-color: #f0e8f5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(106, 41, 122, 0.1) !important;
}

/* Section Navigation */
#lab-dos .section-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  z-index: 990;
  border-bottom: 1px solid rgba(106, 41, 122, 0.1);
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#lab-dos .section-nav.shadow {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1) !important;
}

#lab-dos .section-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  justify-content: center;
}

#lab-dos .section-nav li a {
  color: #6a297a;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

#lab-dos .section-nav li a.active {
  background: linear-gradient(120deg, #ff4c88, #ff8a63);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2);
}

#lab-dos .section-nav li a:hover:not(.active) {
  background: rgba(106, 41, 122, 0.1);
  transform: translateY(-2px);
}

/* Section scrolling indicator */
#lab-dos .scroll-indicator {
  text-align: center;
  padding: 10px;
  color: #6a297a;
  opacity: 0.7;
  bottom: 10px;
  left: 0;
  right: 0;
  font-size: 12px;
  animation: bounceArrow 2s infinite;
  cursor: pointer;
}

#lab-dos .scroll-indicator:hover {
  opacity: 1;
}

/* Sticky Footer */
#lab-dos .sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid rgba(106, 41, 122, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: slideUp 0.3s ease-out;
}

#lab-dos .sticky-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lab-dos .sticky-footer .cart-summary-mini {
  display: flex;
  align-items: center;
}

#lab-dos .sticky-footer .cart-count {
  background: linear-gradient(120deg, #ff4c88, #ff8a63);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 76, 136, 0.2);
  animation: pulse 2s infinite;
}

#lab-dos .sticky-footer .cart-total {
  font-weight: 600;
  margin-right: 20px;
  font-size: 16px;
  color: #6a297a;
}

#lab-dos .footer-actions {
  display: flex;
  gap: 10px;
}

/* Section separators */
#lab-dos .section-separator {
  margin: 30px 0;
  border-top: 1px dashed rgba(106, 41, 122, 0.2);
  position: relative;
}

#lab-dos .section-separator .scroll-arrow {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  background: white;
  padding: 5px 15px;
  color: #6a297a;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

#lab-dos .section-separator .scroll-arrow:hover {
  background: #f0e8f5;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 15px rgba(106, 41, 122, 0.1);
}

/* Achievement notification styles */
.achievement-notification {
  position: fixed;
  bottom: -100px;
  right: 20px;
  background: linear-gradient(135deg, #6a297a, #9a5baa);
  color: white;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.achievement-notification.show {
  bottom: 20px;
  opacity: 1;
}

.achievement-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.achievement-content {
  flex: 1;
}

.achievement-content h5 {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #fff !important;
}

.achievement-content p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.achievement-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.achievement-close:hover {
  opacity: 1;
}

/* Confetti styles */
.confetti-piece {
  position: absolute;
  top: 0;
  left: 0;
}

/* Pulse overlay */
.pulse-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}

/* Mobile-specific styles */
@media screen and (max-width: 767px) {
  #lab-dos {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }

  #lab-dos .scrollable-column {
    height: auto !important;
    overflow-y: visible !important;
    max-height: none !important;
    padding-right: 0px !important;
  }

  /* Search Wrapper */
  #lab-dos .search-wrapper {
    padding: 30px 5px 0px 5px !important;
  }

  .quick-filter-tags,
  .tags-container,
  #filters-section,
  .quick-links-container,
  .order-steps,
  .section-nav {
    display: none !important;
  }

  #lab-dos .mobile-floating-buttons {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
  }

  #lab-dos .mobile-search,
  #lab-dos .mobile-view-cart {
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(120deg, #ff4c88, #ff8a63) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(255, 76, 136, 0.3) !important;
    cursor: pointer !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  #lab-dos .mobile-view-cart {
    position: relative !important;
  }

  #lab-dos .cart-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #fff !important;
    color: #ff4c88 !important;
    border-radius: 50% !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    min-width: 20px !important;
    text-align: center !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    font-weight: 600 !important;
  }

  /* Mobile Cart Styles */
  #lab-dos .cart-item {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }

  #lab-dos .cart-item > div:first-child {
    flex: 1 1 100% !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
  }

  #lab-dos .cart-item .quantity-box {
    padding: 2px !important;
    margin: 0 !important;
  }

  #lab-dos .cart-item .quantity-box button {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    padding: 0 !important;
    font-size: 14px !important;
  }

  #lab-dos .cart-item .quantity-box input {
    width: 32px !important;
    padding: 0 2px !important;
  }

  #lab-dos .cart-item .cart-remove-item {
    padding: 6px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin-left: auto !important;
  }

  #lab-dos .cart-item > span:last-child {
    margin-left: 8px !important;
  }

  #lab-dos .container {
    padding: 15px !important;
    width: 100% !important;
  }

  #lab-dos .search-box {
    margin-bottom: 30px !important;
  }

  #lab-dos .item-card {
    padding: 20px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  #lab-dos #itemsContainer {
    margin-bottom: 40px !important;
    width: 100% !important;
  }

  #lab-dos #cartSummary {
    margin-bottom: 80px !important;
    width: 100% !important;
  }

  #lab-dos .copy-btn {
    display: none !important;
  }

  #lab-dos .section-nav ul {
    overflow-x: auto;
    padding-bottom: 5px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none !important;
  }

  #lab-dos .section-nav ul::-webkit-scrollbar {
    display: none !important;
  }

  #lab-dos .autocomplete-suggestions {
    flex-direction: column !important;
    max-height: 80vh !important;
  }

  #lab-dos .autocomplete-results-container,
  #lab-dos .autocomplete-preview-container {
    width: 100% !important;
    height: auto !important;
    max-height: 40vh !important;
  }

  #lab-dos .autocomplete-results-container {
    border-right: none !important;
    border-bottom: 1px solid rgba(106, 41, 122, 0.1) !important;
  }

  #lab-dos .autocomplete-preview-container {
    border-radius: 0 0 16px 16px !important;
  }

  #lab-dos .order-steps {
    overflow-x: auto !important;
    padding-bottom: 10px !important;
    justify-content: flex-start !important;
    gap: 15px !important;
  }

  #lab-dos .order-step {
    flex-shrink: 0 !important;
  }

  #lab-dos .quick-links {
    grid-template-columns: 1fr !important;
  }

  #lab-dos .sticky-footer .cart-total {
    display: none !important;
  }

  #lab-dos .footer-actions {
    flex-wrap: wrap !important;
  }
}

/* Very small screens */
@media screen and (max-width: 380px) {
  #lab-dos .cart-item > span:last-child {
    min-width: 70px !important;
  }

  #lab-dos .cart-item .quantity-box {
    scale: 0.9 !important;
    transform-origin: left center !important;
  }

  #lab-dos .section-nav li a {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  #lab-dos .filter-tag {
    font-size: 11px !important;
    padding: 4px 8px !important;
  }

  #lab-dos .achievement-notification {
    left: 20px !important;
    right: 20px !important;
    max-width: none !important;
  }
}

/* Hide on desktop explicitly */
@media screen and (min-width: 768px) {
  #lab-dos .mobile-floating-buttons {
    display: none !important;
  }

  .mobile-cart-toggle {
    didisplay: none !important;
  }

  /* Ensure column widths are respected */
  #lab-dos .col-md-3 {
    width: 25% !important;
  }

  #lab-dos .col-md-6 {
    width: 50% !important;
  }

  #lab-dos .col-md-9 {
    width: 75% !important;
  }

  /* Add section separator lines */
  #lab-dos .section-separator {
    margin: 40px 0;
    border-top: 1px dashed rgba(106, 41, 122, 0.2);
    position: relative;
  }

  #lab-dos .section-separator .scroll-arrow {
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    background: #f9f5fa;
    padding: 8px 20px;
    color: #6a297a;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(106, 41, 122, 0.1);
  }
}
