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

:root {
	--primary: #6a11cb;
	--secondary: #2575fc;
	--accent: #ff6b6b;
	--dark: #1a1a2e;
	--light: #f8f9fa;
	--mystery-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	--fire-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	overflow-x: hidden;
	background: var(--dark);
}

html {
	scroll-behavior: smooth;
}

.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(45deg, #a8a8e6, #8c66e4, #8db4f7, #ceceee);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.navbar {
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(20px);
	padding: 1rem 0;
	box-shadow: 0 5px 30px rgba(106, 17, 203, 0.3);
	border-bottom: 2px solid rgba(106, 17, 203, 0.2);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: transform 0.3s;
}

.navbar-brand:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: 45px;
	height: 45px;
	background: var(--mystery-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: white;
	box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(7px); /* down */
	}
	100% {
		transform: translateY(0);
	}
}


.brand-text .brand-name {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}

.brand-text .slogan {
	font-size: 0.7rem;
	color: var(--accent);
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
}

.nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 600;
	padding: 0.5rem 1rem !important;
	position: relative;
	transition: all 0.3s;
	font-size: 0.95rem;
}

.nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--fire-gradient);
	transform: translateX(-50%);
	transition: width 0.3s;
	border-radius: 2px;
}

.nav-link:hover::before {
	width: 80%;
}

.nav-link:hover {
	color: white !important;
	text-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
}

.nav-actions {
	flex-wrap: wrap;
	justify-content: center;
}

.language-selector {
	display: flex;
	gap: 0.4rem;
	background: rgba(106, 17, 203, 0.2);
	padding: 0.3rem;
	border-radius: 20px;
	border: 1px solid rgba(106, 17, 203, 0.3);
}

.lang-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.35rem 0.8rem;
	border-radius: 15px;
	cursor: pointer;
	font-weight: 700;
	transition: all 0.3s;
	font-size: 0.85rem;
}

.lang-btn:hover,
.lang-btn.active {
	background: var(--mystery-gradient);
	color: white;
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
}

.social-links {
	display: flex;
	gap: 0.6rem;
}

.social-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #9333ea, #a855f7);
	color: rgb(249, 250, 248);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s;
	border: 1px solid rgba(106, 17, 203, 0.3);
	font-size: 0.9rem;
}

.social-icon:hover {
	background: var(--fire-gradient);
	transform: translateY(-3px) rotate(10deg);
	box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

.mystery-box-icon {
	font-size: 15rem;
	background: var(--mystery-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: pulse 2s ease-in-out infinite;
	filter: drop-shadow(0 10px 30px rgba(106, 17, 203, 0.5));
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.hero-content {
	color: white;
}

.hero-title {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.35;
	margin-bottom: 1.5rem;
	padding-bottom: 0.1em;
	display: inline-block;

	background: linear-gradient(135deg, #675a8b, #12298f, #872292);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	animation: slideInUp 1s ease;
}


.hero-subtitle {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	animation: slideInUp 1s ease 0.2s backwards;
	font-weight: 300;
}

.btn-mystery {
	padding: 1.1rem 3rem;
	font-size: 1.1rem;
	font-weight: 700;
	background: var(--mystery-gradient);
	border: none;
	color: white;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	box-shadow: 0 15px 40px rgba(106, 17, 203, 0.4);
	animation: slideInUp 1s ease 0.4s backwards;
}

.btn-mystery:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 20px 50px rgba(106, 17, 203, 0.6);
	color: white;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section {
	padding: 5rem 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 3rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	margin-top: 30px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	border-radius: 3px;
	padding-top: 30px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
}

#Gallery {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.gallery-card {
	position: relative;
	height: 400px;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 20px 60px rgba(106, 17, 203, 0.5);
}

.gallery-img {
	width: 100%;
	height: 100%;
	transition: transform 0.4s;
}

.gallery-card:hover .gallery-img {
	transform: scale(1.15);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	color: white;
	padding: 2rem;
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.4s;
	z-index: 2;
}

.gallery-card:hover .gallery-overlay {
	transform: translateY(0);
	opacity: 1;
}

.gallery-overlay h5 {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 0.6rem;
}

.gallery-overlay p {
	font-size: 0.95rem;
	opacity: 0.9;
}

.gallery-overlay .price {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--accent);
	margin-top: 0.5rem;
}

.carousel-control-prev,
.carousel-control-next {
	width: 50px;
	height: 50px;
	background: var(--mystery-gradient);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.8;
	transition: all 0.3s;
}

.carousel-control-next {
	right: 10px; /* inward */
}

.carousel-control-prev {
	left: 10px;  /* inward */
}


.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
}

.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 6px;
	background: var(--mystery-gradient);
}

