@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=JetBrains+Mono:wght@300;400;500;700&display=swap');

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-green: #1a3b2e;
	--primary-green-dark: #0f2a1f;
	--primary-green-light: #2d5a3a;
	--accent-gold: #c4a77d;
	--accent-gold-dark: #b18b5a;
	--text-dark: #1e2e1e;
	--text-light: #4a5a4a;
	--bg-light: #f4f7f2;
	--white: #ffffff;
	--border-light: #e8e8e8;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
	--font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Space Mono', 'Courier New', monospace;
}

body {
	font-family: var(--font-mono);
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-light);
	font-weight: 450;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	width: 100%;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Navigation */
.navbar {
	background-color: var(--primary-green);
	padding: 0.8rem 0;
	box-shadow: var(--shadow-md);
	border-bottom: 2px solid var(--accent-gold);
	width: 100%;
}

.nav-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo {
	color: var(--white);
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
}

@media (min-width: 768px) {
	.logo {
		font-size: 1.5rem;
	}
}

.logo:hover {
	color: var(--accent-gold);
	transform: scale(1.02);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 0.25rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

@media (min-width: 768px) {
	.nav-menu {
		gap: 0.5rem;
	}
}

.nav-item {
	position: relative;
}

.nav-link {
	color: var(--white);
	text-decoration: none;
	padding: 0.4rem 0.8rem;
	display: block;
	transition: all 0.2s ease;
	border-radius: 6px;
	font-weight: 500;
	letter-spacing: -0.01em;
	position: relative;
	overflow: hidden;
	font-size: 0.9rem;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.nav-link {
		padding: 0.5rem 1.2rem;
		font-size: 1rem;
	}
}

.nav-link:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Dropdown indicator */
.nav-link.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 3px;
}

@media (min-width: 768px) {
	.nav-link.dropdown-toggle {
		gap: 5px;
	}
}

.nav-link.dropdown-toggle::after {
	content: "▼";
	font-size: 0.6rem;
	transition: transform 0.2s ease;
}

@media (min-width: 768px) {
	.nav-link.dropdown-toggle::after {
		font-size: 0.7rem;
	}
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
	transform: rotate(180deg);
}

/* Cart Link */
.cart-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

@media (min-width: 768px) {
	.cart-link {
		gap: 6px;
	}
}

.cart-link::after {
	content: attr(data-count);
	position: absolute;
	top: -2px;
	right: -2px;
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	font-size: 0.6rem;
	font-weight: 650;
	min-width: 16px;
	height: 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
	border: 1.5px solid var(--primary-green);
	transition: all 0.2s ease;
}

@media (min-width: 768px) {
	.cart-link::after {
		font-size: 0.65rem;
		min-width: 18px;
		height: 18px;
		border-radius: 9px;
		padding: 0 4px;
	}
}

.cart-link:hover::after {
	background-color: var(--white);
	border-color: var(--accent-gold);
	transform: scale(1.1);
}

.cart-link[data-count="0"]::after {
	display: none;
}

/* Dropdown Menu */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	min-width: 200px;
	border-radius: 0 0 12px 12px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 1000;
	list-style: none;
	border: 2px solid var(--accent-gold);
	border-top: none;
	overflow: hidden;
	margin-top: 0;
	padding: 8px 0;
	transform: translateY(-5px);
}

@media (min-width: 768px) {
	.dropdown-menu {
		min-width: 240px;
	}
}

/* Hover bridge */
.nav-item.dropdown {
	padding-bottom: 10px;
	margin-bottom: -10px;
}

@media (min-width: 768px) {
	.nav-item.dropdown {
		padding-bottom: 15px;
		margin-bottom: -15px;
	}
}

.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu:hover {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.dropdown-item {
	color: var(--primary-green);
	text-decoration: none;
	padding: 0.7rem 1.2rem;
	display: block;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
	font-weight: 500;
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.dropdown-item {
		padding: 0.8rem 1.5rem;
		font-size: 0.95rem;
	}
}

.dropdown-item:not(:last-child) {
	border-bottom: 1px solid var(--border-light);
}

.dropdown-item:hover {
	background-color: var(--bg-light);
	color: var(--primary-green-dark);
	padding-left: 1.5rem;
	border-left: 3px solid var(--accent-gold);
	font-weight: 600;
}

@media (min-width: 768px) {
	.dropdown-item:hover {
		padding-left: 2rem;
	}
}

.dropdown-item.active {
	background-color: var(--bg-light);
	border-left: 3px solid var(--primary-green);
	font-weight: 600;
}

/* Main Content */
main {
	min-height: calc(100vh - 160px);
	padding: 1.5rem 0;
}

@media (min-width: 768px) {
	main {
		padding: 2.5rem 0;
	}
}

h1 {
	margin-bottom: 1.5rem;
	color: var(--primary-green-dark);
	font-size: 1.8rem;
	border-bottom: 2px solid var(--accent-gold);
	padding-bottom: 0.5rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	word-wrap: break-word;
}

@media (min-width: 768px) {
	h1 {
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
}

h2 {
	color: var(--primary-green);
	font-weight: 650;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
	font-size: 1.3rem;
	word-wrap: break-word;
}

@media (min-width: 768px) {
	h2 {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}
}

h3 {
	color: var(--primary-green);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	word-wrap: break-word;
}

@media (min-width: 768px) {
	h3 {
		font-size: 1.2rem;
		margin-bottom: 0.75rem;
	}
}

p {
	margin-bottom: 1rem;
	color: var(--text-light);
	font-weight: 450;
	font-size: 0.95rem;
	word-wrap: break-word;
}

@media (min-width: 768px) {
	p {
		margin-bottom: 1.5rem;
		font-size: 1rem;
	}
}

/* Page Content Styles */
.page-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 1rem 20px 3rem;
}

@media (min-width: 768px) {
	.page-content {
		padding: 2rem 20px 4rem;
	}
}

.page-content h1 {
	margin-bottom: 2.5rem;
	font-size: 2.2rem;
}

@media (min-width: 768px) {
	.page-content h1 {
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}
}

.page-content h2 {
	color: var(--primary-green-dark);
	font-size: 1.8rem;
	margin: 2.5rem 0 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 0.75rem;
}

.page-content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
	border-radius: 2px;
}

.page-content h3 {
	color: var(--primary-green);
	font-size: 1.3rem;
	margin: 1.5rem 0 0.75rem;
}

.page-content p {
	margin-bottom: 1.2rem;
	line-height: 1.8;
	color: var(--text-light);
}

.page-content ul,
.page-content ol {
	margin: 1rem 0 1.5rem 2rem;
	color: var(--text-light);
}

.page-content li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* FAQ Section */
.faq-section {
	margin-bottom: 3rem;
	background: var(--white);
	border-radius: 24px;
	padding: 2rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
	.faq-section {
		margin-bottom: 4rem;
		padding: 2.5rem;
	}
}

.faq-section h2 {
	color: var(--primary-green-dark);
	font-size: 1.8rem;
	margin: 0 0 2rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.faq-section h2 {
		font-size: 2rem;
		margin: 0 0 2.5rem 0;
	}
}

.faq-section h2::after {
	display: none;
}

.faq-item {
	background: var(--bg-light);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1.25rem;
	border: 1px solid var(--border-light);
	transition: all 0.3s ease;
}

