.nav-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	background: rgba(0, 0, 0, 1);
  -webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	z-index: 1000;
	transition:
		transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		background 0.3s ease;
}

.nav-container.nav-hidden {
	transform: translateY(-100%);
}

.nav-container.nav-scrolled {
	background: rgba(0, 0, 0, 0.97);
}

.nav-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 10px;
	flex-shrink: 0;
}

.nav-logo img {
	height: 38px;
	width: auto;
	object-fit: contain;
}

.nav-logo-text {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.3px;
	line-height: 1;
}

.nav-logo-text span {
	color: var(--gold);
}

.nav-center {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-links {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 4px;
}

.nav-link {
	text-decoration: none;
	color: var(--white-dim);
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: 0.01em;
	padding: 8px 14px;
	border-radius: 8px;
	transition:
		color 0.25s ease,
		background 0.25s ease;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.nav-link:hover {
	color: var(--gold);
	background: var(--gold-dim);
}

.nav-solutions-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-chevron {
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
}

.nav-solutions-wrapper:hover .nav-chevron {
	transform: rotate(180deg);
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	background: var(--bg-elevated);
	border: 1px solid var(--gold-border);
	border-radius: 12px;
	padding: 8px;
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0.25s ease;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(212, 175, 55, 0.1);
}

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

.nav-dropdown li {
	list-style: none;
}

.nav-dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	color: var(--white-dim);
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 400;
	border-radius: 8px;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		padding-left 0.2s ease;
}

.nav-dropdown a::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	opacity: 0;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
}

.nav-dropdown a:hover {
	color: var(--gold);
	background: var(--gold-dim);
	padding-left: 18px;
}

.nav-dropdown a:hover::before {
	opacity: 1;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-cart {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 8px;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.nav-cart:hover {
	background: var(--gold-dim);
}

.nav-cart .fa-solid {
	font-size: 20px;
	color: var(--gold);
}

.nav-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: #c0392b;
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-icon {
	display: none;
	cursor: pointer;
	width: 28px;
	height: 20px;
	position: relative;
	z-index: 1500;
	flex-shrink: 0;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--gold);
	border-radius: 2px;
	left: 0;
	transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
	top: 0;
}
.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
	top: 9px;
}
.menu-icon span:nth-child(4) {
	top: 18px;
}

.menu-icon.open span:nth-child(1) {
	top: 9px;
	width: 0%;
	left: 50%;
}
.menu-icon.open span:nth-child(2) {
	transform: rotate(45deg);
}
.menu-icon.open span:nth-child(3) {
	transform: rotate(-45deg);
}
.menu-icon.open span:nth-child(4) {
	top: 9px;
	width: 0%;
	left: 50%;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: -300px;
	width: 285px;
	height: 100vh;
	background: var(--bg);
	border-right: 1px solid var(--gold-border);
	z-index: 1200;
	padding: 100px 24px 40px;
	transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow-y: auto;
}

.mobile-menu.active {
	left: 0;
}

.mobile-menu-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-link {
	border-bottom: 1px solid rgba(212, 175, 55, 0.08);
	padding-bottom: 4px;
}

.mobile-menu-link:last-child {
	border-bottom: none;
}

.mobile-menu-link a {
	color: var(--white-dim);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 8px;
	display: block;
	border-radius: 8px;
	transition:
		color 0.2s ease,
		background 0.2s ease;
}

.mobile-menu-link a:hover {
	color: var(--gold);
	background: var(--gold-dim);
}

.mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 12px 8px;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.mobile-dropdown-toggle:hover {
	background: var(--gold-dim);
}

.mobile-dropdown-toggle a {
	padding: 0 !important;
	color: var(--white-dim);
	font-size: 16px;
	font-weight: 500;
}

.mobile-chevron {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.mobile-dropdown {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin-left: 12px;
}

.mobile-dropdown.active {
	max-height: 500px;
}

.mobile-dropdown li {
	list-style: none;
}

.mobile-dropdown a {
	font-size: 13.5px !important;
	color: var(--white-dim) !important;
	padding: 9px 12px !important;
}

.mobile-cart {
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 12px 8px;
}

.mobile-cart .fa-solid {
	font-size: 22px;
	color: var(--gold);
}

.mobile-cart span {
	position: absolute;
	top: 4px;
	right: 0px;
	background: #c0392b;
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-cta {
	margin-top: 12px;
}

.mobile-cta .btn-primary {
	width: 100%;
	padding: 13px 22px;
	font-size: 14.5px;
}

.backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.backdrop.active {
	opacity: 1;
	visibility: visible;
}

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

@media (max-width: 992px) {
	.nav-container {
		padding: 0 20px;
	}

	.nav-center,
	.nav-right {
		display: none;
	}

	.menu-icon {
		display: block;
	}

	.nav-container {
		justify-content: space-between;
	}
}

.footer {
	position: relative;
	overflow: hidden;
}

.footer-bg-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background-image: url(../images/LogoFullColour.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.03;
	pointer-events: none;
	z-index: 0;
}

.footer-glow-top {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gold-border),
		transparent
	);
}