#Order {
	background: rgba(106, 17, 203, 0.05);
}

.order-form {
	/* background: url("https://www.oztrail.com.au/cdn/shop/collections/OZT_-_Black_Friday_-_Mega_Sale_-_Website_Banner_1920_x_500_6_0b95fccf-15cf-4f09-9727-a05d50a2f807.png?v=1733896450") no-repeat center center fixed; */
	background-size: cover;
	background: rgba(44, 44, 131, 0.9);
	backdrop-filter: blur(20px);
	padding: 3rem;
		margin-top: 100px;

	border-radius: 25px;
	box-shadow: 0 20px 60px rgba(106, 17, 203, 0.3);
	border: 2px solid rgba(106, 17, 203, 0.2);
}

/* === Inputs, selects, textarea hover === */
.order-form .form-control:hover,
.order-form .form-select:hover,
.order-form textarea:hover {
	border-color: #9333ea; /* brighter purple */
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
	transform: translateY(-1px);
}

/* === Gender and Delivery option hover === */
.gender-option:hover,
.delivery-option:hover {
	background: rgba(147, 51, 234, 0.1); /* subtle purple tint */
	border-color: #9333ea;
	box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25); /* soft glow */
	transform: translateY(-2px);
}

/* Smooth transition for hover effects */
.gender-option,
.delivery-option {
	transition: all 0.3s ease;
}

/* Optional: make text/icons more vivid on hover */
.gender-option:hover i,
.gender-option:hover span,
.delivery-option:hover strong,
.delivery-option:hover span {
	color: #f5f5ff; /* brighter text color */
}



.form-label {
	color: white;
	font-weight: 700;
	margin-bottom: 0.7rem;
	font-size: 0.95rem;
}

.form-control,
.form-select {
	background: rgba(255, 255, 255, 0.1);
	border: 3px solid rgba(106, 17, 203, 0.3);
	border-radius: 12px;
	padding: 0.9rem 1.2rem;
	color: white;
	transition: all 0.3s;
	font-size: 0.95rem;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-control:focus,
.form-select:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--accent);
	box-shadow: 0 0 0 0.3rem rgba(255, 107, 107, 0.25);
	color: white;
}

.form-select option {
	background: var(--dark);
	color: white;
}

.gender-selector {
    display: flex;
    gap: 1rem;
}