@media (min-width: 768px) {
	.faq-item {
		padding: 2rem;
		margin-bottom: 1.5rem;
	}
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent-gold);
	background: var(--white);
}

.faq-item h3 {
	color: var(--primary-green-dark);
	font-size: 1.2rem;
	margin: 0 0 1rem 0;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (min-width: 768px) {
	.faq-item h3 {
		font-size: 1.3rem;
		margin: 0 0 1.25rem 0;
	}
}

.faq-item h3::before {
	content: "Q:";
	color: var(--accent-gold);
	font-weight: 700;
	font-size: 1.1rem;
	background: var(--white);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.faq-item h3::before {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}
}

.faq-item p {
	color: var(--text-light);
	line-height: 1.8;
	margin: 0;
	padding-left: 0;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.faq-item p {
		font-size: 1rem;
		padding-left: 45px;
	}
}

.faq-item p::before {
	content: "A:";
	color: var(--primary-green);
	font-weight: 600;
	margin-right: 10px;
	font-size: 1rem;
	display: inline-block;
}

@media (min-width: 768px) {
	.faq-item p::before {
		display: none;
	}
}

/* Category Grid */
.category-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

@media (min-width: 640px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.category-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}
}

/* Product Card */
.category-card {
	background: var(--white);
	border: 1px solid var(--accent-gold);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s ease;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-green);
}

/* Product Image */
.product-image {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--bg-light) 0%, #d4e0cc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.product-image {
		height: 200px;
	}
}

.product-image::before {
	content: "";
	font-size: 2.5rem;
	opacity: 0.3;
	color: var(--primary-green);
}

@media (min-width: 768px) {
	.product-image::before {
		font-size: 3rem;
	}
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.category-card:hover .product-img {
	transform: scale(1.05);
}

.product-img[src]+.product-image::before {
	display: none;
}

/* Product Tag */
.product-tag {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background-color: var(--primary-green);
	color: var(--white);
	padding: 0.3rem 0.8rem;
	border-radius: 30px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: 1px solid var(--accent-gold);
	z-index: 2;
	box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
	.product-tag {
		top: 1rem;
		right: 1rem;
		padding: 0.4rem 1rem;
		font-size: 0.75rem;
	}
}

/* Product Info */
.product-info {
	padding: 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

@media (min-width: 768px) {
	.product-info {
		padding: 1.5rem;
	}
}

.product-description {
	color: var(--text-light);
	font-size: 0.85rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
	font-weight: 450;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 768px) {
	.product-description {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}
}

/* Product Details */
.product-details {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.product-details {
		gap: 0.75rem;
		margin-bottom: 1rem;
	}
}

.strain,
.thc-tag {
	padding: 0.2rem 0.6rem;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 550;
	letter-spacing: -0.01em;
	transition: all 0.2s ease;
}

@media (min-width: 768px) {

	.strain,
	.thc-tag {
		padding: 0.25rem 0.75rem;
		font-size: 0.8rem;
	}
}

.strain {
	background-color: var(--bg-light);
	color: var(--primary-green);
	border: 1px solid var(--accent-gold);
}

.thc-tag {
	background-color: var(--primary-green);
	color: var(--white);
	border: 1px solid var(--accent-gold);
}

/* Price and Button */
.price-tag {
	color: var(--accent-gold-dark);
	font-weight: 650;
	font-size: 1.2rem;
	margin: 0.5rem 0 0.75rem;
}

@media (min-width: 768px) {
	.price-tag {
		font-size: 1.3rem;
		margin: 0.75rem 0 1rem;
	}
}

.btn {
	background-color: var(--primary-green);
	color: var(--white);
	border: 1px solid transparent;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	font-family: var(--font-mono);
	font-weight: 550;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
	letter-spacing: -0.01em;
}

@media (min-width: 768px) {
	.btn {
		padding: 0.7rem 1.5rem;
		font-size: 0.95rem;
	}
}

.btn:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	transform: scale(1.02);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-green);
}

/* Footer */
footer {
	background-color: var(--primary-green);
	color: var(--white);
	padding: 2rem 0 1rem;
	margin-top: 3rem;
	border-top: 3px solid var(--accent-gold);
	width: 100%;
}

@media (min-width: 768px) {
	footer {
		padding: 3rem 0 1.5rem;
		margin-top: 4rem;
	}
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.footer-content {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
		margin-bottom: 2.5rem;
	}
}

.footer-section {
	text-align: center;
}

@media (min-width: 640px) {
	.footer-section {
		text-align: left;
	}
}

.footer-section h4 {
	color: var(--accent-gold);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
	position: relative;
	padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.footer-section h4 {
		font-size: 1.1rem;
		margin-bottom: 1.2rem;
	}
}

.footer-section h4::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: var(--accent-gold);
}

@media (min-width: 640px) {
	.footer-section h4::after {
		left: 0;
		transform: none;
	}
}

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

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

@media (min-width: 768px) {
	.footer-links li {
		margin-bottom: 0.75rem;
	}
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	transition: all 0.2s ease;
	opacity: 0.9;
	display: inline-block;
	padding: 0.2rem 0;
}

@media (min-width: 768px) {
	.footer-links a {
		font-size: 0.95rem;
	}
}

.footer-links a:hover {
	color: var(--accent-gold);
	opacity: 1;
	transform: translateX(5px);
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links li:has(),
.footer-links li:has(),
.footer-links li:has(),
.footer-links li:has() {
	opacity: 0.9;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
}

@media (min-width: 640px) {

	.footer-links li:has(),
	.footer-links li:has(),
	.footer-links li:has(),
	.footer-links li:has() {
		justify-content: flex-start;
	}
}

@media (min-width: 768px) {

	.footer-links li:has(),
	.footer-links li:has(),
	.footer-links li:has(),
	.footer-links li:has() {
		font-size: 0.95rem;
	}
}

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

@media (min-width: 768px) {
	.footer-bottom {
		padding-top: 2rem;
	}
}

.footer-bottom p {
	margin-bottom: 0.5rem;
	color: var(--white);
	font-size: 0.85rem;
	opacity: 0.8;
}

@media (min-width: 768px) {
	.footer-bottom p {
		font-size: 0.9rem;
	}
}

.footer-bottom .disclaimer {
	font-size: 0.8rem;
	opacity: 0.7;
	font-style: italic;
}

@media (min-width: 768px) {
	.footer-bottom .disclaimer {
		font-size: 0.85rem;
	}
}

/* Cart Page */
.cart-container {
	width: 100%;
	max-width: 1200px;
	margin: 1.5rem auto;
	padding: 0 15px;
}

@media (min-width: 768px) {
	.cart-container {
		margin: 2rem auto;
	}
}

.cart-items {
	margin-bottom: 1.5rem;
	border: 1px solid var(--border-light);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
	.cart-items {
		margin-bottom: 2rem;
	}
}

.cart-item {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background-color: var(--white);
	border-bottom: 1px solid var(--border-light);
	transition: background-color 0.2s ease;
	text-align: center;
}

@media (min-width: 640px) {
	.cart-item {
		grid-template-columns: 80px 1fr 100px 120px 100px 45px;
		text-align: left;
		padding: 1rem;
	}
}

@media (min-width: 1024px) {
	.cart-item {
		grid-template-columns: 100px 2fr 120px 140px 120px 50px;
		padding: 1.5rem;
		gap: 1rem;
	}
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item:hover {
	background-color: var(--bg-light);
}

.item-image {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.item-image {
		width: 80px;
		height: 80px;
		margin: 0;
	}
}

@media (min-width: 1024px) {
	.item-image {
		width: 100px;
		height: 100px;
	}
}

.placeholder-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-light) 0%, #d4e0cc 100%);
	border: 1px solid var(--accent-gold);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--primary-green);
}

