html {
  --wp-admin--admin-bar--height: 0px;
  scroll-padding-top: var(--wp-admin--admin-bar--height)
}
.hours-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--e-global-color-accent);
}
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .65rem 0;
  border-bottom: 1px solid var(--e-global-color-accent);
  font-size: .95rem;
}
.hours-list li.today {
  background: var(--e-global-color-secondary);
  margin: 0 -1.75rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-weight: 700;
  color: var(--e-global-color-text);
  border-bottom: 1px solid var(--e-global-color-accent);
  position: relative;
}
.hours-list li.today::before {
  content: "Today";
  position: absolute; left: 1.75rem; top: -.85rem;
  background: var(--e-global-color-accent); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: .2em .6em;
  border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
}

body .gform-footer .gform_button {
    color: #ffffff !important;
    border-width: 0px !important;
    border-radius: 2px;
    font-size: 16px;
    background-color: #165291;
    margin:0 auto;
}

.section{padding:2.5em 0;}
.section .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ----- Directory ----- */
.directory-controls {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.search-box { position: relative; flex: 1; min-width: 240px; }
.search-box input {
  width: 100% !important;
  padding: 1rem 1rem 1rem 2.8rem !important;
  border: 2px solid var(--asc-grey-200) !important;
  border-radius: var(--radius-pill) !important;
  font: inherit; background: #fff;
  font-size: 1rem;
}
.search-box input:focus { outline: 0; border-color: var(--asc-primary); box-shadow: 0 0 0 4px rgba(31,96,171,.12); }
.search-box .icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--asc-primary); }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  background: #fff; color: var(--asc-background);
  padding: .55rem 1.15rem; border-radius: var(--radius-pill);
  border: 1px solid var(--asc-grey-200);
  font-weight: 700; font-size: .85rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { border-color: var(--asc-primary); }
.chip.active { background: var(--asc-primary); color: #fff; border-color: var(--asc-primary); }

.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.store-card {
  background: #fff; border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--asc-grey-100);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--asc-teal); color: inherit; }
.store-card .store-thumb {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--asc-primary);
  position: relative;
}
.store-card .store-thumb .store-num {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.95);
  color: var(--asc-text);
  font-weight: 800; font-size: .78rem;
  padding: .25em .7em;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}
