/* i need a var for height */
:root {
	--header-height: 44px;
}



* {
	box-sizing: border-box; 
}

/*body {
	margin: 0 auto; 
}*/

body, td, input[type=text], textarea {
	color: #444; 
	font-family: Montserrat, arial;
	background-color: #FFF;
}

/* Paragraph text styling - bigger and more readable */
p {
	font-size: 1.1rem;
	line-height: 2.5rem !important;
	margin-bottom: 1.2rem;
	color: #444;
	font-family: Montserrat, arial;
}

/* Responsive paragraph text */
@media (max-width: 768px) {
	p {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}
}

@media (max-width: 576px) {
	p {
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: 0.9rem;
	}
}

/* Strong text styling - bigger and more readable */
strong {
	font-size: 1.15rem;
	font-weight: 700;
	color: rgba(73, 38, 98, 1);
	font-family: Montserrat, arial;
	line-height: 1.6;
}

/* Responsive strong text */
@media (max-width: 768px) {
	strong {
		font-size: 1.05rem;
		line-height: 1.5;
	}
}

@media (max-width: 576px) {
	strong {
		font-size: 1rem;
		line-height: 1.4;
	}
}

img {
	max-width: 100%; 
}

.center {
	text-align: center; 
}

.pointer-cursor {
	cursor: pointer;
}

.white { color: white; }
.lighgrey { color: #CCC; }
.blackbg { background-color: #000; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px 0;
	font-family: Montserrat, arial;
	font-weight: 700;
	color: rgba(73, 38, 98, 1);
}


#topmenu {
	background: linear-gradient(135deg, rgba(60, 40, 90, 0.92) 0%, rgba(73, 38, 98, 0.88) 60%, rgba(48, 25, 72, 0.9) 100%);
	padding: 0;
	height: var(--header-height);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	transition: transform 0.3s ease-in-out;
	display: flex;
	align-items: center;
}

#topmenu.hidden {
	transform: translateY(-100%);
}

/* Add padding to body to compensate for fixed header */
body {
	padding-top: var(--header-height);
}

#toplogo{
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	height: var(--header-height);
}

#toplogo strong {
	color: #fff;
	font-size: inherit;
}

/* Top Navigation Styles */
.top-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header-height);
}

.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
	height: var(--header-height);
}

.nav-link {
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 0 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	height: var(--header-height);
	line-height: 1;
}

.nav-link:hover {
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: white;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

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

/* Mobile Navigation */
@media (max-width: 992px) {
	.nav-menu {
		gap: 15px;
	}
	
	.nav-link {
		font-size: 0.85rem;
		padding: 6px 12px;
	}
}

@media (max-width: 768px) {
	.top-navigation {
		display: none;
	}
}







.form-input, .form-submit {
	width: 100%;
	padding: 10px;
	margin: 5px 0;
}

.form-input input {
	/* only bottom border*/
	border: none;
	border-bottom: 1px solid #000;
	background-color: #F0F0F0;
	padding: 10px;
}

.form-input label{
	display: block;
	font-size: 90%;
}

.form-submit input[type="submit"] {
	background-color: #444;
	color: #fff;
	padding: 10px;
}

.form-footer{
	margin: 20px 0 0 0;
	padding: 10px;
}



.blackbutton {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	transition: all 0.3s ease;
	color: #fff;
	padding: 20px 30px;
	text-decoration: none;
	transition: all 0.3s;
	border: #000 1px solid;
	background-color: rgba(73, 38, 98, 1);
	display: inline-flex;
	align-items: center;
	/*width: 100%;*/
}

.blackbutton:hover {
	background-color: #fff;
	color: #444;
}

.blackbutton.mini {
	padding: 8px 16px;
	width: auto;
	font-size: 14px;
	border-radius: 4px;
}

.blackbutton.mini.red {
	background-color: #FFF;
	color: #FF0000;
}

.align-right {
	text-align: right;
}

/* Empty Cart Button - Red styling */
.empty-cart-button {
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #dc3545;
	padding: 8px 16px;
	text-decoration: none;
	background-color: transparent;
	display: inline-flex;
	align-items: center;
	width: auto;
	font-weight: 400;
	font-size: 14px;
}

.empty-cart-button:hover {
	background-color: #dc3545;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.empty-cart-button .material-icons {
	margin-right: 6px;
	font-size: 16px;
}

/* Cart table styling - limit price column width */
.table th:nth-child(4),
.table td:nth-child(4) {
	width: 1%;
	white-space: nowrap;
}

.table th:nth-child(4),
.table td:nth-child(4),
.table th:nth-child(5),
.table td:nth-child(5) {
	text-align: right;
}

.table tfoot td {
	font-weight: bold;
}


.photolink{
	text-decoration: none;
	color: #000;
}

.photolink:hover{
	color: #333;
}

.photo-max-height{
	max-height: 800px;
}

/* Photo gallery styling with rounded corners and hover animations */
#album img {
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: auto;
}