@media (min-width: 1024px) {
	.placeholder-image {
		font-size: 2.5rem;
	}
}

.item-details h3 {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: var(--primary-green-dark);
}

@media (min-width: 1024px) {
	.item-details h3 {
		font-size: 1.2rem;
	}
}

.item-category {
	color: var(--text-light);
	font-size: 0.85rem;
	font-weight: 450;
	margin-bottom: 0.25rem;
}

.item-weight {
	color: var(--accent-gold-dark);
	font-size: 0.85rem;
	font-weight: 600;
}

.item-price {
	text-align: center;
}

@media (min-width: 640px) {
	.item-price {
		text-align: right;
	}
}

.price {
	font-weight: 600;
	font-size: 1rem;
	color: var(--primary-green);
}

@media (min-width: 1024px) {
	.price {
		font-size: 1.1rem;
	}
}

/* Cart Quantity Section */
.item-quantity {
	text-align: center;
}

.quantity-form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background-color: var(--bg-light);
	padding: 4px 8px;
	border-radius: 8px;
	border: 1px solid var(--accent-gold);
	max-width: 200px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.quantity-form {
		max-width: none;
		margin: 0;
		gap: 8px;
		padding: 5px 10px;
	}
}

.quantity-input {
	width: 50px;
	padding: 0.4rem;
	border: 1px solid var(--accent-gold);
	border-radius: 6px;
	font-family: var(--font-mono);
	font-size: 0.9rem;
	text-align: center;
	color: var(--primary-green);
	font-weight: 500;
	background-color: var(--white);
}

@media (min-width: 1024px) {
	.quantity-input {
		width: 60px;
		padding: 0.5rem;
		font-size: 0.95rem;
	}
}

.quantity-input:focus {
	outline: none;
	border-color: var(--primary-green);
	box-shadow: 0 0 0 3px rgba(26, 59, 46, 0.1);
}

.update-btn {
	background: none;
	border: 1px solid var(--accent-gold);
	color: var(--primary-green);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	background-color: var(--white);
	min-width: 32px;
}

@media (min-width: 1024px) {
	.update-btn {
		font-size: 1.2rem;
		padding: 0.35rem 0.7rem;
		min-width: 35px;
	}
}

.update-btn:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	border-color: var(--primary-green);
	transform: scale(1.05);
}

.item-total {
	text-align: center;
}

@media (min-width: 640px) {
	.item-total {
		text-align: right;
	}
}

.total {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--accent-gold-dark);
}

@media (min-width: 1024px) {
	.total {
		font-size: 1.2rem;
	}
}

.item-remove {
	text-align: center;
}

.remove-btn {
	background: none;
	border: 1px solid var(--border-light);
	color: #999;
	font-size: 1rem;
	cursor: pointer;
	padding: 0.35rem 0.7rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-family: var(--font-mono);
	font-weight: 550;
	background-color: var(--white);
}

@media (min-width: 1024px) {
	.remove-btn {
		font-size: 1.1rem;
		padding: 0.4rem 0.8rem;
	}
}

.remove-btn:hover {
	background-color: #ffebee;
	border-color: #ff6b6b;
	color: #ff3333;
	transform: scale(1.05);
}

/* Cart Summary */
.cart-summary {
	background-color: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	max-width: 100%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.cart-summary {
		max-width: 400px;
		margin-left: auto;
		padding: 2rem;
	}
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	font-weight: 450;
	padding: 0.25rem 0;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.summary-row {
		margin-bottom: 1rem;
		font-size: 1rem;
	}
}

.summary-row.discount {
	color: var(--accent-gold-dark);
}

.summary-row.total {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	border-top: 2px solid var(--border-light);
	padding-top: 0.75rem;
	margin-top: 0.5rem;
}

@media (min-width: 768px) {
	.summary-row.total {
		font-size: 1.3rem;
		padding-top: 1rem;
		margin-top: 0.5rem;
	}
}

.cart-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.cart-actions {
		gap: 1rem;
		margin-top: 2rem;
	}
}

.continue-shopping {
	color: var(--primary-green);
	font-weight: 550;
	text-align: center;
	padding: 0.6rem;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.continue-shopping {
		padding: 0.75rem;
		font-size: 1rem;
	}
}

.continue-shopping:hover {
	color: var(--primary-green-light);
	background-color: var(--bg-light);
	border-color: var(--accent-gold);
	text-decoration: none;
}

.checkout-btn {
	background-color: var(--primary-green);
	color: var(--white);
	border: 2px solid var(--accent-gold);
	padding: 0.8rem;
	border-radius: 8px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
}

@media (min-width: 768px) {
	.checkout-btn {
		padding: 1rem;
		font-size: 1.1rem;
	}
}

.checkout-btn:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-green);
}

.clear-cart-form {
	margin-top: 0.25rem;
}

@media (min-width: 768px) {
	.clear-cart-form {
		margin-top: 0.5rem;
	}
}

.clear-btn {
	background: none;
	border: 1px solid #ff6b6b;
	color: #ff6b6b;
	padding: 0.6rem 0.8rem;
	border-radius: 6px;
	font-family: var(--font-mono);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
}

@media (min-width: 768px) {
	.clear-btn {
		padding: 0.75rem 1rem;
		font-size: 0.95rem;
	}
}

.clear-btn:hover {
	background-color: #ffebee;
	border-color: #ff3333;
	color: #ff3333;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(255, 51, 51, 0.2);
}

.payment-methods {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
	.payment-methods {
		margin-top: 2rem;
		padding-top: 1.5rem;
	}
}

.payment-methods p {
	color: var(--text-light);
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

@media (min-width: 768px) {
	.payment-methods p {
		font-size: 0.9rem;
		margin-bottom: 0.75rem;
	}
}

.payment-icons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 0.25rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.payment-icons {
		justify-content: flex-start;
	}
}

@media (min-width: 768px) {
	.payment-icons {
		gap: 0.75rem;
		margin-top: 0.5rem;
	}
}

.payment-icon {
	padding: 0.3rem 0.8rem;
	background-color: var(--bg-light);
	border: 1px solid var(--accent-gold);
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary-green);
	transition: all 0.2s ease;
}

@media (min-width: 768px) {
	.payment-icon {
		padding: 0.4rem 1rem;
		font-size: 0.85rem;
	}
}

.payment-icon:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	transform: translateY(-1px);
}

.medical-note {
	margin-top: 0.75rem;
	font-size: 0.8rem;
	color: var(--accent-gold-dark);
	font-style: italic;
	text-align: center;
	font-weight: 500;
}

@media (min-width: 768px) {
	.medical-note {
		margin-top: 1rem;
		font-size: 0.85rem;
	}
}