.store-card-body { padding: 1rem 1.15rem 1.25rem; }
.store-card h3 { font-family: "Poppins", Sans-serif; font-size: 1em; margin: 0 0 .25rem; color: var(--asc-text); font-weight: 600;letter-spacing: -0.1px; }
.store-card .cat { font-size: .78rem; color: var(--asc-grey-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.store-card .hours { font-size: .85rem; color: var(--asc-grey-700); margin-top: .55rem; }

/* ----- Store detail page ----- */
.store-hero {
  position: relative;
  aspect-ratio: 21/6;
  min-height: 280px;
  background-size: cover; background-position: center;
  background-color: var(--asc-primary);
  
}
.store-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,52,96,.15), rgba(15,52,96,.35));
}
.store-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2rem 0;
}
.store-hero-content .container { display: flex; align-items: end; gap: 2rem; flex-wrap: wrap; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);}
.store-logo {
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", Sans-serif; font-weight: 700;
  font-size: 1.5rem;
  color: var(--asc-primary);
  text-align: center;
  flex-shrink: 0;
  background-size: contain; background-position: center;background-repeat: no-repeat;
}
.store-meta { color: #fff; flex: 1; min-width: 250px; }
.store-meta h1 { color: #fff; margin: 0; }
.store-meta .pill {
  display: inline-block;
  background: var(--asc-background);
  color: var(--asc-text);
  font-weight: 800;
  padding: .25em .9em;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  margin-bottom: .5rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.store-detail-grid { display: grid; grid-template-columns: 1fr 2.75fr; gap: 2rem; align-items: start; }
.store-detail-grid2 { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .store-detail-grid, .store-detail-grid2 { grid-template-columns: 1fr; } }
.store-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .75rem; margin-top: 1.5rem; }
.store-gallery img { width: 98%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md);box-shadow: 14px 14px 0px 0px var(--asc-teal); }
.store-gallery { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 1.5rem; }
.store-gallery img { width: 98%; aspect-ratio: 0; object-fit: contain; border-radius: var(--radius-md);box-shadow: 14px 14px 0px 0px var(--asc-teal); }
.store-info-card {
  background: #fff;
  border: 1px solid var(--asc-grey-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.store-info-card h3 {
  font-family: "Playfair", Sans-serif; font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--asc-grey-500); margin-bottom: .75rem;
}
.store-info-card p { margin: 0; font-size: 1.02rem; }
.store-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }
.store-tags .tag {
  background: var(--asc-primary); color: var(--asc-background);
  padding: .25em .8em; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 700;
}

/* ----- Whats-on cards ----- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-thumb {
  aspect-ratio: 1;
  background: var(--asc-teal);
  background-size: cover; background-position: center;
  position: relative;
}
.event-thumb .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--asc-background); color: var(--asc-text);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3em .9em; border-radius: var(--radius-pill);
}
.event-thumb .badge.pink { background: var(--asc-text); color: #fff; }
.event-thumb .badge.orange { background: var(--asc-text); color: #fff; }
.event-thumb .badge.green { background: var(--asc-text); color: #fff; }
.event-body { padding: 1.25rem 1.25rem 1.5rem; }
.event-body .date { font-size: .8rem; font-weight: 800; color: var(--asc-text); letter-spacing: .08em; text-transform: uppercase; }
.event-body h3 { font-size: 1.75rem; margin: .35rem 0 .5rem; color: var(--asc-text); font-weight:700;letter-spacing: -0.1px;}
.event-body p { color: var(--asc-grey-700); font-size: .95rem; }
.event-body .more { font-weight: 700; color: var(--asc-primary); }

/* ----- Centre map ----- */
.map-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.map-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .5rem .75rem 1rem; flex-wrap: wrap;
}
.level-tabs { display: inline-flex; gap: .25rem; background: var(--asc-primary); padding: 4px; border-radius: var(--radius-pill); }
.level-tabs button {
  border: 0; background: transparent;
  padding: .5rem 1.1rem; font-weight: 700; font-size: .9rem; color: var(--asc-background);
  border-radius: var(--radius-pill);
}
.level-tabs button.active { background: var(--asc-primary); color: #fff; }
.zoom-tools { display: inline-flex; gap: .35rem; }
.zoom-tools button {
  width: 40px; height: 40px; border: 1px solid var(--asc-grey-200);
  background: #fff; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center; color: var(--asc-primary);
}
.zoom-tools button:hover { background: var(--asc-primary); }
.map-stage {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--asc-background);
  border-radius: var(--radius-md);
}
.map-stage svg { width: 100%; height: 100%; transform-origin: center; transition: transform .25s ease; }
.tenancy { fill: #4A8AC9; stroke: #fff; stroke-width: 2; transition: fill .15s ease; cursor: pointer; }
.tenancy:hover { fill: var(--asc-text); }
.tenancy.anchor { fill: var(--asc-text); }
.tenancy.anchor:hover { fill: var(--asc-text); }
.tenancy.anchor.active { fill: var(--asc-text); }
.tenancy-num { font-size: 14px; font-weight: 700; fill: #fff; pointer-events: none; font-family: "Playfair", Sans-serif;; }
.anchor-label {font-family: "Playfair", Sans-serif; font-weight: 700; fill: #fff; pointer-events: none; }
.map-legend {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem .25rem 0; font-size: .85rem; color: var(--asc-grey-700);
}
.legend-key { display: inline-flex; align-items: center; gap: .5rem; }
.legend-swatch { width: 14px; height: 14px; border-radius: 3px; }

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { background: #fff; padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin-bottom: 1rem; border-left: 4px solid var(--asc-primary); }
.info-block h3 { font-family: "Playfair", Sans-serif; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--asc-grey-500); margin-bottom: .5rem; }
.info-block p { margin: 0; font-size: 1.05rem; }

/* ----- Feature cards (with photos) ----- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--asc-grey-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--asc-primary); color: var(--asc-background);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card.amber .icon { background: #FFF4D6; color: var(--asc-text); }
.feature-card.pink .icon { background: #FCE0EB; color: var(--asc-text); }
.feature-card.green .icon { background: #DDF4E8; color: var(--asc-text); }
.feature-card.orange .icon { background: #FFE4D2; color: var(--asc-text); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.feature-card p { color: var(--asc-grey-700); font-size: .95rem; margin: 0; }

/* ----- CTA band ----- */
.cta-band {
  background: linear-gradient(135deg, var(--asc-text), var(--asc-text));
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,197,50,.25), transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .btn-light { color: var(--asc-text); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--asc-text); border-color: #fff; }

/* ----- Utilities ----- */
.text-center { text-align: center; }
.muted { color: var(--asc-grey-500); }
.mt-2 { margin-top: 2rem; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--asc-text); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 8px 0;
  z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 0; }

.btn-ghost {
    background: transparent;
    color: var(--asc-primary);
    border: 2px solid transparent;
    gap: .55em;
    padding: .9em 1.6em;
    font-weight: 700;
    font-size: .95rem;
    border-color: var(--asc-primary);
    border-radius:999px
}
.btn-ghost:hover {
    background: var(--asc-primary);
    color: #fff !important;
}

:root {
    --asc-primary: #8A0F4C;
    --asc-text: #233038;
    --asc-background: #FFFFE3;
    --asc-teal: #008080;
    --asc-accent: #008080;
    --asc-white: #ffffff;
    --asc-charcoal: #1A2332;
    --asc-grey-700: #3F4A57;
    --asc-grey-500: #6B7785;
    --asc-grey-300: #C8CDD4;
    --asc-grey-200: #DEE3EA;
    --asc-grey-100: #ECEFF3;
    --asc-success: #2DB87C;
    --shadow-sm: 0 1px 2px rgba(15, 52, 96, .06), 0 1px 3px rgba(15, 52, 96, .04);
    --shadow-md: 0 6px 18px rgba(15, 52, 96, .10), 0 2px 6px rgba(15, 52, 96, .06);
    --shadow-lg: 0 18px 44px rgba(15, 52, 96, .16);
    --shadow-pop: 0 12px 28px rgba(31, 96, 171, .25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --container: 1280px;
    --gutter: clamp(1.1rem, 2.5vw, 2rem);
    --e-global-color-primary: #8A0F4C;
    --e-global-color-secondary: #FFFFE3;
    --e-global-color-text: #233038;
    --e-global-color-accent: #008080;
    --e-global-color-07ae34c: #C48B2A;
    
    --e-global-color-f9e7819: #EBF3FB;
    --e-global-color-53339d3: #FFC532;
    --e-global-color-eafd1cd: #E5A91A;
    --e-global-color-e852edc: #EC4B8C;
    --e-global-color-74e365d: #FF8B3D;
    --e-global-color-766c516: #E5722A;
    --e-global-color-d458109: #2DB87C;
    --e-global-color-9651934: #8B5CF6;
    --e-global-color-e160a1e: #FFFFFF;
    --e-global-color-59d04e1: #F8FAFC;
    --e-global-color-0911b41: #FFFBF2;
    --e-global-color-56925af: #1A2332;
    --e-global-color-75ab831: #3F4A57;
    --e-global-color-688185b: #6B7785;
    --e-global-color-31786b8: #C8CDD4;
    --e-global-color-3cea6f0: #DEE3EA;
    --e-global-color-0d826ca: #ECEFF3;
    --gap-width: 6rem;
    --filter-gap: 6rem;
    --time: .2s;
    --wp--preset--font-size--small: 12px;
    --wp--preset--font-size--medium: clamp(16.834px, 1.052rem + ((1vw - 3.2px) * 0.986), 26px);
    --wp--preset--font-size--large: clamp(21.536px, 1.346rem + ((1vw - 3.2px) * 1.448), 35px);
    --wp--preset--font-size--x-large: clamp(33.419px, 2.089rem + ((1vw - 3.2px) * 2.858), 60px);
    --wp--preset--font-size--xx-large: clamp(42.068px, 2.629rem + ((1vw - 3.2px) * 4.079), 80px);
 }
 

#primary-menu{background: rgba(255,255,255,0.95);}
  
#centre_map .store-banner-image {
	height: 300px;
    background: var(--e-global-color-primary);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
	border-bottom: 10px solid var(--e-global-color-accent);
}

#centre_map .store-banner-image .banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#centre_map .wp-block-heading.store-title {
	margin-top: 3.95rem;
	margin-bottom: .2em;
}
#centre_map .todays-trading-hours {
	margin-top: 0;
}

