.shop-main {
  color: #fff;
}

.section-shop {
  max-width: 1000px;
  margin: 0 auto;
}

.license-note {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #1a1a1a;
}

.license-note p {
  color: #a0a0a0;
  font-size: 0.875rem;
  margin: 0;
}

/* Fixed Checkout Button */
.fixed-checkout-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.fixed-checkout-btn.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.checkout-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #8a2be2, #4b0082);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #9932cc, #5d1a8f);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
}

.checkout-text {
  font-size: 1rem;
  white-space: nowrap;
}

.checkout-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile styles */
@media (max-width: 768px) {
  .fixed-checkout-btn {
    bottom: 1rem;
    right: 1rem;
  }
  
  .checkout-btn {
    padding: 0.875rem 1.25rem;
    border-radius: 40px;
  }
  
  .checkout-text {
    font-size: 0.875rem;
  }
  
  .checkout-badge {
    width: 20px;
    height: 20px;
    top: -6px;
    right: -6px;
    font-size: 0.625rem;
  }
}