/* Empty Cart */
.empty-cart {
	text-align: center;
	padding: 2rem 1rem;
	background-color: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
	.empty-cart {
		padding: 4rem 2rem;
	}
}

.empty-cart-icon {
	font-size: 3.5rem;
	display: block;
	margin-bottom: 1rem;
	opacity: 0.6;
}

@media (min-width: 768px) {
	.empty-cart-icon {
		font-size: 5rem;
		margin-bottom: 1.5rem;
	}
}

.empty-cart h2 {
	color: var(--primary-green-dark);
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.empty-cart h2 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
}

.empty-cart p {
	color: var(--text-light);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-weight: 450;
}

@media (min-width: 768px) {
	.empty-cart p {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}
}

.browse-btn {
	display: inline-block;
	background-color: var(--primary-green);
	color: var(--white);
	text-decoration: none;
	padding: 0.8rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s ease;
	border: 2px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.browse-btn {
		padding: 1rem 2.5rem;
		font-size: 1.1rem;
	}
}

.browse-btn:hover {
	background-color: var(--accent-gold);
	color: var(--primary-green-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Links */
a {
	color: var(--primary-green);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--primary-green-light);
	text-decoration: underline;
}

/* Back link */
.back-link {
	display: inline-block;
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.4rem 0;
}

@media (min-width: 768px) {
	.back-link {
		margin-top: 2rem;
		font-size: 1rem;
		padding: 0.5rem 0;
	}
}

/* Selection */
::selection {
	background: var(--accent-gold);
	color: var(--primary-green-dark);
}

/* ===== MODERN CONTACT FORM STYLES ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 2rem 0;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1.5fr;
		gap: 2.5rem;
	}
}

.contact-info-card {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	border-radius: 30px;
	padding: 2.5rem;
	color: var(--white);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.contact-info-card::before {
	content: '✉️';
	position: absolute;
	right: -20px;
	bottom: -20px;
	font-size: 8rem;
	opacity: 0.1;
	transform: rotate(15deg);
	pointer-events: none;
}

.contact-info-card h2 {
	color: var(--white);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	position: relative;
	z-index: 1;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 1.5rem;
	padding: 1rem 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.contact-info-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(8px) scale(1.02);
	border-color: var(--accent-gold);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: var(--accent-gold);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-green-dark);
	font-size: 1.4rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-info-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	background: var(--white);
}

.contact-info-item h3 {
	color: var(--white);
	margin-bottom: 0.25rem;
	font-size: 1rem;
	opacity: 0.9;
	letter-spacing: 0.5px;
}

.contact-info-item p {
	color: var(--white);
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

/* Modern Contact Form */
.contact-form-card {
	background: var(--white);
	border-radius: 30px;
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(196, 167, 125, 0.2);
	position: relative;
	overflow: hidden;
}

.contact-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--accent-gold), var(--primary-green), var(--accent-gold));
	background-size: 200% 100%;
	animation: gradientShift 3s ease infinite;
}

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

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.contact-form-card h2 {
	color: var(--primary-green-dark);
	margin-bottom: 2rem;
	font-size: 1.8rem;
	position: relative;
	display: inline-block;
}

.contact-form-card h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent-gold);
	border-radius: 2px;
}

.form-group {
	margin-bottom: 1.8rem;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 0.6rem;
	color: var(--primary-green-dark);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	transform-origin: left;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem 1.2rem;
	border: 2px solid var(--border-light);
	border-radius: 16px;
	font-family: var(--font-mono);
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--bg-light);
	color: var(--text-dark);
	resize: vertical;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
	border-color: var(--accent-gold);
	background: var(--white);
	box-shadow: 0 5px 15px rgba(196, 167, 125, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-green);
	background: var(--white);
	box-shadow: 0 8px 20px rgba(26, 59, 46, 0.15);
	transform: translateY(-2px);
}

.form-group textarea {
	min-height: 140px;
	line-height: 1.6;
}

/* Floating label effect on focus */
.form-group.focused label {
	color: var(--primary-green);
	transform: scale(0.95);
}

/* Input with icon */
.form-group.with-icon {
	position: relative;
}

.form-group.with-icon input {
	padding-left: 3rem;
}

.form-group.with-icon .input-icon {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	color: var(--accent-gold);
	font-size: 1.2rem;
	pointer-events: none;
	transition: all 0.3s ease;
}

.form-group.with-icon input:focus+.input-icon {
	color: var(--primary-green);
	transform: scale(1.1);
}

/* Submit button - Modern & Flexible */
.submit-btn {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border: none;
	padding: 1.2rem 2rem;
	border-radius: 50px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(26, 59, 46, 0.3);
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover {
	background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(26, 59, 46, 0.4);
	border-color: var(--accent-gold);
}

.submit-btn:hover::before {
	width: 300px;
	height: 300px;
}

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

/* Success message animation */
.form-success {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	border-radius: 20px;
	margin-top: 1rem;
	border: 2px solid var(--accent-gold);
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-success p {
	color: var(--primary-green-dark);
	font-size: 1.1rem;
	margin: 0;
	font-weight: 600;
}

/* Form error states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
	border-color: #ff6b6b;
	background: #fff8f8;
}

.form-group.error label {
	color: #ff6b6b;
}

.error-message {
	color: #ff6b6b;
	font-size: 0.8rem;
	margin-top: 0.3rem;
	padding-left: 0.5rem;
	animation: shake 0.3s ease;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	75% {
		transform: translateX(5px);
	}
}

/* Loading state for submit button */
.submit-btn.loading {
	pointer-events: none;
	opacity: 0.8;
	position: relative;
}

.submit-btn.loading::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	border: 2px solid var(--white);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {

	.contact-info-card,
	.contact-form-card {
		padding: 2rem;
		border-radius: 24px;
	}

	.contact-info-item {
		padding: 0.8rem 1rem;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
		border-radius: 12px;
	}

	.submit-btn {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.contact-info-item {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}

	.contact-info-item:hover {
		transform: translateY(-5px) scale(1.02);
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 0.9rem 1rem;
	}
}

/* ===== FIXED DELIVERY FORM STYLES ===== */
.delivery-container {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 20px;
}

.delivery-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.delivery-header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--primary-green-dark);
	border-bottom: none;
	display: inline-block;
	position: relative;
}

.delivery-header h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
	border-radius: 2px;
}

.delivery-description {
	color: var(--text-light);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 1.5rem auto 0;
}

.delivery-form-container {
	background: var(--white);
	border-radius: 30px;
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(196, 167, 125, 0.2);
	position: relative;
	overflow: hidden;
}

.delivery-form-container::before {
	content: '🇺🇸';
	position: absolute;
	right: -20px;
	bottom: -20px;
	font-size: 8rem;
	opacity: 0.03;
	transform: rotate(15deg);
	pointer-events: none;
}

