* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  padding: 20px;
}

.shop-container {
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.shop-container h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  color: #08d9d6;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 10px rgba(8, 217, 214, 0.5);
}
.shop-container .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.shop-container .products-grid .product-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.shop-container .products-grid .product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: #08d9d6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.shop-container .products-grid .product-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #ffffff;
}
.shop-container .products-grid .product-card p {
  font-size: 1.1rem;
  color: #08d9d6;
  margin-bottom: 20px;
  font-weight: bold;
}
.shop-container .products-grid .product-card button {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #08d9d6;
  border: 2px solid #08d9d6;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.shop-container .products-grid .product-card button:hover {
  background: #08d9d6;
  color: #000;
  box-shadow: 0 0 15px #08d9d6;
}
.shop-container .cart-section {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 46, 99, 0.3);
}
.shop-container .cart-section h2 {
  margin-bottom: 20px;
  color: #ff2e63;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255, 46, 99, 0.3);
  padding-bottom: 10px;
}
.shop-container .cart-section ul {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.shop-container .cart-section ul li {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  animation: fadeIn 0.5s ease;
}
.shop-container .cart-section ul li:last-child {
  border-bottom: none;
}
.shop-container .cart-section .total-price {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
  color: #08d9d6;
  text-shadow: 0 0 5px rgba(8, 217, 214, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ff2e63;
  border-radius: 10px;
}

/*# sourceMappingURL=style.css.map */
