<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #6721ff;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* Custom Styles for Collector Terminal */

/* Product Cards */
.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-title {
  font-weight: 500;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 0.9rem;
}

.current-price {
  font-weight: 600;
  color: #e91e63;
  font-size: 1.1rem;
}

.product-rating {
  margin-bottom: 15px;
  color: #ffc107;
}

.btn .badge {
  position: relative !important;
  top: -1px !important;
  left: 10px !important;
  padding: .35em .65em;
  font-size: .75em;
  font-weight: 700;
}

.badge {
  position: relative!important;
  top: auto!important;
  left: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 1;
}

.badge-hot {
  background-color: #ff5722;
  color: white;
}

.badge-new {
  background-color: #4caf50;
  color: white;
}

.badge-sale {
  background-color: #e91e63;
  color: white;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  background: url('/images/hero-bg.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Section Titles */
.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-weight: 600;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #6721ff;
}

/* Cart Page */
.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Checkout Page */
.checkout-product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Account Pages */
.account-sidebar {
  border-radius: 8px;
  overflow: hidden;
}

/* Product Detail Page */
.product-detail-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnail.active {
  border-color: #6721ff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  max-width: 120px;
}

.quantity-selector .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector input {
  width: 40px;
  text-align: center;
  border: none;
}

/* Progress Tracker */
.order-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.order-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: -1;
}

.progress-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.progress-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.progress-step.active .progress-step-icon {
  background-color: #6721ff;
  color: white;
}

.progress-step.completed .progress-step-icon {
  background-color: #4caf50;
  color: white;
}

/* FAQ Accordion Brand Styling */
.accordion-button:not(.collapsed) {
  color: #fff!important;
  background-color: #6721ff!important;
  box-shadow: 0 2px 8px rgba(103, 33, 255, 0.1)!important;
}

.accordion-button:focus {
  border-color: #6721ff!important;
  box-shadow: 0 0 0 0.2rem rgba(103,33,255,.15)!important;
}

.accordion-button::after {
  filter: brightness(0) invert(1)!important;
}

.accordion-button.collapsed::after {
  filter: none!important;
}

.accordion-body {
  color: #898989!important;
  font-size: 15px!important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-slider {
    height: 350px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #6721ff!important;
  border-color: #6721ff!important;
}</pre></body></html>