.form-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.form-section h2 {
	color: var(--primary-green-dark);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.form-section h2::before {
	content: '';
	width: 4px;
	height: 24px;
	background: var(--accent-gold);
	border-radius: 2px;
}

.section-note {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-top: -1rem;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.form-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.form-row .full-width {
		grid-column: span 2;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	color: var(--primary-green-dark);
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.required {
	color: #e53e3e;
	font-size: 1rem;
}

.optional {
	color: var(--text-light);
	font-size: 0.85rem;
	font-weight: 400;
	font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.9rem 1rem;
	border: 2px solid var(--border-light);
	border-radius: 12px;
	font-family: var(--font-mono);
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--bg-light);
	color: var(--text-dark);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
	border-color: var(--accent-gold);
	background: var(--white);
	box-shadow: 0 5px 15px rgba(196, 167, 125, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-green);
	background: var(--white);
	box-shadow: 0 8px 20px rgba(26, 59, 46, 0.15);
	transform: translateY(-2px);
}

.form-group select {
	cursor: pointer;
	appearance: none;
	/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a3b2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); */
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 16px;
	padding-right: 2.5rem;
}

.input-hint {
	color: var(--text-light);
	font-size: 0.8rem;
	margin-top: 0.25rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--primary-green);
}

.checkbox-text {
	font-size: 0.95rem;
}

/* Address Verification Notice */
.verification-notice {
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	border-radius: 16px;
	padding: 1.5rem;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 2px solid var(--accent-gold);
}

.notice-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-green);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	flex-shrink: 0;
}

.notice-text strong {
	color: var(--primary-green-dark);
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.notice-text p {
	color: var(--text-dark);
	margin: 0;
	font-size: 0.95rem;
}

/* USPS Format Example */
.format-example {
	margin-top: 2rem;
	padding: 1.5rem;
	background: var(--bg-light);
	border-radius: 16px;
	border: 1px dashed var(--accent-gold);
}

.format-example h3 {
	color: var(--primary-green-dark);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.format-example h3::before {
	font-size: 1.2rem;
}

.example-address {
	background: var(--white);
	padding: 1.2rem;
	border-radius: 12px;
	border: 1px solid var(--border-light);
	font-family: var(--font-mono);
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.example-address p {
	margin: 0;
}

.example-note {
	color: var(--text-light);
	font-size: 0.85rem;
	font-style: italic;
	margin: 0;
}

/* Form Actions */
.form-actions {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	border-radius: 50px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	flex: 1;
	max-width: 250px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(26, 59, 46, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(26, 59, 46, 0.4);
	border-color: var(--accent-gold);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary-green);
	border: 2px solid var(--border-light);
}

.btn-secondary:hover {
	background: var(--bg-light);
	border-color: var(--accent-gold);
	transform: translateY(-2px);
}

/* Error states */
.form-group.error input,
.form-group.error select {
	border-color: #e53e3e;
	background: #fff5f5;
}

.form-group.error label {
	color: #e53e3e;
}

.error-message {
	color: #e53e3e;
	font-size: 0.85rem;
	margin-top: 0.25rem;
	animation: shake 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.delivery-header h1 {
		font-size: 2rem;
	}

	.delivery-form-container {
		padding: 1.5rem;
	}

	.form-section h2 {
		font-size: 1.3rem;
	}

	.form-actions {
		flex-direction: column;
	}

	.btn-primary,
	.btn-secondary {
		max-width: 100%;
	}

	.verification-notice {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.delivery-header h1 {
		font-size: 1.8rem;
	}

	.delivery-description {
		font-size: 1rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 0.8rem;
	}
}

/* ===== PAYMENT PAGE STYLES ===== */
.payment-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 20px;
}

.payment-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.payment-header h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--primary-green-dark);
	position: relative;
	display: inline-block;
}

.payment-header h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
	border-radius: 2px;
}

.payment-description {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-top: 1rem;
}

/* Mobile-first approach - stack on mobile, side by side on desktop */
.payment-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.payment-grid {
		flex-direction: row;
	}
}

/* Order Summary - Fix for mobile */
.order-summary {
	background: var(--white);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(196, 167, 125, 0.2);
	width: 100%;
	order: 1;
}

@media (min-width: 1024px) {
	.order-summary {
		flex: 1;
		position: sticky;
		top: 2rem;
		height: fit-content;
		padding: 2rem;
		order: 0;
	}
}

.order-summary h2 {
	color: var(--primary-green-dark);
	font-size: 1.3rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.order-summary h2 {
		font-size: 1.5rem;
	}
}

.order-items {
	margin-bottom: 1rem;
	max-height: 250px;
	overflow-y: auto;
	padding-right: 0.5rem;
}

@media (min-width: 768px) {
	.order-items {
		max-height: 300px;
	}
}

.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border-light);
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.order-item {
		padding: 0.75rem 0;
		font-size: 1rem;
	}
}

.item-name {
	font-weight: 500;
	color: var(--text-dark);
	flex: 1;
	padding-right: 0.5rem;
}

.item-price {
	font-weight: 600;
	color: var(--primary-green);
	white-space: nowrap;
}

.summary-details {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 1rem;
	margin: 1rem 0;
}

@media (min-width: 768px) {
	.summary-details {
		padding: 1.5rem;
		margin: 1.5rem 0;
	}
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.summary-row {
		margin-bottom: 0.75rem;
		font-size: 0.95rem;
	}
}

.summary-row.discount {
	color: var(--accent-gold-dark);
}

.summary-row.total {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	border-top: 2px solid var(--border-light);
	padding-top: 0.5rem;
	margin-top: 0.25rem;
}

@media (min-width: 768px) {
	.summary-row.total {
		font-size: 1.2rem;
		padding-top: 0.75rem;
		margin-top: 0.5rem;
	}
}

.delivery-summary {
	background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0e0 100%);
	border-radius: 12px;
	padding: 1rem;
	border: 1px solid var(--accent-gold);
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.delivery-summary {
		padding: 1.5rem;
		font-size: 0.95rem;
	}
}

.delivery-summary h3 {
	color: var(--primary-green-dark);
	font-size: 1rem;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.delivery-summary p {
	color: var(--text-dark);
	margin: 0.25rem 0;
	word-break: break-word;
}

/* Payment Options - Fix for mobile */
.payment-options {
	background: var(--white);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(196, 167, 125, 0.2);
	width: 100%;
	order: 2;
}

@media (min-width: 1024px) {
	.payment-options {
		flex: 1.5;
		padding: 2rem;
		order: 0;
	}
}

.payment-options h2 {
	color: var(--primary-green-dark);
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.payment-options h2 {
		font-size: 1.5rem;
		text-align: left;
	}
}

/* Payment Methods Toggle - Updated for 4 methods */
.payment-methods-toggle {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	border-bottom: 2px solid var(--border-light);
	padding-bottom: 1rem;
}

@media (min-width: 768px) {
	.payment-methods-toggle {
		gap: 0.75rem;
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}
}

.payment-method-btn {
	flex: 1;
	min-width: 80px;
	padding: 0.7rem 0.5rem;
	background: var(--bg-light);
	border: 2px solid var(--border-light);
	border-radius: 50px;
	cursor: pointer;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.3s ease;
	color: var(--text-light);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.payment-method-btn {
		padding: 0.8rem 1rem;
		font-size: 0.95rem;
		min-width: 100px;
	}
}

.payment-method-btn:hover {
	background: var(--white);
	border-color: var(--accent-gold);
	transform: translateY(-2px);
}

.payment-method-btn.active {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border-color: var(--primary-green);
	box-shadow: var(--shadow-md);
}

/* Payment Method Content */
.payment-method-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.payment-method-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Crypto Payment Styles */
.crypto-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0e0 100%);
	border-radius: 16px;
	border: 1px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.crypto-header {
		gap: 1.5rem;
		margin-bottom: 2rem;
		padding: 1.5rem;
	}
}

