/* Color Palette */
:root {
	--dark-blue: #003366;   /* Primary Dark Blue */
	--medium-blue: #0056b3; /* Medium Blue for accents/buttons */
	--bright-orange: #FFA500; /* Bright Orange for highlights */
	--white: #FFFFFF;       /* Clean White */
	--light-grey: #F0F0F0;  /* Light background for sections */
	--text-dark: #333333;   /* Dark text */
	--text-light: #666666;  /* Lighter text */
	--red-error: #dc3545;   /* Red for errors/removals */
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* General Body Styles */
body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #FDBB2D;
	background-image: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
	color: var(--text-dark);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
	scroll-behavior: smooth; /* Smooth scroll for internal links */
}

/* Utility Classes */
.hidden {
	display: none !important;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(100deg, #2274A5 70%, #F79902 150%);
  padding: 1.4rem 2.2rem 1.2rem 2.2rem;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 6px 24px rgba(34,116,165,0.08), 0 2px 8px #F7990235;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  position: relative;
  z-index: 100;
}

.header h1 {
  font-size: 2.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin: 0;
  text-shadow:
    0 2px 14px #F7990233,
    0 0px 2px #0e2339b0;
  transition: text-shadow 0.22s;
  text-transform: uppercase;
  user-select: none;
  filter: drop-shadow(0 8px 20px #2274a557);
}

.cart-icon {
  position: fixed;
  top: 1.5rem;
  right: 1.6rem;
  background: linear-gradient(100deg, #F79902 62%, #2274A5 120%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  border-radius: 2rem;
  padding: 0.6em 1.35em 0.6em 1.13em;
  display: flex;
  align-items: center;
  gap: 0.7em;
  border: 2.5px solid #fff;
  box-shadow: 0 6px 24px #f7990258, 0 2px 8px #2274A53a;
  cursor: pointer;
  transition: 
    background 0.21s,
    box-shadow 0.18s,
    transform 0.13s;
  z-index: 1005;
  outline: none;
}

.cart-icon:hover,
.cart-icon:focus-visible {
  background: linear-gradient(80deg, #2274A5 15%, #fbc566 120%);
  color: #2274A5;
  transform: scale(1.045) translateY(-1px);
  box-shadow: 0 10px 28px #F79902b7;
  border-color: #2274A5;
}

.cart-icon span#cartItemCount {
  display: inline-block;
  min-width: 1.8em;
  background: #fff;
  color: #F79902;
  font-weight: 900;
  border-radius: 1em;
  margin-left: 0.33em;
  padding: 0.08em 0.55em;
  text-align: center;
  font-size: 1em;
  box-shadow: 0 1px 6px #F7990232;
  transition: color 0.16s, background 0.18s;
}

/* Main Content Area - Full Width */
.main-content {
	flex-grow: 1;
	padding: 40px 20px;
	width: 100%; /* Full width */
	box-sizing: border-box; /* Include padding in width */
	display: flex;
	flex-direction: column;
	align-items: center; /* Center content within full width */
}

.content-container {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	width: 100%;
	max-width: 1000px; /* Max width for readability within full width */
	text-align: center;
	opacity: 0; /* Initial state for animation */
	transform: translateY(20px); /* Initial state for animation */
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-container.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.content-container h2 {
	color: var(--dark-blue);
	font-family: 'Roboto', sans-serif;
	font-size: 2em;
	margin-bottom: 30px;
	font-weight: 700;
}

/* Back Button */
.back-button-container {
	width: 100%;
	max-width: 1000px; /* Align with content-container */
	text-align: left;
	margin-bottom: 20px;
}

.back-button {
	background: none;
	border: none;
	color: var(--dark-blue);
	font-size: 1.1em;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none; /* Make it look like a link */
	transition: color 0.2s ease;
}

.back-button:hover {
	color: var(--medium-blue);
	text-decoration: none;
	font-weight: 850;
}

/* --- CATEGORY FILTERS: Beautiful, Stylish Pills --- */
.category-filters {
  display: flex;
  gap: 0.75rem;
  margin: 1.6rem 0 2.1rem 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f8fbff;
  padding: 1rem 1.5rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px #2274A519;
  position: relative;
  transition: box-shadow 0.15s;
}

/* Stylish pill buttons, glowing on hover */
.category-filters button {
  background: linear-gradient(70deg, #fff 70%, #f6f6fa 110%);
  color: #2274A5;
  border: 2.1px solid #2274A5;
  border-radius: 23px;
  font-weight: 700;
  padding: 0.46rem 1.3rem 0.46rem 1.35rem;
  font-size: 1.05rem;
  box-shadow: 0 3px 12px #2274A511;
  margin: 0 2px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition:
    background 0.16s,
    color 0.16s,
    border 0.13s,
    box-shadow 0.22s;
  outline: none;
}

.category-filters button:not(.active):hover {
  background: #F79902;
  color: #fff;
  border-color: #F79902;
  box-shadow: 0 5px 18px #f799022e;
}

.category-filters button.active {
  background: linear-gradient(90deg, #2274A5 76%, #F79902 170%);
  color: #fff;
  border-color: #F79902;
  box-shadow: 0 8px 24px 0 #F7990241;
}

.category-filters select {
  /* Remove native styles */
  display: none;
  position: relative;
  width: 100%;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: black;
  cursor: pointer;
  padding: 12px 48px 12px 16px; /* space for arrow */
  border: 2px solid #F79902;
  border-radius: 16px;
  background: linear-gradient(65deg, #52ACFF 80%, #FFE32C 150%);
  box-shadow: 0 4px 12px rgb(247 153 2 / 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

/* Focus and hover states */
.category-filters select:focus,
.category-filters select:hover {
  border-color: #fff;
  box-shadow: 0 0 12px 3px #F79902aa;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

.product-card {
	background-color: var(--light-grey);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.product-card h3 {
	color: var(--dark-blue);
	font-size: 1.4em;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 700;
	min-height: 40px;
}

.product-card .category {
	font-size: 0.9em;
	color: var(--text-light);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-card .price {
	font-size: 1.6em;
	font-weight: 700;
	color: var(--bright-orange);
	margin-bottom: 15px;
}

.product-card .description {
	font-size: 0.95em;
	color: var(--text-dark);
	margin-bottom: 20px;
	flex-grow: 1;
}

.product-card .add-to-cart-btn {
	display: block;
	width: 100%;
	padding: 12px 15px;
	background-color: var(--medium-blue);
	color: var(--white);
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: 600;
	transition: background-color 0.2s ease;
	border: none;
	cursor: pointer;
}

.product-card .add-to-cart-btn:hover {
	background-color: var(--dark-blue);
}

/* Continue Shopping Button */
.continue-shopping {
  display: block;
  width: 40%;
  margin: 1.4rem auto 0 auto;
  background: linear-gradient(180deg, #52ACFF 25%, #FFE32C 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.95em 0;
  letter-spacing: 1.2px;
  box-shadow: 0 5px 18px #F7990268, 0 2px 8px #2274A540;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s;
}

.checkout-btn {
  display: block;
  width: 40%;
  margin: 1.4rem auto 0 auto;
  background: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.95em 0;
  letter-spacing: 1.2px;
  box-shadow: 0 5px 18px #F7990268, 0 2px 8px #2274A540;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s;
}

.checkout-btn:hover {
	color: var(--medium-blue);
	font-weight: 850;
	text-decoration: none;
}

/* Loading Indicator */
#loading-indicator {
	text-align: center;
	padding: 20px;
	font-size: 1.2em;
	color: var(--text-light);
	display: none;
}

/* Cart & Checkout Page Styling (now within content-container) */
#cartPage, #checkoutPage, #orderConfirmationPage {
	text-align: center;
	padding: 20px 0;
}

#cartPage h3, #checkoutPage h3, #orderConfirmationPage h3 {
	font-size: 2em;
	color: var(--dark-blue);
	margin-bottom: 25px;
}

.cart-list .cart-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid var(--light-grey);
	gap: 15px;
}

.cart-list .cart-item:last-child {
	border-bottom: none;
}

.cart-list .item-details {
	flex-grow: 1;
	text-align: left;
}

.cart-list .item-details h4 {
	margin: 0 0 5px 0;
	color: var(--dark-blue);
	font-size: 1.1em;
}

.cart-list .item-details .price {
	font-weight: 600;
	color: var(--bright-orange);
}

.cart-list .item-quantity {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: 20px;
}

.cart-list .quantity-btn {
	background-color: var(--medium-blue);
	color: var(--white);
	border: none;
	border-radius: 4px;
	width: 30px;
	height: 30px;
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.cart-list .quantity-btn:hover {
	background-color: var(--dark-blue);
}

.cart-list .remove-item-btn {
	background: none;
	border: none;
	color: var(--red-error);
	font-size: 1em;
	cursor: pointer;
	transition: color 0.2s ease;
	font-weight: 600;
}

.cart-list .remove-item-btn:hover {
	color: #c82333;
}

/* Container and visibility */
#cartPage {
  max-width: 550px;
  margin: 2.6rem auto 3rem auto;
  padding: 2.4rem 1.8rem 2rem 1.8rem;
  background: linear-gradient(145deg, #f4faff 70%, #e1f0fc 100%);
  border-radius: 28px;
  box-shadow:
    0 12px 36px 0 rgba(34, 116, 165, 0.12),
    0 3px 12px rgba(247, 153, 2, 0.22);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #193259;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Heading */
#cartPage h3 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #2274A5;
  letter-spacing: 2px;
  margin: 0 0 1.2rem 0;
  text-shadow: 0 2px 14px #f7990230;
  text-transform: uppercase;
  user-select: text;
  text-align: center;
}

/* Cart Items List container */
#cartItemsList {
  flex-grow: 1;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffffcc;
  border-radius: 18px;
  padding: 1rem 1.3rem;
  box-shadow: inset 0 2px 8px rgb(34 116 165 / 0.15);
  border: 2px solid #F79902;
}

/* Scrollbar styling for cart items list */
#cartItemsList::-webkit-scrollbar {
  width: 8px;
}
#cartItemsList::-webkit-scrollbar-thumb {
  background: #2274A5aa;
  border-radius: 12px;
}
#cartItemsList::-webkit-scrollbar-track {
  background: #f0f7fb;
  border-radius: 12px;
}

/* No items message */
.no-items-message {
  font-size: 1.15rem;
  font-weight: 600;
  color: #F79902;
  text-align: center;
  padding: 1rem 0;
  user-select: none;
}

/* Cart summary */
.cart-summary {
  font-size: 1.37rem;
  font-weight: 900;
  color: #F79902;
  text-align: right;
  padding: 0.6rem 1rem 0.15rem 0;
  border-top: 2px solid #2274A5;
  user-select: text;
  letter-spacing: 1.1px;
  text-shadow: 0 1px 8px #f799022b;
}

.cart-actions {
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}

.cart-actions button {
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.no-items-message {
	text-align: center;
	font-size: 1.1em;
	color: var(--text-light);
	padding: 30px;
}

.checkout-form {
  max-width: 410px;
  margin: 2.8rem auto 2rem auto;
  padding: 2rem 1.6rem 1.6rem 1.6rem;
  background: linear-gradient(120deg, #f8fbff 65%, #e4f2fb 100%);
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 #2274A525, 0 2px 8px #F7990232;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

.checkout-form h4 {
  color: #2274A5;
  font-size: 1.35rem;
  margin-bottom: 1.3em;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 3px 14px #f7990230;
}

.form-group {
  margin-bottom: 1.23rem;
}

.form-group label {
  display: block;
  font-size: 1.03rem;
  font-weight: 700;
  color: #193259;
  letter-spacing: .08em;
  margin-bottom: 0.38rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.72em 1em;
  border: 2px solid #e7eefa;
  border-radius: 18px;
  font-size: 1.08rem;
  font-weight: 600;
  background: #fff;
  color: #2274A5;
  box-shadow: 0 2px 7px #2274A519;
  outline: none;
  transition: 
    border 0.18s, 
    box-shadow 0.22s;
}

.form-group input:focus {
  border-color: #2274A5;
  box-shadow: 0 4px 18px #2274A54A;
  background: #f3faff;
}

/* Place Order Button */
.place-order-btn {
  display: block;
  width: 100%;
  margin: 1.4rem auto 0 auto;
  background: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.95em 0;
  letter-spacing: 1.2px;
  box-shadow: 0 5px 18px #F7990268, 0 2px 8px #2274A540;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s;
}

.place-order-btn:hover,
.place-order-btn:focus-visible {
  background: linear-gradient(80deg, #F79902 5%, #2274A5 120%);
  box-shadow: 0 7px 28px #F79902b2;
  transform: translateY(-2px) scale(1.025);
  outline: none;
}

/* Responsive */
@media (max-width: 480px) {
  .checkout-form {
    max-width: 97vw;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    border-radius: 18px;
  }
  .checkout-form h4 {
    font-size: 1.14rem;
  }
}

.checkout-summary-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	border-top: 1px solid var(--light-grey);
	border-bottom: 1px solid var(--light-grey);
}
.checkout-summary-list li {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.checkout-summary-list li .item-name {
	font-weight: 600;
	color: var(--dark-blue);
}
.checkout-summary-list li .item-total {
	font-weight: 600;
	color: var(--bright-orange);
}
.checkout-total {
	font-size: 1.5em;
	font-weight: 700;
	color: var(--dark-blue);
	text-align: right;
	margin-top: 15px;
}

.place-order-btn {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: var(--bright-orange);
	color: var(--dark-blue);
	border: 2px solid var(--dark-blue);
	border-radius: 5px;
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	margin-top: 25px;
	max-width: 400px; /* Align with input width */
	margin-left: auto;
	margin-right: auto;
}
.place-order-btn:hover {
	background-color: #ff9900;
	transform: translateY(-2px);
}

/* Order Confirmation Specifics */
.order-conf-details {
	text-align: left;
	margin: 30px auto;
	max-width: 500px;
	border: 1px dashed var(--medium-blue);
	padding: 20px;
	border-radius: 8px;
	background-color: #e6f7ff; /* Light blue background */
}
.order-conf-details p {
	margin-bottom: 10px;
}
.order-conf-details strong {
	color: var(--dark-blue);
}
.order-conf-details .print-btn {
	background-color: var(--medium-blue);
	color: var(--white);
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	margin-top: 20px;
	transition: background-color 0.2s ease;
}
.order-conf-details .print-btn:hover {
	background-color: var(--dark-blue);
}

.footer {
  background: linear-gradient(135deg, #2274A5 30%, #F79902 160%);
  color: #fff;
  text-align: center;
  padding: 1.4rem 1rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 6px rgba(255, 255, 255, 0.15),
              0 -4px 12px rgba(247, 153, 2, 0.3);
  user-select: none;
  border-radius: 1.4rem 1.4rem 0 0;
  position: relative;
  z-index: 90;
}

.footer:hover {
  text-shadow:
    0 0 6px #fff,
    0 0 12px #F79902,
    0 0 18px #2274A5;
  transition: text-shadow 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	  .header {
		flex-direction: column;
		align-items: center;
		padding: 1rem 0.5rem 2.7rem 0.5rem;
		border-radius: 0 0 2rem 2rem;
	  }
	  .header h1 {
		font-size: 1.37rem;
		text-align: center;
		letter-spacing: 1px;
		margin-bottom: 0.6em;
	  }
	.footer {
		font-size: 0.88rem;
		letter-spacing: 1px;
		padding: 1rem 0.8rem;
	  }
	  .cart-icon {
		position: fixed;
		bottom: 1.6rem;
		top: auto;
		right: 1.15rem;
		left: auto;
		font-size: 1.04rem;
		padding: 0.5em 1.3em;
		border-radius: 1.6rem 1.8rem 1.8rem 1.6rem;
	  }
	.main-content {
		padding: 20px 15px;
	}
	.content-container {
		padding: 20px;
	}
	.content-container h2 {
		font-size: 1.8em;
	}
	.product-grid {
		grid-template-columns: 1fr;
	}
	.category-filters {
		flex-direction: column;
	}
	
    header.header {
    flex-direction: column;
    gap: 0.45rem;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.1rem 0.5rem 1.2rem 0.5rem;
    text-align: center;
  }

  /* ---- CATEGORY FILTERS: Become dropdown ---- */
  .category-filters {
    display: block;
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    margin: 1.3rem auto 1.8rem auto;
    border-radius: 20px;
    box-shadow: 0 2px 8px #2274A511;
    background: #fff;
    position: relative;
    width: 96%;
    max-width: 520px;
    min-width: 0;
  }

  /* Hide the button pills, show dropdown instead */
  .category-filters button {
    display: none;
  }
	.category-filters select {
	  display: block;
	  width: 100%;
	}
	.category-filters {
	  position: relative;
	}
	
	.cart-list .cart-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.cart-list .item-quantity {
		margin-right: 0;
		width: 100%;
		justify-content: flex-end;
	}
	.checkout-form input[type="text"],
	.checkout-form input[type="email"],
	.place-order-btn {
		width: calc(100% - 20px);
		max-width: none;
	}
	.continue-shopping {
		width: 100%;
	}
	.checkout-btn {
		width: 100%;
	}
	  #cartPage {
		max-width: 95vw;
		padding: 1.5rem 1rem 1.5rem 1rem;
		border-radius: 20px;
	  }
	  #cartPage h3 {
		font-size: 1.55rem;
		letter-spacing: 1.4px;
	  }
	  .cart-summary {
		font-size: 1.2rem;
	  }
}

/* Overlay: dim the background and center modal */
.popup-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30, 34, 53, 0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* Fade-in animation */
  animation: fadeIn 0.25s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Modal Box */
.popup-box {
  background: #fff;
  color: #24243e;
  border-radius: 18px;
  box-shadow: 0 10px 32px 0 rgba(30,34,53,0.25), 0 1.5px 3px rgba(0,0,0,0.07);
  max-width: 400px;
  width: 90%;
  padding: 2.2rem 1.8rem 1.8rem 1.8rem;
  position: relative;
  text-align: center;
  font-family: 'Segoe UI', 'Montserrat', 'Arial', sans-serif;
  animation: modalpop 0.25s;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  text-decoration: none;
  font-size: 2.1rem;
  font-weight: 700;
  color: #8360c3;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 10;
}

.popup-close:hover {
  color: #f12711;
}

/* Title */
#popupTitle {
  margin: 0 0 0.5em 0;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #321777;
}

/* Text */
#popupText {
  font-size: 1.13rem;
  color: #44446b;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 500px) {
  .popup-box {
	max-width: 95vw;
	padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
  .popup-close {
	top: 10px; right: 10px;
	font-size: 1.5rem;
  }
}