#centre_map .wp-block-heading {
	text-transform: uppercase;
}

#centre_map .store-meta {
	display: flex;
	gap: .5em;
	align-items: center;
}

#centre_map .store-meta .material-symbols {
	background-color: var(--e-global-color-primary);
    color: var(--e-global-color-secondary);
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 15px;
}

#centre_map .centre-info {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 1rem;
}


#centre_map .store-logo img {
    max-width: 210px;
    height: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Map */

#centre_map .map {
	position: relative;
    container-type: inline-size;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

#centre_map .map-outer-container {
}

#centre_map .map-outer-container.expanded {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
	background-color: color-mix(in srgb, var(--e-global-color-secondary) 80%, transparent);
	padding: 2.95rem;
	overflow: scroll;
}

#centre_map .map-outer-container:not(.expanded) .map {
	cursor: pointer;
}

#centre_map .map-outer-container.expanded .map {

}

#centre_map .map .key {
	position: absolute;
	left: 1.5cqw;
    top: 1.5cqw;
    font-size: .7cqw;
    text-transform: uppercase;
    color: #58585b;
    font-weight: 400;
    letter-spacing: .1em;
    display: flex;
    flex-direction: column;
    gap: .6cqw 1.25cqw;
    flex-wrap: wrap;
    height: 15cqw;
	pointer-events: none;
}