.crypto-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.crypto-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}

.crypto-info {
	min-width: 0;
	flex: 1;
}

.crypto-info h3 {
	color: var(--primary-green-dark);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	word-break: break-word;
}

@media (min-width: 768px) {
	.crypto-info h3 {
		font-size: 1.3rem;
	}
}

.crypto-amount {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green);
	margin: 0.25rem 0;
	word-break: break-word;
}

@media (min-width: 768px) {
	.crypto-amount {
		font-size: 1.5rem;
	}
}

.usd-equivalent {
	color: var(--text-light);
	font-size: 0.85rem;
}

/* QR Code Section */
.qr-section {
	text-align: center;
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.qr-section {
		margin: 2rem 0;
	}
}

.qr-code {
	display: inline-block;
	padding: 0.75rem;
	background: var(--white);
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	border: 2px solid var(--accent-gold);
}

@media (min-width: 768px) {
	.qr-code {
		padding: 1rem;
	}
}

.qr-code img {
	width: 150px;
	height: 150px;
	display: block;
}

@media (min-width: 768px) {
	.qr-code img {
		width: 200px;
		height: 200px;
	}
}

.qr-instructions {
	margin-top: 0.75rem;
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Address Section */
.address-section {
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.address-section {
		margin: 2rem 0;
	}
}

.address-section label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--primary-green-dark);
	font-weight: 600;
	font-size: 0.9rem;
}

.address-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

@media (min-width: 640px) {
	.address-box {
		flex-direction: row;
	}
}

.crypto-address-input {
	flex: 1;
	padding: 0.8rem;
	border: 2px solid var(--border-light);
	border-radius: 12px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	background: var(--bg-light);
	color: var(--text-dark);
	width: 100%;
	word-break: break-all;
}

@media (min-width: 768px) {
	.crypto-address-input {
		padding: 1rem;
		font-size: 0.9rem;
	}
}

.crypto-address-input:focus {
	outline: none;
	border-color: var(--accent-gold);
}

.copy-btn {
	padding: 0.8rem;
	background: var(--primary-green);
	color: var(--white);
	border: none;
	border-radius: 12px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

@media (min-width: 640px) {
	.copy-btn {
		padding: 0.8rem 1.5rem;
	}
}

@media (min-width: 768px) {
	.copy-btn {
		padding: 1rem 1.5rem;
	}
}

.copy-btn:hover {
	background: var(--primary-green-light);
	transform: translateY(-2px);
}

.copy-btn.copied {
	background: var(--primary-green-light);
}

/* Payment Timer */
.payment-timer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
	border-radius: 12px;
	margin: 1.5rem 0;
	border: 1px solid #ffc107;
}

@media (min-width: 768px) {
	.payment-timer {
		gap: 1rem;
		padding: 1rem;
	}
}

.timer-icon {
	font-size: 1.2rem;
}

@media (min-width: 768px) {
	.timer-icon {
		font-size: 1.5rem;
	}
}

.timer-info p {
	color: #856404;
	margin: 0;
	font-size: 0.8rem;
}

@media (min-width: 768px) {
	.timer-info p {
		font-size: 0.9rem;
	}
}

.timer {
	font-size: 1.2rem;
	font-weight: 700;
	color: #856404;
	font-family: var(--font-mono);
}

@media (min-width: 768px) {
	.timer {
		font-size: 1.5rem;
	}
}

.timer-expired {
	color: #d32f2f;
}

/* Payment Warning */
.payment-warning {
	background: #ffebee;
	border-left: 4px solid #f44336;
	padding: 0.75rem;
	border-radius: 8px;
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.payment-warning {
		padding: 1rem;
	}
}

.payment-warning p {
	color: #c62828;
	margin: 0;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.payment-warning p {
		font-size: 0.95rem;
	}
}

/* Payment Instructions */
.payment-instructions {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 1rem;
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.payment-instructions {
		padding: 1.5rem;
	}
}

.payment-instructions h4 {
	color: var(--primary-green-dark);
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.payment-instructions h4 {
		font-size: 1rem;
	}
}

.payment-instructions ol {
	padding-left: 1.2rem;
	color: var(--text-dark);
}

.payment-instructions li {
	margin-bottom: 0.4rem;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.payment-instructions li {
		margin-bottom: 0.5rem;
		font-size: 0.95rem;
	}
}

.payment-instructions li strong {
	color: var(--primary-green);
}

/* ===== NEW: Chime & Apple Pay Styles ===== */
.payment-header-icon {
	text-align: center;
	margin-bottom: 2rem;
}

.payment-icon {
	font-size: 64px;
	display: inline-block;
	margin-bottom: 1rem;
}

.payment-icon.chime-icon {
	background: linear-gradient(135deg, #00d4ff 0%, #00a3c4 100%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin: 0 auto 1rem;
}

.payment-icon.applepay-icon {
	background: linear-gradient(135deg, #333 0%, #000 100%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin: 0 auto 1rem;
	color: white;
}

.payment-info-card {
	background: var(--bg-light);
	border-radius: 16px;
	padding: 1.5rem;
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.payment-info-card {
		padding: 2rem;
	}
}

.payment-description-text {
	font-size: 1rem;
	color: var(--text-light);
	text-align: center;
	margin-bottom: 1.5rem;
}

.payment-amount-display {
	background: var(--white);
	padding: 1rem;
	border-radius: 12px;
	text-align: center;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-light);
}

.amount-label {
	font-size: 0.85rem;
	color: var(--text-light);
	display: block;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.amount-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-green);
}

@media (min-width: 768px) {
	.amount-value {
		font-size: 2.5rem;
	}
}

.support-contact-card {
	background: var(--white);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	border: 2px solid var(--accent-gold);
	margin-bottom: 1.5rem;
}