.footer-inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 60px;
}

.footer-section-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-section-label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--gold-border);
	max-width: 40px;
}

.footer-brand-name {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.03em;
	margin-bottom: 14px;
	line-height: 1.2;
}

.footer-brand-name span {
	color: var(--gold);
}

.footer-brand-desc {
	font-size: 13.5px;
	color: var(--white-dim);
	line-height: 1.75;
	max-width: 280px;
}

.footer-social-links {
	display: flex;
	gap: 10px;
	margin-top: 28px;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid var(--gold-border);
	background: var(--gold-glow);
	color: var(--white-dim);
	font-size: 14px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.footer-social-icon:hover {
	color: var(--gold);
	border-color: var(--gold);
	background: var(--gold-dim);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer-links li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--white-dim);
	text-decoration: none;
	padding: 7px 0;
	transition:
		color 0.2s ease,
		gap 0.2s ease;
}

.footer-links li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.25s ease;
	flex-shrink: 0;
}

.footer-links li a:hover {
	color: var(--gold);
	gap: 12px;
}

.footer-links li a:hover::before {
	width: 14px;
}

.footer-contact-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13px;
	color: var(--white-dim);
	padding: 7px 0;
	line-height: 1.5;
}

.footer-contact-list li .icon {
	color: var(--gold);
	font-size: 13px;
	margin-top: 2px;
	flex-shrink: 0;
	width: 14px;
	text-align: center;
}

.footer-contact-list li a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
	color: var(--gold);
}

.footer-divider {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 60px auto 0;
	padding: 0 40px;
}

.footer-divider-line {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--gold-border) 20%,
		var(--gold-border) 80%,
		transparent
	);
}

.footer-bottom {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 40px 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright {
	font-size: 12.5px;
	color: var(--white-dim);
	letter-spacing: 0.01em;
}

.footer-copyright strong {
	color: var(--gold);
	font-weight: 600;
}

.footer-bottom-links {
	display: flex;
	gap: 28px;
}

.footer-bottom-links a {
	font-size: 12.5px;
	color: var(--white-dim);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
	color: var(--gold);
}

.footer-made-in {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.02em;
}

.footer-made-in span {
	color: var(--gold);
	opacity: 0.7;
}

.back-to-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 44px;
	height: 44px;
	background: var(--gold);
	color: #000;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease,
		transform 0.3s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
	z-index: 999;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: #e0c040;
	box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
	transform: translateY(-3px);
}

.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.25);
	transform: scale(0);
	animation: ripple-anim 0.9s ease-out forwards;
	pointer-events: none;
}

@keyframes ripple-anim {
	to {
		transform: scale(3);
		opacity: 0;
	}
}

@media (max-width: 1100px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}
}

@media (max-width: 992px) {
	.footer-bg-logo {
		background-image: url(../images/LogomarkFullcolor.svg);
		width: 360px;
		height: 360px;
	}
}