.gender-selector input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Show focus outline on label when radio is focused */
.gender-selector input[type="radio"]:focus + label.gender-option {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Show checked state */
.gender-selector input[type="radio"]:checked + label.gender-option {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.gender-option {
	flex: 1;
	padding: 1.2rem;
	border: 2px solid rgba(106, 17, 203, 0.3);
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 700;
	color: white;
	background: rgba(255, 255, 255, 0.05);
}


.gender-option i {
	display: block;
	font-size: 2rem;
	margin-bottom: 0.6rem;
}

/* Male - Blue */
.gender-selector input[type="radio"]#male:checked + .gender-option {
	background: linear-gradient(135deg, #2575fc 0%, #4a90e2 100%);
	border-color: transparent;
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
}

/* Female - Light Red/Pink */
.gender-selector input[type="radio"]#female:checked + .gender-option {
	background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
	border-color: transparent;
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.delivery-options {
    display: flex;
    gap: 1rem;
}

.delivery-options input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Show focus outline on label when radio is focused */
.delivery-options input[type="radio"]:focus + label.delivery-option {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Show checked state */
.delivery-options input[type="radio"]:checked + label.delivery-option {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.delivery-option {
	flex: 1;
	padding: 1.5rem;
	border: 2px solid rgba(106, 17, 203, 0.3);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	background: rgba(255, 255, 255, 0.05);
	color: white;
}

.delivery-option i {
	font-size: 2.5rem;
	color: var(--accent);
}

.delivery-option strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
}

.delivery-option span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

/* Standard - Gray */
.delivery-options input[type="radio"]#standard:checked + .delivery-option {
	background: linear-gradient(135deg, #075eaa 0%, #8a9199 100%);
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(18, 131, 230, 0.4);
}

/* Expedited - Red/Pink */
.delivery-options input[type="radio"]#expedited:checked + .delivery-option {
	background: var(--fire-gradient);
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

.delivery-options input[type="radio"]:checked + .delivery-option i,
.delivery-options input[type="radio"]:checked + .delivery-option span {
	color: white;
}

.price-display {
	background: var(--mystery-gradient);
	padding: 1.8rem;
	border-radius: 20px;
	text-align: center;
	margin-top: 1.5rem;
	box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
}

.price-display h4 {
	color: white;
	font-weight: 800;
	margin-bottom: 0.8rem;
	font-size: 1.3rem;
}

.price-display .total-price {
	font-size: 2.5rem;
	color: white;
	font-weight: 900;
}

/* ── Voucher label ── */
.section-label {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

/* ── Input pill wrapper ── */
.voucher-input-group {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.08) inset;
  transition: border-color .22s, box-shadow .22s;
}
.voucher-input-group:focus-within {
  border-color: #7c5cfc;
  box-shadow: 0 0 0 3.5px rgba(124,92,252,0.22), 0 8px 28px rgba(0,0,0,0.32);
}

/* ── Left emoji shelf ── */
.voucher-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 52px;
  font-size: 19px;
  border-right: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  transition: background .2s;
}
.voucher-input-group:focus-within .voucher-prefix {
  background: rgba(255,255,255,0.12);
}

/* ── Text input ── */
.voucher-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  height: 52px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  cursor: text;
}
.voucher-field:focus {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
}
.voucher-field::placeholder {
  color: rgba(255,255,255,0.60);
  -webkit-text-fill-color: rgba(255,255,255,0.60);
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* ── Right icon slot ── */
#voucherIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 52px;
  pointer-events: none;
}

/* ── Feedback line ── */
#voucherFeedback {
  min-height: 20px;
  margin-top: 8px;
  padding-left: 4px;
  font-size: 16.5px;
  font-weight: 700;
  color: #f72585;
}
#voucherFeedback.valid   { color: #3dd68c; }
#voucherFeedback.invalid { color: #f72585; }

/* ── Discount badge ── */
#voucherBadge:not(:empty) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 14px 5px 10px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #3dd68c;
  background: linear-gradient(120deg, rgba(61,214,140,0.15), rgba(74,108,247,0.09));
  border: 1px solid rgba(61,214,140,0.32);
  box-shadow: 0 0 16px rgba(61,214,140,0.12);
  animation: badgePop .38s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badgePop {
  from { transform: scale(.6) translateY(4px); opacity: 0; }
  to   { transform: scale(1)  translateY(0);   opacity: 1; }
}

/* ══════════════════════════════════════════
   PRICE DISPLAY
══════════════════════════════════════════ */
.price-display {
  position: relative;
  overflow: hidden;
  padding: 30px 28px 26px;
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(145deg,
    rgba(74,108,247,0.28) 0%,
    rgba(124,92,252,0.32) 52%,
    rgba(247,37,133,0.16) 100%
  );
  border: 1.5px solid rgba(124,92,252,0.30);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 70px rgba(124,92,252,0.10);
}

/* Ambient orbs */
.price-display::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.price-display::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,108,247,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.price-display h4 {
  position: relative; z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 10px;
}

.total-price {
  position: relative; z-index: 1;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 0 48px rgba(124,92,252,0.45);
  transition: font-size .28s, color .28s;
}

/* Add class .is-discounted via your existing JS */
.total-price.is-discounted {
  font-size: 26px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  text-shadow: none;
}

#voucherSavingLine {
  position: relative; z-index: 1;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #3dd68c;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s, transform .28s;
}
#voucherSavingLine:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

#finalPriceAfterVoucher {
  position: relative; z-index: 1;
  margin-top: 4px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #3dd68c;
  text-shadow: 0 0 32px rgba(61,214,140,0.38);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .32s .10s, transform .32s .10s;
}
#finalPriceAfterVoucher:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}