.support-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.support-contact-card h4 {
	color: var(--primary-green-dark);
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.support-contact-card p {
	color: var(--text-light);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.contact-options {
	margin-top: 1rem;
}

.contact-option {
	padding: 0.75rem;
	margin: 0.5rem 0;
	background: var(--bg-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	transition: all 0.2s ease;
}

@media (min-width: 640px) {
	.contact-option {
		justify-content: flex-start;
		padding: 0.75rem 1rem;
	}
}

.contact-option:hover {
	background: var(--white);
	border: 1px solid var(--accent-gold);
	transform: translateX(5px);
}

.contact-icon {
	font-size: 1.2rem;
}

.payment-note {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.payment-note p {
	margin: 0;
	font-size: 0.85rem;
	color: #856404;
}

.apple-pay-note {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-left-color: #333;
}

.apple-pay-icons {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.apple-pay-icons span {
	margin: 0 0.5rem;
}

/* Payment Actions */
.payment-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 1.5rem 0;
}

@media (min-width: 768px) {
	.payment-actions {
		gap: 1rem;
		margin: 2rem 0;
	}
}

.verify-btn {
	padding: 0.8rem;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border: none;
	border-radius: 50px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	width: 100%;
}

@media (min-width: 768px) {
	.verify-btn {
		padding: 1rem;
		font-size: 1.1rem;
	}
}

.verify-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(26, 59, 46, 0.4);
	border-color: var(--accent-gold);
}

.back-btn {
	padding: 0.8rem;
	background: var(--white);
	color: var(--primary-green);
	border: 2px solid var(--border-light);
	border-radius: 50px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 100%;
}

@media (min-width: 768px) {
	.back-btn {
		padding: 1rem;
		font-size: 1rem;
	}
}

.back-btn:hover {
	border-color: var(--accent-gold);
	background: var(--bg-light);
	transform: translateY(-2px);
}

/* Security Note */
.security-note {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
	.security-note {
		margin-top: 2rem;
		padding-top: 1rem;
	}
}

.security-note p {
	color: var(--text-light);
	font-size: 0.8rem;
	margin: 0;
}

@media (min-width: 768px) {
	.security-note p {
		font-size: 0.9rem;
	}
}

/* Copy feedback */
.copy-feedback {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-green);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	animation: slideUp 0.3s ease;
	border: 2px solid var(--accent-gold);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.copy-feedback {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}

/* ===== ORDER CONFIRMATION STYLES ===== */
.confirmation-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 20px;
}

/* Success Checkmark Animation */
.confirmation-header {
	text-align: center;
	margin-bottom: 3rem;
}

.success-checkmark {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
}

.check-icon {
	width: 80px;
	height: 80px;
	position: relative;
	border-radius: 50%;
	box-sizing: content-box;
	border: 4px solid var(--primary-green);
}

.check-icon::before {
	top: 3px;
	left: -2px;
	width: 30px;
	transform-origin: 100% 50%;
	border-radius: 100px 0 0 100px;
}

.check-icon::after {
	top: 0;
	left: 30px;
	width: 60px;
	transform-origin: 0 50%;
	border-radius: 0 100px 100px 0;
	animation: rotate-circle 4.25s ease-in;
}

.check-icon::before,
.check-icon::after {
	content: '';
	height: 100px;
	position: absolute;
	background: var(--bg-light);
	transform: rotate(-45deg);
}

.icon-line {
	height: 5px;
	background-color: var(--primary-green);
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 10;
}

.icon-line.line-tip {
	top: 46px;
	left: 14px;
	width: 25px;
	transform: rotate(45deg);
	animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
	top: 38px;
	right: 8px;
	width: 47px;
	transform: rotate(-45deg);
	animation: icon-line-long 0.75s;
}

.icon-circle {
	top: -4px;
	left: -4px;
	z-index: 10;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	box-sizing: content-box;
	border: 4px solid var(--primary-green);
}

.icon-fix {
	top: 8px;
	width: 5px;
	left: 26px;
	z-index: 1;
	height: 85px;
	position: absolute;
	transform: rotate(-45deg);
	background-color: var(--bg-light);
}

@keyframes rotate-circle {
	0% {
		transform: rotate(-45deg);
	}

	5% {
		transform: rotate(-45deg);
	}

	12% {
		transform: rotate(-405deg);
	}

	100% {
		transform: rotate(-405deg);
	}
}

@keyframes icon-line-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}

	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@keyframes icon-line-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	84% {
		width: 55px;
		right: 0px;
		top: 35px;
	}

	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

.confirmation-header h1 {
	font-size: 2.5rem;
	color: var(--primary-green-dark);
	margin-bottom: 0.5rem;
	animation: slideUp 0.5s ease;
}

.confirmation-message {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	animation: slideUp 0.5s ease 0.1s both;
}

.order-number {
	background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0e0 100%);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	display: inline-block;
	border: 2px solid var(--accent-gold);
	animation: slideUp 0.5s ease 0.2s both;
}

.order-number span {
	font-family: var(--font-mono);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-green-dark);
}

/* Confirmation Grid */
.confirmation-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin: 2rem 0;
}

@media (min-width: 768px) {
	.confirmation-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Confirmation Cards */
.confirmation-card {
	background: var(--white);
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-light);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: fit-content;
}

.confirmation-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-gold);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--accent-gold);
}

.card-icon {
	font-size: 1.5rem;
}

.card-header h2 {
	color: var(--primary-green-dark);
	font-size: 1.3rem;
	margin: 0;
}

/* Order Items */
.order-items {
	margin-bottom: 1.5rem;
	max-height: 250px;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-light);
}

.order-item:last-child {
	border-bottom: none;
}

.item-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.item-name {
	font-weight: 500;
	color: var(--text-dark);
}

.item-quantity {
	color: var(--text-light);
	font-size: 0.9rem;
	background: var(--bg-light);
	padding: 0.2rem 0.5rem;
	border-radius: 20px;
}

.item-price {
	font-weight: 600;
	color: var(--primary-green);
	white-space: nowrap;
}

/* Order Totals */
.order-totals {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1rem;
}

.total-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	color: var(--text-dark);
	font-size: 0.95rem;
}

.total-row.discount {
	color: var(--accent-gold-dark);
}

.total-row.grand-total {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-green-dark);
	border-top: 2px solid var(--border-light);
	margin-top: 0.5rem;
	padding-top: 1rem;
}