#album img:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	filter: brightness(0.7);
}

#album a {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

#album a:hover {
	border-radius: 6px;
}

#album a::after {
	content: '+';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 84px;
	font-weight: 300;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#album a:hover::after {
	opacity: 1;
}

.pricecat {
	position: relative;
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
}



.pricecat .h4 {
	color: rgba(73, 38, 98, 1);
	margin-bottom: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.pricecat .text {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 20px;
}

.pricecat-price {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.pricecat-price strong {
	font-size: 1.5rem;
	color: rgba(73, 38, 98, 1);
	font-weight: 700;
}

.pricecat-price a {
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 10px rgba(73, 38, 98, 0.2);
}

.pricecat-price a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
}


/*.pricecat-price{
	position: absolute;
	bottom: 15px;
	height: 50px;
}*/


/* Navigation buttons container */
.navigation-buttons {
	display: flex;
	gap: 12px;
	justify-content: flex-start;
	margin-bottom: 10px;
}

/* Navigation buttons styling */
.toalbum, .tocart, .delcart {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 8px;
	flex: 0 0 auto;
	min-width: auto;
	width: auto;
	justify-content: center;
	transition: all 0.3s ease;
}

.toalbum .material-icons, .tocart .material-icons, .delcart .material-icons {
	font-size: 18px;
	margin-right: 0;
}

/* Pretty red delete button styling */
.delcart {
	background-color: #fff;
	border: 1px solid #dc3545;
	border-radius: 6px;
	color: #dc3545;
	padding: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	min-width: 36px;
	min-height: 36px;
}

.delcart:hover {
	background-color: #dc3545;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.delcart .material-icons {
	font-size: 20px !important;
	margin-right: 0 !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
	.navigation-buttons {
		flex-direction: column;
		gap: 8px;
	}
	
	.toalbum, .tocart {
		width: 100%;
		justify-content: center;
	}
}

/* Top menu right side alignment */
#topmenu .float-end {
	display: flex;
	align-items: center;
	height: var(--header-height);
	gap: 10px;
}

.carticon{
	position: relative;
	display: flex;
	align-items: center;
	height: 44px;
	color: white;
	text-decoration: none;
}

.dropdown.dropstart {
	display: flex;
	align-items: center;
	height: 44px;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	height: 44px;
}

#cartcount{
	position: absolute;
	bottom: 0px;
	left: 18px;
	background-color: #FF0000;
	color: #fff;
	border-radius: 50%;
	padding: 4px 6px;
	font-size: 16px;
	line-height: 16px;
}


.payment-icons {
    display: flex;
    justify-content: start;
    width: 100%;
    max-width: 360px;
}

.payment-icons img {
	margin: 0 20px 0 0;
	max-height: 36px;
	height: 36px;
	width: auto;
}

.icon-payment {
    text-align: center;
	height: 36px;
}

.icon-payment:first-child {
    text-align: left;
}

.icon-payment:last-child {
    text-align: right;
}

#album{
	position: relative;
}