#centre_map .map .key .item {
	display: flex;
    align-items: center;
    gap: .7em;
}

#centre_map .map .key .item img {
	width: 1.6cqw;
	
}

#centre_map .map .expand {
    position: absolute;
    right: 2.75cqw;
    top: 2.75cqw;
    width: 2.5cqw;
    height: 2.5cqw;
	cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
}

#centre_map .map .expand svg {
	position: absolute;
	overflow: visible;
}

.map-outer-container.expanded svg.open,
.map-outer-container:not(.expanded) svg.close {
	display: none;
}

.map-outer-container svg.close {
	width: 2.5cqw;
    height: 2.5cqw;
}

#centre_map .map .expand:hover {
	transform: scale(1.1);
}

#centre_map .map img.map-image {
    width: 100%;
    height: auto;
    display: block;
}

#centre_map .map .map-marker {
    height: 1px;
    width: 1px;
    position: absolute !important;
    user-select: none;
    z-index: 1;
	pointer-events: none;
}

#centre_map .map .map-marker:before {
    content: '';
	background-image: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 64 85%22%3E%3Cpath d%3D%22M5.01575 48.6748L5.1735 48.9114C5.37068 49.2003 5.56787 49.4763 5.76505 49.7662L28.6034 82.6363C29.2693 83.5938 30.3625 84.1651 31.5291 84.1651C32.6957 84.1651 33.788 83.5938 34.4548 82.6363L57.2667 49.8178C57.4767 49.5152 57.7005 49.2134 57.9105 48.897L58.0554 48.687C62.1815 42.3045 63.8654 34.6465 62.7969 27.1214C61.7294 19.5953 57.981 12.7085 52.2407 7.72589C46.5013 2.74395 39.156 0 31.5555 0C23.9543 0 16.609 2.74419 10.8696 7.72589C5.12933 12.7088 1.38097 19.5955 0.313393 27.1214C-0.755074 34.6465 0.928791 42.3045 5.05491 48.687L5.01575 48.6748ZM31.5349 18.4343C35.0219 18.4343 38.3667 19.8201 40.832 22.2852C43.2982 24.7514 44.6829 28.0953 44.6829 31.5823C44.6829 35.0694 43.2981 38.4141 40.832 40.8794C38.3667 43.3456 35.0219 44.7304 31.5349 44.7304C28.0478 44.7304 24.7031 43.3455 22.2378 40.8794C19.7716 38.4141 18.3868 35.0694 18.3868 31.5823C18.3868 28.0953 19.7717 24.7514 22.2378 22.2852C24.7031 19.82 28.0478 18.4343 31.5349 18.4343Z%22 fill%3D%22%23FA6733%22/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 44px;
}

