html, body {
	height: 100%;
	margin: 0; 
	padding: 0;
}

body {
	background-color: black;
	display:flex;
	color: #ccffff;
}

.link {
	color: #ccffff;
}

.link:visited {
	color: rgba(204, 46, 80, 1);
}

.container {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

.top-banner {
	display: flex;
	flex-wrap: wrap;
	background-color: black;
	width: 100%;
	align-items: center;
	justify-content: center;
	/* padding-left: 60px; */
	/* padding-right: 40px; */
	gap: 20px;
	position: relative;
	padding-top: 30px;
}

.top-banner-icons {
	position: absolute;
	right: 0;
	padding-right: 30px;
	display: flex;
	gap: 12px;
	z-index: 2;
}

.below-banner-icons {
	position: absolute;
	right: 40%;
	top: 100%;
	display: flex;
	gap: 12px;
	z-index: 2;
}

@media screen and (max-width: 600px) {
	.top-banner-icons {
		display: none;
	}
}

@media screen and (min-width: 600px) {
	.below-banner-icons {
		display: none;
	}
}

.icon {
	width: 24px;
	height: 24px;
}

.icon-link {
	text-decoration: none;
}

.cart-container {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	color: black;
	background-color: rgba(204, 46, 80, 1);
	padding-right: 2px;
	padding-left: 2px;
	border-radius: 30px;
}

.cart-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
}

.cart-item {
	max-width: 900px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	background-color: black;
	padding: 10px;
	z-index: 2;
}

.cart-item-left-content {
	display: flex;
	align-items: center;
	justify-content: left;
}

.cart-text-container {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
}

.cart-item-img {
	width: 50px;
	height: 50px;
}

.cart-count-adjuster {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cart-adjust-button {
	height: 20px;
	border-radius: 3px;
}

.cart-adjust-button.increase {
	background-color: rgba(204, 46, 80, 0.8);
}

.cart-adjust-button.decrease {
	background-color: rgba(75, 81, 200, 0.8);
}

.main-content {
	display: flex;
	background: #c322b6;

	background: linear-gradient(0deg, rgba(117, 79, 150, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
	/* background: linear-gradient(0deg, rgba(0, 204, 102, 0.75) 0%, rgba(0, 0, 0, 1) 100%); */
	height: 100%;
	width: 80%;
	padding: 10px;
	align-items: center;
	flex-direction: column;
	max-width: 900px;
	z-index: 2;
}

.center-paragraph {
	max-width: 500px;
	line-height: 28px;
	text-align: center;
	padding-bottom: 25px;
	z-index: 2;
}

.sky {
	position: relative;
}

.star {
	position: absolute;
	z-index: 1;
}

.cards-row {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	align-items: center;
	justify-content: center;
}

.card {
	flex: 1 1 250px;
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background-color: black;
	padding: 10px;
	z-index: 2;
	position: relative;
	border-radius: 5px;
}

.card-product-cart-count {
	position: absolute;
	top: -5px;
	left: -5px;
	background-color: rgba(204, 46, 80, 1);
	padding: 5px;
	box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

.card-img {
	width: 250px;
	height: 250px;
}

.card-button {
	cursor: pointer;
}

#stripe-btn {
  width: 100%;
  background: #635BFF;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
}
#stripe-btn:hover {
  background: #5851DB;
  /* box-shadow: 0 4px 14px rgba(99, 91, 255, 0.4); */
}
#stripe-btn:active { transform: scale(0.985); }
#stripe-btn:disabled { opacity: 0.85; cursor: not-allowed; }
.trust {
  text-align: center;
  font-size: 12px;
  color: #8898aa;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.checkout {
	width: 300px;
	padding-top: 40px;
}