#albumselectortree {
	list-style: none;
	margin: 0;
	padding: 15px 0;
	font-family: Montserrat, arial;
}

#albumselectortree ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0 20px;
	position: relative;
}

#albumselectortree ul::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, rgba(73, 38, 98, 0.3) 0%, rgba(73, 38, 98, 0.1) 100%);
}

#albumselectortree li {
	position: relative;
	margin: 0;
}

#albumselectortree li::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 50%;
	width: 8px;
	height: 1px;
	background-color: rgba(73, 38, 98, 0.3);
	transform: translateY(-50%);
}

.album-list-item {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	margin: 12px 0;
	/*background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);*/
	border: 1px solid #e9ecef;
	border-radius: 2px;
	color: #495057;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.album-list-item::before {
	content: 'photo_library';
	font-family: 'Material Icons';
	margin-right: 10px;
	font-size: 20px;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.album-list-item:hover {
	background: linear-gradient(135deg, rgba(73, 38, 98, 0.1) 0%, rgba(60, 40, 90, 0.1) 100%);
	border-color: rgba(73, 38, 98, 0.3);
	color: rgba(73, 38, 98, 1);
	/*transform: translateX(4px);*/
	box-shadow: 0 4px 12px rgba(73, 38, 98, 0.15);
}

.album-list-item:hover::before {
	content: 'photo_library';
	opacity: 1;
}

.album-list-item.active {
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	border-color: rgba(73, 38, 98, 1);
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
}

.album-list-item.active::before {
	content: 'photo_library';
	opacity: 1;
	color: white;
}

.album-list-item.active:hover {
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
	/*transform: translateX(4px);*/
}

/* Enhanced tree structure for deeper nesting */
#albumselectortree ul ul {
	padding-left: 25px;
}

#albumselectortree ul ul .album-list-item {
	font-size: 0.85rem;
	padding: 10px 14px;
}

#albumselectortree ul ul ul .album-list-item {
	font-size: 0.8rem;
	padding: 8px 12px;
	opacity: 0.9;
}

/* Current album highlighting - matches active tag style */
.album-list-item.current {
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	border-color: rgba(73, 38, 98, 1);
	font-weight: 600;
	box-shadow: 0 3px 10px rgba(73, 38, 98, 0.3);
	transform: translateY(-1px);
	position: relative;
}

.album-list-item.current::before {
	content: 'photo_library';
	font-family: 'Material Icons';
	opacity: 1;
	color: white;
}

.album-list-item.current:hover {
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
	color: white;
}

/* Primary Paginator Styles */
#paginator {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 20px 0;
	padding: 20px;
	border-radius: 12px;
}

.prevpage, .nextpage {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(73, 38, 98, 0.2);
	font-size: 0.9rem;
}

.prevpage:hover, .nextpage:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
}

.prevpage:disabled, .nextpage:disabled {
	background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
	color: #6c757d;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prevpage:disabled:hover, .nextpage:disabled:hover {
	transform: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.pageofpages {
	display: inline-flex;
	align-items: center;
	background-color: white;
	/*border: 2px solid rgba(73, 38, 98, 0.2);*/
	border-radius: 8px;
	color: rgba(73, 38, 98, 1);
	padding: 12px 20px;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.spinning {
	display: inline-block;
	animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }

  .albumloader{
	display: none;
	position: absolute;
	z-index: 999;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .albumloader .material-icons {
	font-size: 82px !important;
  }


/* Secondary Paginator Styles */
#second-paginator {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 20px 0;
	padding: 20px;
	border-radius: 12px;
	flex-wrap: wrap;
}

#second-paginator button {
	min-width: 44px;
	height: 44px;
	border: 2px solid rgba(73, 38, 98, 0.2);
	border-radius: 8px;
	background-color: white;
	color: rgba(73, 38, 98, 1);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

#second-paginator button:hover {
	background: linear-gradient(135deg, rgba(73, 38, 98, 0.1) 0%, rgba(60, 40, 90, 0.1) 100%);
	border-color: rgba(73, 38, 98, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(73, 38, 98, 0.2);
}

#second-paginator button.active {
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	border-color: rgba(73, 38, 98, 1);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
}

#second-paginator button.active:hover {
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
}