/* === Submit Button Base Style === */
.btn-submit {
	background: linear-gradient(135deg, #9333ea, #a855f7); /* purple gradient */
	color: white;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.9rem 1.5rem;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

/* Hover Effect */
.btn-submit:hover {
	background: linear-gradient(135deg, #a855f7, #9333ea); /* reverse gradient */
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(147, 51, 234, 0.4);
}

/* Active / Click Effect */
.btn-submit:active {
	transform: translateY(1px);
	background: rgb(96, 236, 96);
}


.gift-list {
    margin-top: 20px;
}

.gift-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.gift-item strong {
    font-size: 1rem;
}

.remove-gift {
    background: transparent;
    border: none;
    color: #ff6b6b;
    font-size: 18px;
    cursor: pointer;
}


@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}




.step-indicator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.step-progress {
    background: rgba(255,255,255,0.2);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.step-progress-bar {
    background: white;
    height: 100%;
    transition: width 0.3s ease;
}

.step-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.step-counter {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.is-invalid {
    border-color: #dc3545 !important;
    animation: shake 0.3s;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}





/* ============================================
   MULTI-GIFT ORDER SYSTEM - CSS
   ============================================ */

/* =========================
   SUCCESS MODAL STYLES
========================= */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.order-modal-content {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
    text-align: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.modal-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.order-summary {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.order-summary h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.order-summary p {
    margin-bottom: 10px;
    font-size: 16px;
}

.order-link-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.order-link-container p {
    margin-bottom: 10px;
}

.link-display {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    word-break: break-all;
}

.link-display a {
    color: #667eea;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.link-hint {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}

.btn-copy {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-contact {
    margin: 25px 0;
    font-size: 16px;
}

.btn-modal-close {
    background: white;
    color: #667eea;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =========================
   GIFT LIST STYLES
========================= */
.gift-list {
    margin: 20px 0;
}

.gift-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideInGift 0.3s ease-out;
    transition: transform 0.2s;
}

.gift-item:hover {
    transform: translateX(5px);
}

@keyframes slideInGift {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.gift-item-content {
    flex: 1;
}

.gift-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.gift-item-header strong {
    font-size: 18px;
}

.gift-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.gift-item-details p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.95;
}

.gift-item-details strong {
    opacity: 1;
    font-weight: 600;
}

.remove-gift {
    background: rgba(220, 53, 69, 0.8);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-gift:hover {
    background: #dc3545;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* =========================
   FORM VALIDATION STYLES
========================= */
.is-invalid {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.invalid-feedback {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* =========================
   PRICE DISPLAY
========================= */
.price-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.price-display h4 {
    margin-bottom: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.total-price {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

/* =========================
   BUTTON STYLES
========================= */
.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#addGiftBtn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
	transform: translateY(30px);
}

#addGiftBtn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* =========================
   NOTIFICATION ANIMATIONS
========================= */
@keyframes slideInNotif {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutNotif {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

@keyframes slideInGift {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
    .order-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-icon {
        font-size: 60px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-subtitle {
        font-size: 16px;
    }
    
    .link-display a {
        font-size: 12px;
    }
    
	.gift-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
		padding: 20px;
		border-radius: 12px;
		margin-bottom: 15px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.2);
		animation: slideInGift 0.3s ease-out;
	}	
    
    .remove-gift {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        border-radius: 8px;
    }
    
    .gift-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .total-price {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .btn-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    #addGiftBtn {
        width: 100%;
    }
}

/* =========================
   CUSTOM CHECKBOX (for orderingForMyself)
========================= */
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox-input {
    display: none;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border: 2px solid #667eea;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: white;
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkbox-box {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-tick {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
    color: white;
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkbox-tick {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    color: #333;
}

/* =========================
   LOADING SPINNER
========================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

/* =========================
   FADE EFFECTS
========================= */
.fade-out {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s;
}

.fade-in {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s;
}

/* =========================
   SCROLLBAR CUSTOMIZATION
========================= */
.order-modal-content::-webkit-scrollbar {
    width: 8px;
}

.order-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.order-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.order-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* ===================================
   REFINED GIFT LIST - CSS ONLY
   Just add this CSS, no JS changes needed!
   Keeps your purple gradient background
=================================== */

/* Gift List Container */
.gift-list {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Gift Item Card - KEEPS YOUR PURPLE GRADIENT */
.gift-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gift-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Gift Info Section */
.gift-info {
    flex: 1;
    color: white;
    font-size: 14px;
    line-height: 1.7;
}

.gift-info strong {
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.gift-info > * {
    opacity: 0.95;
}

/* Gift Controls Section */
.gift-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* ===================================
   QUANTITY CONTROL - REFINED BUTTONS
=================================== */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.qty-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.qty-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Active (click) effect */
.qty-btn:active:not(:disabled) {
    transform: scale(0.95);
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Disabled state */
.qty-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

/* Quantity Display */
.qty-display {
    min-width: 32px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    user-select: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0 4px;
}

/* ===================================
   REMOVE BUTTON - REFINED
=================================== */
.remove-gift {
    padding: 10px 18px;
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 
        0 3px 10px rgba(239, 68, 68, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-transform: none;
    letter-spacing: 0;
}

.remove-gift:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 6px 16px rgba(239, 68, 68, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.remove-gift:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 2px 6px rgba(239, 68, 68, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.remove-gift i {
    font-size: 12px;
}

/* ===================================
   ANIMATIONS
=================================== */

/* Slide in animation for new gifts */
@keyframes giftSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gift-item {
    animation: giftSlideIn 0.4s ease-out;
}

/* Empty State */
.gift-list:empty::before {
    content: "დამატებული საჩუქრები გამოჩნდება აქ";
    display: block;
    text-align: center;
    padding: 40px 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(102, 126, 234, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 768px) {
    .gift-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 16px;
    }
    
    .gift-info {
        width: 100%;
    }
    
    .gift-controls {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .quantity-control {
        padding: 8px 14px;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .qty-display {
        font-size: 20px;
        min-width: 36px;
    }
    
    .remove-gift {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .gift-item {
        padding: 14px;
    }
    
    .gift-info {
        font-size: 13px;
    }
    
    .gift-info strong {
        font-size: 15px;
    }
    
    .qty-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
}

/* ===================================
   FOCUS STATES (Accessibility)
=================================== */
.qty-btn:focus,
.remove-gift:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.qty-btn:focus:not(:focus-visible),
.remove-gift:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   LOADING STATE (Optional)
=================================== */
.gift-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.gift-item.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ===================================
   PRINT STYLES (Optional)
=================================== */
@media print {
    .gift-item {
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .qty-btn,
    .remove-gift {
        display: none;
    }
}







#Contact {
	background: rgba(0, 0, 0, 0.3);
}

.contact-card {
	background: rgba(26, 26, 46, 0.9);
	backdrop-filter: blur(20px);
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid rgba(106, 17, 203, 0.2);
	height: 100%;
	color: white;
}

.contact-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(106, 17, 203, 0.4);
	border-color: var(--accent);
}

.contact-card i {
	font-size: 3.5rem;
	background: var(--mystery-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1.2rem;
	display: block;
}

.contact-card h5 {
	font-weight: 800;
	margin-bottom: 0.8rem;
	font-size: 1.3rem;
}

.contact-card p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.8;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

/* Hover effect */
.contact-info a:hover {
	color: var(--accent);
	transform: translateY(-2px); /* subtle lift */
}

.contact-info a i {
	font-size: 14px;
	transition: color 0.3s ease;
}


#FAQ {
	background: rgba(106, 17, 203, 0.05);
}

.accordion-item {
	background: rgba(26, 26, 46, 0.9);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(106, 17, 203, 0.2);
	margin-bottom: 1.2rem;
	border-radius: 15px !important;
	overflow: hidden;
}

.accordion-button {
	background: rgba(106, 17, 203, 0.2);
	color: white;
	font-weight: 700;
	padding: 1.5rem;
	font-size: 1.1rem;
	border: none;
}

.accordion-button:not(.collapsed) {
	background: var(--mystery-gradient);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border: none;
}

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

.accordion-body {
	padding: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.3);
	font-size: 1rem;
	line-height: 1.8;
}

/* Accordion item base */
.accordion-item {
	background: rgba(26, 26, 46, 0.9);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(106, 17, 203, 0.2);
	margin-bottom: 1.2rem;
	border-radius: 15px !important;
	overflow: hidden;
	transition: all 0.4s ease;
}

/* Hover: glow, scale, animated gradient border */
.accordion-item:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 40px rgba(106, 17, 203, 0.5), 0 0 20px rgba(37, 117, 252, 0.3);
}


/* Accordion button base */
.accordion-button {
	background: rgba(106, 17, 203, 0.2);
	color: white;
	font-weight: 700;
	padding: 1.5rem;
	font-size: 1.1rem;
	border: none;
	transition: all 0.4s ease;
}

/* Button hover: gradient background + glow */
.accordion-button:hover {
	background: linear-gradient(135deg, #6a11cb, #2575fc, #6a11cb);
	color: #fff;
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(106, 17, 203, 0.5), 0 0 15px rgba(37, 117, 252, 0.4);
}

/* Optional: Accordion body hover */
.accordion-body {
	padding: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.3);
	font-size: 1rem;
	line-height: 1.8;
	transition: background 0.4s ease;
}

.accordion-body:hover {
	background: rgba(0, 0, 0, 0.45);
}

/* Optional: arrow rotation (if using Bootstrap accordion) */
.accordion-button::after {
	transition: transform 0.4s ease;
}

.accordion-button.collapsed::after {
	transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
}



#About {
	background: rgba(106, 17, 203, 0.05);
}

.about-content {
	background: rgba(26, 26, 46, 0.9);
	backdrop-filter: blur(20px);
	padding: 3.5rem;
	border-radius: 25px;
	border: 2px solid rgba(106, 17, 203, 0.2);
	color: white;

	/* 👇 CENTER IT */
	max-width: 900px;
	margin: 0 auto;
}


.about-content p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
}

.footer {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px);
	color: white;
	padding: 4rem 0 2rem;
	border-top: 2px solid rgba(106, 17, 203, 0.3);
}

.footer-title {
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--accent);
	font-size: 1.3rem;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s;
	font-size: 1rem;
}

.footer-links a:hover {
	color: var(--accent);
	padding-left: 8px;
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 1rem;
}

.form-check-input {
	width: 1.3rem;
	height: 1.3rem;
	border: 2px solid rgba(106, 17, 203, 0.5);
	background: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 4px;
}

.form-check-input:checked {
	background: #10b981;
	border-color: #10b981;
}

.form-check-input:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 1.3rem;
	font-weight: bold;
}

.form-check-label {
	color: rgba(255, 255, 255, 0.9);
	margin-left: 0.5rem;
}

.form-check-label a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 700;
}

.form-check-label a:hover {
	text-decoration: underline;
}

.modal {
	z-index: 9999;
}

.modal-content {
	background: rgba(26, 26, 46, 0.98);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(106, 17, 203, 0.3);
	border-radius: 20px;
	color: white;
}

.modal-header {
	border-bottom: 2px solid rgba(106, 17, 203, 0.2);
	padding: 1.5rem;
}

.modal-title {
	background: var(--mystery-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	font-size: 1.2rem;
}

.modal-body {
	padding: 2rem;
	max-height: 70vh;
	overflow-y: auto;
}

.modal-body h4 {
	color: var(--accent);
	font-weight: 800;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.modal-body h4:first-child {
	margin-top: 0;
}

.modal-body p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	font-size: 1rem;
}

.btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transform: translateY(-2px);
}

.btn-close:hover {
	opacity: 1;
}


.custom-checkbox-wrapper {
	position: relative;
}

.custom-checkbox-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.custom-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	padding: 16px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.custom-checkbox-label::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.custom-checkbox-label:hover::before {
	left: 100%;
}

.custom-checkbox-label:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

.checkbox-box {
	position: relative;
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	margin-right: 14px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkbox-box {
	background: #fff;
	border-color: #fff;
	transform: rotate(360deg) scale(1.1);
}

.checkbox-tick {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 18px;
	height: 18px;
	color: #667eea;
	transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-checkbox-input:checked + .custom-checkbox-label .checkbox-tick {
	transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.3px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-checkbox-input:checked + .custom-checkbox-label {
	background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	box-shadow: 0 12px 28px rgba(56, 239, 125, 0.4);
}

/* Animation for focus accessibility */
.custom-checkbox-input:focus + .custom-checkbox-label {
	outline: 3px solid rgba(255, 255, 255, 0.5);
	outline-offset: 2px;
}

.box-type-switch {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.box-btn {
	padding: 12px 24px;
	border-radius: 30px;
	border: 2px solid #6f42c1;
	background: transparent;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s ease;
}

.box-btn:hover {
	background: rgba(111,66,193,0.2);
}

.box-btn.active {
	background: linear-gradient(135deg, #6f42c1, #8f5cff);
	box-shadow: 0 10px 25px rgba(111,66,193,0.4);
}



.step-indicator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-progress {
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.step-progress-bar {
    height: 100%;
    background: white;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.step-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.step-counter {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

@keyframes slideDown {
    from { 
        transform: translateY(-20px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.order-title {
	text-align: center;
	font-size: 2.3rem;
	font-weight: 900;
	margin-bottom: 30px;
	color: #ffffff;
	letter-spacing: 0.04em;

	/* Glow */
	text-shadow:
		0 0 6px rgba(255, 255, 255, 0.35),
		0 0 18px rgba(155, 107, 255, 0.45),
		0 0 30px rgba(111, 66, 193, 0.35);

	/* Animation */
	animation: floatTitle 4s ease-in-out infinite;

	/* Smooth transitions */
	transition: 
		opacity 0.35s ease,
		transform 0.35s ease,
		text-shadow 0.35s ease;
}

/* Fade effect when switching */
.order-title.fade-out {
	opacity: 0;
	transform: translateY(-12px) scale(0.96);
}

/* Subtle hover polish */
.order-title:hover {
	text-shadow:
		0 0 10px rgba(255, 255, 255, 0.6),
		0 0 28px rgba(155, 107, 255, 0.8),
		0 0 45px rgba(111, 66, 193, 0.6);
	transform: translateY(-3px) scale(1.03);
}

/* Floating animation */
@keyframes floatTitle {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(-6px); }
	100% { transform: translateY(0); }
}

#goTopBtn {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 999;
	border: none;
	outline: none;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: none;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	overflow: hidden;
}

#goTopBtn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

#goTopBtn:hover::before {
	opacity: 1;
}

#goTopBtn:hover {
	transform: translateY(-8px) scale(1.1);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
}

#goTopBtn:active {
	transform: translateY(-4px) scale(1.05);
}

#goTopBtn svg {
	position: relative;
	z-index: 1;
	display: block;
	margin: auto;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}




@media (max-width: 1199px) {
	.nav-link {
		padding: 0.4rem 0.8rem !important;
		font-size: 0.9rem;
	}
}

@media (max-width: 991px) {
	.navbar {
		padding: 0.8rem 0;
	}
	
	.logo-icon {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
	}
	
	.brand-text .brand-name {
		font-size: 1.3rem;
	}
	
	.brand-text .slogan {
		font-size: 0.65rem;
	}
	
	.navbar-collapse {
		background: rgba(26, 26, 46, 0.98);
		margin-top: 1rem;
		padding: 1rem;
		border-radius: 15px;
	}
	
	.navbar-nav {
		margin-bottom: 1rem;
	}
	
	.nav-actions {
		justify-content: center;
		gap: 1rem !important;
	}
	
	.social-links {
		display: flex !important;
	}
	
	.hero-title {
		font-size: 3rem;
	}
	
	.hero-subtitle {
		font-size: 1.3rem;
	}
	
	.mystery-box-icon {
		font-size: 10rem;
	}
	
	.section-title {
		font-size: 2.5rem;
	}
	
	.section-subtitle {
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding-top: 120px;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.mystery-box-icon {
		font-size: 8rem;
	}
	
	.btn-mystery {
		padding: 1rem 2.5rem;
		font-size: 1rem;
	}
	
	.section-title {
		font-size: 2.2rem;
	}
	
	.section-subtitle {
		font-size: 1rem;
	}
	
	.order-form {
		padding: 2rem;
	}
	
	.gallery-card {
		height: 300px;
	}
	
	.delivery-options,
	.gender-selector {
		flex-direction: column;
	}
	
	.about-content {
		padding: 2.5rem;
	}
	
	.modal-body {
		padding: 1.5rem;
	}
}

/* Mobile responsive */
@media (max-width: 576px) {
    .box-btn {
        flex: 1 1 80%;
        max-width: 800%;
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
    }
    
    .box-type-switch {
        gap: 0.5rem;
		padding-top: 15px;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .box-btn {
        min-width: 200px;
    }
}

@media (max-width: 576px) {
	section {
		padding: 3rem 0;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.mystery-box-icon {
		font-size: 6rem;
	}
	
	.btn-mystery {
		padding: 0.9rem 2rem;
		font-size: 0.95rem;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.section-subtitle {
		font-size: 0.95rem;
	}
	
	.order-form {
		padding: 1.5rem;
	}
	
	.gallery-card {
		height: 250px;
	}
	
	.about-content {
		padding: 2rem;
	}
	
	.footer {
		padding: 3rem 0 1.5rem;
	}
	
	.social-icon {
		width: 32px;
		height: 32px;
		font-size: 0.85rem;
	}
	
	.lang-btn {
		padding: 0.3rem 0.7rem;
		font-size: 0.8rem;
	}
}

.rates img {
	box-shadow: 0 0 2px black;
	filter: invert(90%);
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.rates img:hover {
	box-shadow: 0 0 6px gray;
	filter: invert(15%);
}