﻿@import"fontawesome/css/all.min.css";

.img-fluid { width: 100%; }

:root {
	--color-white: #FFFFFF;
	--color-white-alt: #F6F8F8;
	--color-black: #000000;
	--color-black-alt: #21282D;
	--color-gray-dark: #1D1D1D;
	--color-gray-dark-alt: #363E42;
	--color-gray-mid: #A5A5A5;
	--color-gray-darkest: #333333;
	--color-gray: #E6EAE9;
	--color-gray-alt: #c7cac9;
	--color-gray-alt-2: #818382;
	--color-gray-alt-3: #4b4c4d;
	--color-gray-light: #CCC;
	--color-gray-light-alt: #F3F3F3;
	--color-gray-70: #707070;
	--color-blue: #004868;
	--color-blue-alt: #026982;
	--color-blue-bright: #0396FF;
	--color-blue-bright-alt: #03B6FF;
	--color-blue-mid: #066EB9;
	--color-blue-light: #D6ECF4;
	--color-blue-dark: #032433;
	--color-deep-ocean-blue: #001D25;
	--color-green: #5CFF96;
	--color-green-alt: #038710;
	--color-orange: #DC7A1E;
	--color-orange-light: #FFA551;
	--color-purple: #C361FF;
	--color-red: #F41C1C;
}

/* move this to it's own cart based css file and include globally */
.promo-details {
	margin-top: 10px;
}

.promo-item {
	justify-content: space-between;
	margin-bottom: 5px;
}

.promo-code {
	font-weight: 500;
}

.promo-amount {
	color: #28a745;
	font-weight: 500;
}

.promo-total {
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 5px;
	border-top: 1px dashed #ddd;
	font-weight: 600;
}

.savings-amount {
	color: #28a745;
}

.cart-summary .summary-line.total span strong {
	font-weight: 700;
	font-size: 1.1em;
}

.cart-summary .summary-line.total span {
	font-weight: 700;
	font-size: 1.1em;
}

.summary-note {
	font-size: 0.8rem;
	color: #666;
	margin-top: 5px;
	font-style: italic;
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 37px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #004868;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	z-index: 1000;
}

.scroll-to-top:hover {
	background-color: #003552;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
	display: flex;
}