/* Responsive adjustments for paginators */
@media (max-width: 576px) {
	#paginator {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}
	
	.prevpage, .nextpage {
		width: 100%;
		justify-content: center;
	}
	
	.pageofpages {
		order: -1;
	}
	
	#second-paginator {
		padding: 15px;
		gap: 6px;
	}
	
	#second-paginator button {
		min-width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}
}




/*#albumfilter {
	position: relative;
	width: 100%;
	height: 0px;
	background-color: #FFF;
	z-index: 999;
	transition: all 0.5s ease;
	border-bottom: #CCC 1px solid;
	box-shadow: 0 0 0 0 rgba(0,0,0,0);
	overflow: hidden;
}

#albumfilter.active {
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}*/

.album-tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	margin: 3px;
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
	border: 1px solid #e9ecef;
	border-radius: 6px;
	color: #495057;
	font-weight: 500;
	font-size: 0.85rem;
	font-family: Montserrat, arial;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	position: relative;
}

.album-tag::before {
	content: 'label';
	font-family: 'Material Icons';
	margin-right: 6px;
	font-size: 18px;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.album-tag:hover {
	background: linear-gradient(135deg, rgba(73, 38, 98, 0.1) 0%, rgba(60, 40, 90, 0.1) 100%);
	border-color: rgba(73, 38, 98, 0.3);
	color: rgba(73, 38, 98, 1);
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(73, 38, 98, 0.15);
}

.album-tag:hover::before {
	opacity: 1;
}

.album-tag.active {
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	border-color: rgba(73, 38, 98, 1);
	font-weight: 600;
	box-shadow: 0 3px 10px rgba(73, 38, 98, 0.3);
	transform: translateY(-1px);
}

.album-tag.active::before {
	color: white;
	opacity: 1;
}

/*
#openfilter{
	float: right;
	cursor: pointer;
	line-height: 42px !important;
	height: 42px;
	width: 180px;
	color: #000;
	text-decoration: none;
	border: #000 1px solid;
	text-align: center;
	box-sizing: border-box !important;
	display: block;
}
#openfilter div{
	line-height: 42px !important;
	height: 42px;
	width: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
*/

#openfilter {
    float: right;
    cursor: pointer;
    height: 48px;
    width: 180px;
    color: #fff;
    text-decoration: none;
    border: rgba(73, 38, 98, 1) 1px solid;
    background-color: rgba(73, 38, 98, 1);
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#openfilter:hover {
    background-color: #fff;
    color: rgba(73, 38, 98, 1);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(73, 38, 98, 0.2);
}

#openfilter div {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#openfilter .material-icons {
    font-size: 20px;
}

#resetfilter{
	float: right;
    cursor: pointer;
    height: 48px;
    width: 60px;
    color: rgba(73, 38, 98, 1);
    text-decoration: none;
    border: rgba(73, 38, 98, 1) 1px solid;
    border-radius: 8px;
    text-align: center;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	margin-right: 12px;
}

#resetfilter:hover {
	background-color: rgba(73, 38, 98, 1);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 8px rgba(73, 38, 98, 0.2);
}

.filterheader{
	height: 36px;
}

.closebutton{
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 3px;
	padding: 4px;
	color: #000;
	background-color: #FFF;
	/*border: 1px solid #000;*/
	text-decoration: none;
}


#footer {
	clear: both;
	background-color: #ffffff;
	border-top: 3px solid rgba(73, 38, 98, 1);
	margin-top: 60px;
	padding: 40px 0 30px;
	position: relative;
}

#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(73, 38, 98, 0.3) 50%, transparent 100%);
}

.footer-content {
	color: #6c757d;
}

/*.footer-section {
	padding: 0 15px;
}*/

