/* CT Stone Sticky Cart Styles */
.xoo-wsc-basket {
  top: 12px !important;
}

.ct-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 0px 20px;
  box-sizing: border-box;
  display: none;
}

.ct-sticky-cart-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ct-sticky-cart-product-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct-sticky-cart-image-wrapper {
  flex-shrink: 0;
}

.ct-sticky-cart-product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

.ct-sticky-cart-text-info {
  flex: 1;
}

.ct-sticky-cart-product-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.ct-sticky-cart-product-price {
  display: inline-block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #2c5aa0;
}

.ct-sticky-cart-actions {
  flex-shrink: 0;
  margin-left: 20px;
  width: 20rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct-sticky-cart-price-info {
  flex-shrink: 0;
}

.ct-sticky-cart-starting-price {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.ct-sticky-cart-button-wrapper {
  flex: 1;
}

.ct-sticky-cart-btn {
  border: none;
  color: white;
  padding: 12px 24px;
  background-color: #397167;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ct-sticky-cart-btn:hover:not(:disabled) {
  background-color: #2c534c !important;
}

.ct-sticky-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Responsive styles */
@media (max-width: 768px) {
  .ct-sticky-cart {
    padding: 12px 15px;
  }

  .ct-sticky-cart-content {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .ct-sticky-cart-product-info {
    display: none;
  }

  .ct-sticky-cart-price-info {
    display: none;
  }

  .ct-sticky-cart-actions {
    margin-left: 0;
    width: 100%;
  }

  .ct-sticky-cart-btn {
    width: 100%;
    padding: 15px 20px;
  }
}
