/* ==========================
   Maple Theme Base Reset
   ========================== */

 /*  @import url('fonts.css'); */

#account-icon{display: none;visibility: hidden;}
:root {

  --font-size-base: 1rem;
}

.viewer-360,
.viewer-360 img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.viewer-360 {
  cursor: grab;
}

.viewer-360.dragging {
  cursor: grabbing; /* or use cursor: grabbing; for standard experience */
}

nav, .ui-label, button {
 /*  font-family: var(--font-ui);  */
  letter-spacing: 0.02em;
  font-size: 0.875rem;
}

.currency-switcher{
background: #f1f1f1; text-align: center;}

.currency-banner {
font-size: 0.9em;
border-top: 3px solid #ccc;
text-align: center;
background: #2F3238;
color: #EEF0F4;
font-weight: bold;
}
.currency-banner small{
  font-weight:normal;
  color:#B6BCC7;
}

.currency-banner small a span{ 
  font-weight: bold;
  text-decoration: underline;
}
.currency-cad .currency-banner {
  border-color: #B53936;
}


/* Box sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins/paddings */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* Set core body styles */
body {
   /* font-family: var(--font-sans);   */
font-family: sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  line-height: 1.6;
  background: #f7f3ec;
  color: #222;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Image tweaks */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form elements */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

/* Remove default button styles */
button {
  cursor: pointer;
}

/* Table reset */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
 /* font-family: var(--font-serif); */
font-family:serif;
  line-height: 1.2;
}

/* HTML5 elements */
main, header, footer, nav, section, article, aside, figure {
  display: block;
}

/* Optional: Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
}

/* Set consistent spacing utility (optional starter) */
:root {
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
}


.site-header {
	background-color: #f7f3ec;
	padding: 1rem 2rem;
}
.site-title{
  color:#B53936;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.site-logo svg {
	margin-right: 0.5rem;
	height: 32px;
	width: 32px;
	fill: currentColor;
}

.site-title {
	font-weight: bold;
	font-size: 1.25rem;
	display: inline-block;
}

.site-nav .menu {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.site-nav .menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.site-nav .menu a:hover,
.site-nav .menu a:focus {
	color: #000;
}

/* Dropdown prep (not yet used) */
.site-nav .menu li {
	position: relative;
}

.site-nav .menu li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	padding: 0.5rem 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-nav .menu li:hover > ul {
	display: block;
}


#header-top-bar{
  display: none;
  visibility: hidden;
}