@media only screen and (min-width: 1px) and (max-width: 1024px)  {
	#centre_map  .section .container{padding:0 0 30px};

	#centre_map .map-outer-container.expanded {
		padding: 0;
		padding-top: 2.95rem;
		background-color: white;
	}
	
	#centre_map .expanded .map .expand {
		right: 20px;
		top: 10px;
		width: 40px;
		height: 40px;
	}
	.map-outer-container.expanded svg.close {
		width: 40px;
		height: 40px;
	}

}

@media (max-width: 767px) {
  .elementskit-navbar-nav-default .elementskit-navbar-nav {
    height: auto !important;
    margin-bottom:30px !important;
  }

  #mobile-cta{
    width:100% !important;    
  }

  #mobile-cta li{
    display: inline-flex !important;
  }
}

#centre_map .material-symbols img {
	width: auto;
    height: 12px;
    filter: brightness(10);
}

/* About the Store */

#centre_map .image-text-layout {
	margin-top: 70px;
	margin-bottom: 80px;
}

#centre_map .image-text-layout .item-media {
	aspect-ratio: 16/9;
	box-shadow: 14px 14px 0px 0px var(--e-global-color-primary);
}

.image-text-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
}

.image-text-layout .item-media {
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.image-text-layout .wp-block-heading {
	margin-top: 0;
}

.image-text-layout .terms-conditions {
	font-size: 1.6rem;
}

/* // Image/Text Grid Layout */

/* Weekly Trading Hours */

.weekly-trading-hours .trading-hours-heading {
	font-size: 22px;
	text-transform: uppercase !important;
	letter-spacing: .2em;
	font-weight: 500;
}

.weekly-trading-hours {
	text-transform: uppercase !important;
	letter-spacing: .1em;
}

.weekly-trading-hours .weekdays {
	width: fit-content;
	line-height: 1.7;
}


.weekly-trading-hours .day {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    position: relative;
    font-size: .85rem;
}
.weekly-trading-hours .day.today {
	font-weight: 500;
}
.weekly-trading-hours .day.today:after {
    background-color: color-mix(in srgb, var(--asc-primary) 15%, transparent);
    content: '';
    width: calc(100% + 1em);
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
}

.weekly-trading-hours .day .time-date {
    display: flex;
    justify-content: flex-end;
}

.weekly-trading-hours .day .date {
    position: absolute;
    left: calc(100% + 1em);
    opacity: 0;
    pointer-events: 0;
    background-color: #dcd8d4
;
    padding: 0em .5em;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
	white-space: nowrap;
	transition: var(--time);
	z-index: 1;
}
.weekly-trading-hours .day .date:before {
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	  width: 0px;
	  height: 0px;
	  border-style: solid;
	  border-width: 4px 5px 4px 0;
	  border-color: transparent #dcd8d4 transparent transparent;
}
.weekly-trading-hours .day:hover .date {
	opacity: 1;
}

.weekly-trading-hours .trading-hours-heading {
	margin-top: 0;
}




/* Animations */

/* Slide from top */
:root body .animate-slide-from-top {
    position: relative;
	transform: translateY(-40px);
    opacity: 0;
}

:root body .animate-slide-from-top.animated {
    transform: translateY(0px);
    animation: slideFromTop;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-fill-mode: both;
}

@keyframes slideFromTop {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Slide from right */
:root body .animate-slide-from-right {
    position: relative;
	transform: translateX(40px);
    opacity: 0;
}
:root body .animate-slide-from-right.animated {
    transform: translateX(0px);
    animation: slideFromRight;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-fill-mode: both;
}
@keyframes slideFromRight {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* Slide from bottom */
:root body .animate-slide-from-bottom {
    position: relative;
	transform: translateY(40px);
    opacity: 0;
	transition: 1s ease-in-out;
}
:root body .animate-slide-from-bottom.animated {
    transform: translateY(0px) ;
    animation: slideFromBottom;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-fill-mode: both;
}
@keyframes slideFromBottom {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Slide from left */
:root body .animate-slide-from-left {
    position: relative;
	transform: translateX(-40px);
    opacity: 0;
}
:root body .animate-slide-from-left.animated {
    transform: translateX(0px);
    animation: slideFromLeft;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .2s;
    animation-fill-mode: both;
}
@keyframes slideFromLeft {
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}