.footer-title {
	color: rgba(73, 38, 98, 1);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.footer-subtitle {
	color: #6c757d;
	font-style: italic;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.footer-heading {
	color: rgba(73, 38, 98, 1);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #6c757d;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	padding: 5px 0;
}

.footer-links a:hover {
	color: rgba(73, 38, 98, 1);
	transform: translateX(5px);
}

.footer-links a .material-icons {
	font-size: 18px;
	opacity: 0.7;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #6c757d;
	transition: color 0.3s ease;
}

.contact-item:hover {
	color: rgba(73, 38, 98, 1);
}

.contact-item .material-icons {
	color: rgba(73, 38, 98, 1);
	font-size: 18px;
	min-width: 18px;
}

.footer-admin {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
	text-align: center;
}

.admin-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(73, 38, 98, 0.2);
}

.admin-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.footer-section {
		text-align: center;
		margin-bottom: 30px;
	}
	
	.footer-links a {
		justify-content: center;
	}
	
	.contact-item {
		justify-content: center;
	}
}




.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.material-icons.white { color: white; }





.dropstart .dropdown-toggle::before {
    display: none;
}

.dropdown-menu {
	background-color: #000;
	transform: translate3d(-2px, 17px, 0px) !important;
	border-radius: 0px;
}

.dropdown-item{
	color: #fff;
	line-height: 42px;
	height: 42px;
	display: flex;
    align-items: center;
}

.carousel {
	width: 100%;
}

.carousel-item img {
	object-fit: cover;
	object-position: center;
	overflow: hidden;
}

@media only screen {
    .carousel {
		height: 40vh;
		min-height: 360px;
	}

	.carousel-item img {
		height: 40vh;
		min-height: 360px;
	}
}

@media only screen and (min-width: 992px) {
	.carousel {
		height: 50vh;
		min-height: 600px;
	}

	.carousel-item img {
		height: 50vh;
		min-height: 600px;
	}	
}



.image-container {
    position: relative;
    display: block;
	background-color: #e9ecef;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 20px;
}

.imgincol {
    cursor: pointer;
}







/* ORDER */

.order-wrapper {
	margin: 0 0 24px 0;
	padding: 0;
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid #e9ecef;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
}

.order-wrapper:hover {
	box-shadow: 0 6px 24px rgba(73, 38, 98, 0.15);
	border-color: rgba(73, 38, 98, 0.3);
}

.order{
	padding: 20px 24px;
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
}

.order-head{
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 8px;
	color: white;
	font-family: Montserrat, arial;
}

.order-info{
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	font-family: Montserrat, arial;
}

.order-items{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
}

.order-item{
	padding: 16px 24px;
	border-bottom: 1px solid #e9ecef;
	display: flex;
	align-items: center;
	transition: background-color 0.2s ease;
	font-family: Montserrat, arial;
}

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

.order-item:hover {
	background-color: rgba(73, 38, 98, 0.05);
}

.order-item-info {
	display: flex;
	align-items: center;
	flex: 1;
	gap: 0;
}

.order-item-info a {
	color: rgba(73, 38, 98, 1);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
	flex: 0 0 40%;
	padding-right: 16px;
}

.order-item-info a:hover {
	color: rgba(60, 40, 90, 1);
	text-decoration: underline;
}

.order-item-type {
	padding: 4px 12px;
	background-color: #f8f9fa;
	border-radius: 16px;
	font-size: 0.85rem;
	color: #6c757d;
	font-weight: 500;
	flex: 0 0 100px;
	text-align: center;
	margin-right: 16px;
}

.order-item-price {
	font-weight: 600;
	color: rgba(73, 38, 98, 1);
	flex: 0 0 100px;
	text-align: right;
	margin-right: 16px;
}

.order-download-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(73, 38, 98, 0.2);
}

.order-download-link:hover {
	background: linear-gradient(135deg, rgba(60, 40, 90, 1) 0%, rgba(73, 38, 98, 1) 100%);
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(73, 38, 98, 0.3);
}

.order-download-link-disabled {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: #e9ecef;
	color: #6c757d;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: not-allowed;
}

.order-download-link-disabled .material-icons {
	color: #6c757d;
}