/* Delivery Details */
.delivery-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.detail-row {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

@media (min-width: 640px) {
	.detail-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.detail-label {
	font-weight: 600;
	color: var(--primary-green-dark);
	min-width: 100px;
	font-size: 0.95rem;
}

.detail-value {
	color: var(--text-dark);
	font-size: 0.95rem;
	word-break: break-word;
	flex: 1;
}

.detail-value.address {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	background: var(--bg-light);
	padding: 0.5rem;
	border-radius: 8px;
	border: 1px solid var(--border-light);
}

/* Payment Information */
.payment-method-badge {
	margin-bottom: 1.5rem;
}

.crypto-badge,
.payment-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	border: 2px solid transparent;
}

.crypto-badge.btc {
	background: linear-gradient(135deg, #f7931a 0%, #f9b348 100%);
	color: white;
	border-color: #f7931a;
}

.crypto-badge.xmr {
	background: linear-gradient(135deg, #ff6600 0%, #ff944d 100%);
	color: white;
	border-color: #ff6600;
}

.payment-badge.chime {
	background: linear-gradient(135deg, #00d4ff 0%, #00a3c4 100%);
	color: white;
}

.payment-badge.applepay {
	background: linear-gradient(135deg, #333 0%, #000 100%);
	color: white;
}

.crypto-details {
	background: var(--bg-light);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

/* Alternative Payment Details (Chime/Apple Pay) */
.alternative-payment-details {
	margin: 1rem 0;
}

.support-notice {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
}

.support-notice p {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
}

.support-contact-info {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid #bbdef5;
	font-size: 0.85rem;
}

/* Payment Status */
.payment-status {
	text-align: center;
}

.status-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
}

.status-badge.pending {
	background: linear-gradient(135deg, #ffc107 0%, #ffdb6e 100%);
	color: #856404;
	border: 2px solid #ffc107;
}

.status-badge.pending-action {
	background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
	color: #fff;
	border: 2px solid #ff9800;
}

.status-note {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
}

/* Next Steps */
.steps-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.step-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.step-number {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
	border: 2px solid var(--accent-gold);
}

.step-content {
	flex: 1;
}

.step-content h3 {
	color: var(--primary-green-dark);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.step-content p {
	color: var(--text-light);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.5;
}

/* Action Buttons */
.confirmation-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 2rem 0;
	text-align: center;
}

@media (min-width: 640px) {
	.confirmation-actions {
		flex-direction: row;
		justify-content: center;
	}
}

.primary-btn,
.secondary-btn,
.contact-btn {
	padding: 1rem 2rem;
	border-radius: 50px;
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	border: none;
}

.primary-btn {
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
	color: var(--white);
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(26, 59, 46, 0.3);
}

.primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(26, 59, 46, 0.4);
	border-color: var(--accent-gold);
}

.secondary-btn {
	background: var(--white);
	color: var(--primary-green);
	border: 2px solid var(--border-light);
}

.secondary-btn:hover {
	border-color: var(--accent-gold);
	background: var(--bg-light);
	transform: translateY(-2px);
}

.contact-btn {
	background: #4CAF50;
	color: white;
	border: 2px solid transparent;
}

.contact-btn:hover {
	background: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Help Section */
.help-section {
	text-align: center;
	padding: 2rem 0;
	border-top: 1px solid var(--border-light);
}

.help-section p {
	color: var(--text-light);
	font-size: 0.95rem;
}

.help-section a {
	color: var(--primary-green);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.help-section a:hover {
	color: var(--primary-green-light);
	text-decoration: underline;
}

/* Print Styles */
@media print {

	.navbar,
	footer,
	.confirmation-actions,
	.help-section {
		display: none;
	}

	.confirmation-container {
		margin: 0;
		padding: 20px;
	}

	.confirmation-card {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #ddd;
	}
}

/* Animations */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.confirmation-header h1 {
		font-size: 2rem;
	}

	.order-number span {
		font-size: 1rem;
	}

	.confirmation-card {
		padding: 1.25rem;
	}

	.card-header h2 {
		font-size: 1.2rem;
	}

	.step-content h3 {
		font-size: 1rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}

	.payment-method-btn {
		font-size: 0.75rem;
		padding: 0.5rem;
	}
}

@media (max-width: 480px) {
	.confirmation-header h1 {
		font-size: 1.8rem;
	}

	.order-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.item-price {
		align-self: flex-end;
	}

	.detail-row {
		flex-direction: column;
		gap: 0.25rem;
	}

	.detail-label {
		min-width: auto;
	}

	.primary-btn,
	.secondary-btn,
	.contact-btn {
		width: 100%;
		text-align: center;
	}

	.payment-methods-toggle {
		gap: 0.3rem;
	}

	.payment-method-btn {
		font-size: 0.7rem;
		padding: 0.4rem;
		min-width: 60px;
	}
}
/* ============================================
   AGE VERIFICATION PAGE STYLES
   ============================================ */

/* Age Verification Page Background */
.age-verify-body {
    font-family: var(--font-mono);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a3b2e 0%, #0f2a1f 100%);
    margin: 0;
    padding: 20px;
}

/* Verification Container */
.verification-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-gold);
    animation: fadeInUp 0.5s ease;
}

.age-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.verification-container h1 {
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
}

.verification-container p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.age-warning {
    background: #fff3cd;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    border-left: 3px solid #ffc107;
    text-align: left;
    color: #856404;
}

/* Age Buttons */
.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.age-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-green-dark);
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 167, 125, 0.4);
}

.age-btn-no {
    background: #dc3545;
    color: white;
}

.age-btn-no:hover {
    transform: translateY(-2px);
    background: #c82333;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

.age-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    font-size: 12px;
    color: #999;
}

.age-footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

.age-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   ACCESS DENIED PAGE STYLES
   ============================================ */

.denied-body {
    font-family: var(--font-mono);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #4a1a1a 0%, #2a0a0a 100%);
    margin: 0;
    padding: 20px;
}

.denied-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid #dc3545;
    animation: fadeInUp 0.5s ease;
}

.denied-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
}

.denied-container h1 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
}

.denied-container p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.denied-warning {
    background: #f8d7da;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    border-left: 3px solid #dc3545;
    text-align: left;
    color: #721c24;
}

.age-btn-leave {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

.age-btn-leave:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

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

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

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .verification-container,
    .denied-container {
        padding: 30px;
    }
    
    .verification-container h1,
    .denied-container h1 {
        font-size: 24px;
    }
    
    .age-icon,
    .denied-icon {
        font-size: 60px;
    }
    
    .verification-container p,
    .denied-container p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .age-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-btn,
    .age-btn-leave {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .verification-container,
    .denied-container {
        padding: 25px;
    }
    
    .verification-container h1,
    .denied-container h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .verification-container,
    .denied-container {
        padding: 20px;
    }
    
    .verification-container h1,
    .denied-container h1 {
        font-size: 20px;
    }
    
    .age-icon,
    .denied-icon {
        font-size: 50px;
    }
    
    .age-warning,
    .denied-warning {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .age-verify-body,
    .denied-body {
        background: white;
    }
    
    .verification-container,
    .denied-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .age-btn,
    .age-btn-leave {
        display: none;
    }
}
/* ============================================
   LINK STYLING FIX - PREVENT UNDERLINE ON CLICK/HOVER
   ============================================ */

/* Remove underline from all links on hover, focus, and active states */
a:hover,
a:focus,
a:active,
.nav-link:hover,
.nav-link:focus,
.nav-link:active,
.footer-links a:hover,
.footer-links a:focus,
.footer-links a:active,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.category-card a:hover,
.category-card a:focus,
.category-card a:active,
.btn:hover,
.btn:focus,
.btn:active,
.continue-shopping:hover,
.continue-shopping:focus,
.continue-shopping:active,
.browse-btn:hover,
.browse-btn:focus,
.browse-btn:active,
.back-link:hover,
.back-link:focus,
.back-link:active,
.contact-info-item a:hover,
.contact-info-item a:focus,
.contact-info-item a:active,
.payment-method-btn:hover,
.payment-method-btn:focus,
.payment-method-btn:active,
.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active,
.secondary-btn:hover,
.secondary-btn:focus,
.secondary-btn:active,
.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active,
.help-section a:hover,
.help-section a:focus,
.help-section a:active,
.age-footer a:hover,
.age-footer a:focus,
.age-footer a:active {
    text-decoration: none !important;
}

/* Ensure logo doesn't get underline */
.logo:hover,
.logo:focus,
.logo:active {
    text-decoration: none !important;
}

/* Cart link specific */
.cart-link:hover,
.cart-link:focus,
.cart-link:active {
    text-decoration: none !important;
}

/* Remove outline ring on focus for better visual (optional - keeps accessibility but cleaner) */
a:focus,
button:focus,
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    text-decoration: none !important;
}

/* For any dynamically generated links or edge cases */
[href]:hover,
[href]:focus,
[href]:active {
    text-decoration: none !important;
}

/* Preserve button styles but remove underlines */
button:hover,
button:focus,
button:active {
    text-decoration: none !important;
}

/* Form-related links */
.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active,
.verify-btn:hover,
.verify-btn:focus,
.verify-btn:active,
.copy-btn:hover,
.copy-btn:focus,
.copy-btn:active,
.update-btn:hover,
.update-btn:focus,
.update-btn:active,
.remove-btn:hover,
.remove-btn:focus,
.remove-btn:active,
.clear-btn:hover,
.clear-btn:focus,
.clear-btn:active {
    text-decoration: none !important;
}