@media (max-width: 640px) {
	.footer-inner {
		padding: 60px 24px 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-brand-desc {
		max-width: 100%;
	}

	.footer-divider {
		padding: 0 24px;
	}

	.footer-bottom {
		padding: 20px 24px 32px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.footer-bottom-links {
		gap: 20px;
		flex-wrap: wrap;
	}

	.footer-made-in {
		display: none;
	}
}

:root {
	--gold: #d4af37;
	--gold-dim: rgba(212, 175, 55, 0.15);
	--gold-border: rgba(212, 175, 55, 0.3);
	--white: #ffffff;
	--white-dim: rgba(255, 255, 255, 0.7);
	--white-faint: rgba(255, 255, 255, 0.05);
	--bg: #000000;
	--bg-surface: #0a0a0a;
	--bg-elevated: #111111;
	--nav-height: 80px;
	--font: "Inter", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

p,
a,
button {
	font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter", sans-serif;
}

body {
	background-color: #000;
	color: #fff;
	overflow-x: hidden;
	cursor: default;
	font-family: "Inter", sans-serif;
}

body::-webkit-scrollbar {
	display: none;
}

.btn {
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	outline: none;
}

a.btn {
	font-size: 14px;
	text-decoration: none;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: var(--gold);
	color: #000;
	font-family: var(--font);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition:
		background 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.25s ease;
	white-space: nowrap;
}

.btn-primary:hover {
	background: #e0c040;
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-secondary {
	background-color: transparent;
	color: #d4af37;
	border: 1px solid #d4af37;
}

.btn-secondary:hover {
	background-color: rgba(0, 90, 255, 0.1);
	transform: translateY(-2px);
}

.more-link {
	color: #d4af37;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.more-link:hover {
	color: #7c3aed;
	transform: translateX(5px);
}

.more-link::after {
	content: "→";
	transition: transform 0.3s ease;
}

.more-link:hover::after {
	transform: translateX(3px);
}

/* Toast Notification Styles */
.toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #ffffff;
	color: #374151;
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.1),
		0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	min-width: 280px;
	max-width: 400px;
	z-index: 9999;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.toast i {
	font-size: 16px;
	flex-shrink: 0;
}

.toast-show {
	transform: translateX(0);
	opacity: 1;
}

/* Success toast (item added) */
.toast.toast-success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	border-color: #065f46;
}

.toast.toast-success i {
	color: #ffffff;
}

/* Removed toast (item removed) */
.toast.toast-removed {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #ffffff;
	border-color: #991b1b;
}

.toast.toast-removed i {
	color: #ffffff;
}

/* Error toast */
.toast.toast-error {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	border-color: #92400e;
}

.toast.toast-error i {
	color: #ffffff;
}

/* Toast message text */
#toast-message {
	flex: 1;
	line-height: 1.4;
}

/* Animation for mobile devices */
@media (max-width: 768px) {
	.toast {
		bottom: 10px;
		right: 10px;
		left: 10px;
		min-width: auto;
		max-width: none;
		transform: translateY(-100%);
	}

	.toast-show {
		transform: translateY(0);
	}
}

.toast:hover {
	transform: translateX(0) scale(1.02);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.15),
		0 6px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.toast:hover {
		transform: translateY(0) scale(1.02);
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.toast {
		background: #1f2937;
		color: #f9fafb;
		border-color: #374151;
	}

	.toast.toast-success {
		background: linear-gradient(135deg, #059669 0%, #047857 100%);
	}

	.toast.toast-removed {
		background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	}

	.toast.toast-error {
		background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
	}
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.toast {
		transition:
			opacity 0.2s ease-in-out,
			transform 0.2s ease-in-out;
	}
}

/* High contrast mode */
@media (prefers-contrast: high) {
	.toast {
		box-shadow: 0 0 0 2px currentColor;
		border-width: 2px;
	}
}

.hidden {
	display: none !important;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    background: var(--bg);
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.cart-subtitle {
    font-size: 1.1rem;
    color: var(--white-dim);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid var(--white-faint);
    overflow: hidden;
}

.cart-items-header {
    background: var(--gold-dim);
    border-bottom: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--white-faint);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

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

.cart-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    transition: all 0.4s ease;
}

.cart-item-price.cart-price-animate {
    transform: scale(1.1);
    color: var(--gold);
}

.cart-item-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-remove-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-dim);
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
}

.cart-remove-btn:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    color: #f87171;
    transform: translateY(-1px);
}

.cart-items-continue {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
}

.cart-summary {
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid var(--white-faint);
    padding: 0;
    position: sticky;
    top: 2rem;
}

.cart-summary-header {
    background: var(--gold-dim);
    border-bottom: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

.cart-summary-content {
    padding: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--white-faint);
}

.cart-summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-summary-label {
    color: var(--white-dim);
}

.cart-summary-value {
    font-weight: 600;
    color: var(--white);
    transition: all 0.4s ease;
}

.cart-summary-value.cart-total-animate {
    transform: scale(1.05);
    color: var(--gold);
}

.cart-total-row {
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-total-row .cart-summary-value {
    color: var(--gold);
}

.cart-checkout-btn {
    width: 100%;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.cart-checkout-btn:hover {
    background: #e0c040;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.cart-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--white-dim);
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid var(--white-faint);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: var(--gold);
}

.cart-empty-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white-dim);
}

.cart-continue-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-continue-btn:hover {
    background: #e0c040;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cart-item-removing {
    animation: slideOut 0.4s ease-out forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(-100%);
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.add-to-cart.added-to-cart {
    background-color: rgba(34, 197, 94, 0.15) !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
    color: #4ade80 !important;
    cursor: not-allowed;
    opacity: 0.9;
}

.add-to-cart.added-to-cart:hover {
    background-color: rgba(34, 197, 94, 0.15) !important;
    transform: none;
}

.add-to-cart {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .cart-container {
        padding: 1rem;
    }

    .cart-title {
        font-size: 2rem;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-summary {
        position: static;
    }

    .cart-item-main {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item-price-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cart-remove-btn {
        align-self: flex-end;
    }
}