.order-download-link .material-icons {
	font-size: 18px;
}

/* Responsive Order Items */
@media (max-width: 768px) {
	.order-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
		gap: 12px;
	}

	.order-item-info {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 8px;
	}

	.order-item-info a {
		flex: 1;
		width: 100%;
		padding-right: 0;
	}

	.order-item-type {
		flex: none;
		margin-right: 0;
	}

	.order-item-price {
		flex: none;
		text-align: left;
		margin-right: 0;
	}

	.order-download-link {
		width: 100%;
		justify-content: center;
	}

	.order-head {
		font-size: 1rem;
	}

	.order-info {
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.order-wrapper {
		margin: 0 0 16px 0;
	}

	.order {
		padding: 16px;
	}

	.order-item {
		padding: 12px;
	}

	.order-download-link {
		padding: 10px 14px;
		font-size: 0.85rem;
	}
}



@media only screen {
    
}

@media only screen and (min-width: 576px) {
	
}

@media only screen and (min-width: 768px) {
    
}

@media only screen and (min-width: 992px) {
	
}

@media only screen and (min-width: 1200px) {
	
}

@media only screen and (min-width: 1400px) {
	
}

/* ===============================================
   HAMBURGER MENU STYLES
   =============================================== */

/* Hamburger Menu Button */
.hamburger-menu {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px; /* Same height as md-24 icons */
    width: 36px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-menu:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Mobile Offcanvas Styles */
.offcanvas-header {
    background-color: rgba(73, 38, 98, 1);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: white !important;
    font-family: Montserrat, arial;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 44px;
}

.offcanvas-title:hover {
    color: white !important;
    text-decoration: none;
}

.offcanvas-title strong {
    color: white !important;
    font-size: inherit;
}

#mobile-toplogo {
    color: white !important;
    font-family: Montserrat, arial;
    font-weight: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 44px;
}

#mobile-toplogo:hover {
    color: white !important;
    text-decoration: none;
}

#mobile-toplogo strong {
    color: white !important;
    font-size: inherit;
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 0.375rem;
    opacity: 1;
}

.btn-close:hover {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.btn-close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Mobile Navigation */
.mobile-navigation {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: #444;
    text-decoration: none;
    font-family: Montserrat, arial;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: rgba(73, 38, 98, 1);
    background-color: rgba(73, 38, 98, 0.05);
    text-decoration: none;
}

.mobile-nav-link .material-icons,
.mobile-nav-link .fi {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.mobile-nav-link .fi {
    width: 1.2rem;
    height: 1.2rem;
}

.mobile-nav-divider {
    height: 1px;
    background-color: #ddd;
    margin: 0.5rem 0;
}

/* Hide desktop navigation on small screens */
@media (max-width: 991.98px) {
    .top-navigation {
        display: none;
    }
}

/* Password Change Form Styling */
.password-change-section {
    max-width: 500px;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.password-change-section h2 {
    font-family: Montserrat, arial;
    font-weight: 600;
    color: rgba(73, 38, 98, 1);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.password-form .form-group {
    margin-bottom: 1.5rem;
}

.password-form label {
    font-family: Montserrat, arial;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container .form-control {
    padding-right: 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.password-input-container .form-control:focus {
    border-color: rgba(73, 38, 98, 1);
    box-shadow: 0 0 0 0.2rem rgba(73, 38, 98, 0.25);
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: rgba(73, 38, 98, 1);
}

.password-toggle .material-icons {
    font-size: 1.2rem;
}

.password-form .form-text {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Password Strength Indicator */
.password-strength-indicator {
    margin-bottom: 1.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background-color: #ccc;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-fill.weak {
    background-color: #dc3545;
    width: 25%;
}

.strength-fill.fair {
    background-color: #fd7e14;
    width: 50%;
}

.strength-fill.good {
    background-color: #ffc107;
    width: 75%;
}

.strength-fill.strong {
    background-color: #28a745;
    width: 100%;
}

.strength-text {
    font-size: 0.875rem;
    color: #666;
    font-family: Montserrat, arial;
}

/* Alert Styling for Password Messages */
.alert {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-family: Montserrat, arial;
}

.alert .material-icons {
    margin-right: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Password Form Button */
.password-form .blackbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Ensure hamburger menu is properly aligned */
.hamburger-menu .material-icons {
    font-size: 24px;
    line-height: 1;
}

/* Mobile Language Buttons */
.mobile-language-section {
    margin-top: auto;
    margin-bottom: 0;
    padding: 1rem 0 0 0;
}

.mobile-language-buttons {
    display: flex;
    gap: 0;
    width: 100%;
}

.mobile-language-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    text-decoration: none;
    color: #444;
    font-family: Montserrat, arial;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    min-height: 55px;
}

.mobile-language-btn:not(:first-child) {
    border-left: none;
}

.mobile-language-btn:hover {
    background: rgba(73, 38, 98, 1);
    border-color: rgba(73, 38, 98, 1);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-language-btn .fi {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-language-btn span:last-child {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Active language button styling */
.mobile-language-btn.active {
    background: rgba(73, 38, 98, 1);
    border-color: rgba(73, 38, 98, 1);
    color: white;
}

.mobile-language-btn.active:hover {
    background: rgba(73, 38, 98, 0.9);
    border-color: rgba(73, 38, 98, 0.9);
}

/* Login Form Styling */
.login-form .form-control:focus {
    border-color: rgba(73, 38, 98, 1);
    box-shadow: 0 0 0 0.2rem rgba(73, 38, 98, 0.25);
    outline: none;
}

.login-form .blackbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-links a:hover {
    color: rgba(60, 40, 90, 1) !important;
    text-decoration: underline !important;
}

/* Login page white text override */
.white p {
    color: white !important;
}

/* Register Form Styling */
.register-form .form-control:focus {
    border-color: rgba(73, 38, 98, 1);
    box-shadow: 0 0 0 0.2rem rgba(73, 38, 98, 0.25);
    outline: none;
}

.register-form .blackbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-links a:hover {
    color: rgba(60, 40, 90, 1) !important;
    text-decoration: underline !important;
}

/* Forgot Password Form Styling */
.forgot-password-form .form-control:focus {
    border-color: rgba(73, 38, 98, 1);
    box-shadow: 0 0 0 0.2rem rgba(73, 38, 98, 0.25);
    outline: none;
}

.forgot-password-form .blackbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.forgot-password-links a:hover {
    color: rgba(60, 40, 90, 1) !important;
    text-decoration: underline !important;
}

/* Order Thumbnail Hover Effects */
.order-thumbnail a:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.order-thumbnail a {
    border-radius: 4px;
    overflow: hidden;
}

/* Reset Password Form Styling */
.reset-password-form .form-control:focus {
    border-color: rgba(73, 38, 98, 1);
    box-shadow: 0 0 0 0.2rem rgba(73, 38, 98, 0.25);
    outline: none;
}

.reset-password-form .blackbutton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-password-links a:hover {
    color: rgba(60, 40, 90, 1) !important;
    text-decoration: underline !important;
}

/* Home Page Punchline Styling */
.punchline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 1rem;
    font-family: Montserrat, arial;
    color: #444;
}

/* Responsive punchline */
@media (max-width: 768px) {
    .punchline {
        font-size: 1.15rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .punchline {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-top: 0.75rem;
    }
}

/* Edit Link Styling for Admin Users */
.edit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(73, 38, 98, 1) 0%, rgba(60, 40, 90, 1) 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: Montserrat, arial;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(73, 38, 98, 0.2);
}

.edit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(73, 38, 98, 0.3);
    color: white;
    text-decoration: none;
}

.edit-link::before {
    content: '✏️';
    font-size: 0.8rem;
}

.legal, .legal a {
	text-align: center;
	font-size: 0.85rem;
	color: #666;
	margin-top: 40px;
	margin-bottom: 20px;
}

.grecaptcha-badge { visibility: hidden; }