:root {
    --header-height: 10vh;

    --color-white: #fdffff;
    --color-black: #000;
    --color-off-black: #101711;
    --color-grey: #393e41;
    --color-yellow: #fae200;
    --color-pink: #ff3f68;

    --border-heavy: 5px solid var(--color-white);
    --border-light: 2px solid var(--color-white);

    --font-main: sans-serif;
    --font-display: 'Dark Twenty', sans-serif;
    --font-block: 'Academic M54', sans-serif;

    --section-bg-dark: rgba(16, 23, 17, 0.9);
    --panel-bg-dark: rgba(0, 0, 0, 0.4);

    --content-width: 80%;
    --content-width-tablet: 90%;
}

/* =========================
   RESET / BASE
========================= */

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--color-white);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-grey);
    background: url('../img/00-CROWD-TRURO.jpg') center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-block);
}

h3 {
    font-family: var(--font-display);
    color: var(--color-yellow);
}

a {
    color: inherit;
}

/* =========================
   HEADER / NAV
========================= */

header {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 30px;
    background: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: var(--border-heavy);
    z-index: 1000000;
}

nav,
.logoContainer,
.shopIconsContainer {
    flex: 1;
}

.logoContainer {
    text-align: center;
    white-space: nowrap;
}

.logoContainer a {
    text-decoration: none;
}

.logoContainer h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 100;
    color: var(--color-yellow);
    font-size: 48px;
    line-height: 1;
}

.emoji {
    height: 1.2em;
    vertical-align: middle;
}

.logoContainer .emoji {
    transform: translateY(12px);
}

.mainNav {
    display: flex;
    gap: 20px;
    list-style: none;
}

.mainNav li a {
    font-family: var(--font-block);
    font-size: 24px;
    text-decoration: none;
    color: var(--color-white);
}

.mainNav li a:hover {
    color: var(--color-yellow);
}

.shopIconsContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.shopIconsContainer i {
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.shopIconsContainer i:hover {
    opacity: 0.7;
}

.menuToggle,
.menuClose {
    display: none;
}

/* =========================
   GLOBAL LAYOUT / SHARED
========================= */

/* main {
    padding-top: var(--header-height);
} */

.hero {
    height: 70vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.homeShop h1,
.tourMapSection h1,
.socials h1,
.about h1 {
    text-align: center;
    font-size: 64px;
    margin-bottom: 40px;
}

/* =========================
   HOME SHOP / PRODUCT GRID
========================= */

.homeShop {
    border-top: var(--border-heavy);
    background: var(--color-off-black);
    padding: 40px 80px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    scroll-margin-top: 120px;
}

.productGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--content-width);
    margin: 0 auto;
}

.productCard {
    text-align: center;
}

.productCard img,
.productImage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.productCard h2 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-weight: 100;
    color: var(--color-yellow);
    font-size: 40px;
}

.productCard p {
    margin-top: 8px;
    font-size: 25px;
}

.productImage {
    display: block;
    overflow: hidden;
}

.productImage img {
    transition: transform 0.4s ease;
}

.productImage:hover img {
    transform: scale(1.03);
}

.shopButtonContainer {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.shopButton {
    padding: 14px 28px;
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
    text-decoration: none;
    font-family: var(--font-block);
    transition: all 0.3s ease;
}

.shopButton:hover {
    background: var(--color-yellow);
    color: var(--color-off-black);
}

/* =========================
   ABOUT
========================= */

.about {
    background-color: var(--color-pink);
    padding: 80px;
    border-top: var(--border-heavy);
    position: relative;
    overflow: hidden;
}

.about::before,
.socials::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05)),
        url('/assets/img/halftoneBG.jpg');
    background-size: contain;
    pointer-events: none;
}

.about::before {
    opacity: 0.2;
    background-position: right;
    mix-blend-mode: overlay;
}

.aboutInner {
    max-width: var(--content-width);
    margin: 0 auto;

    gap: 60px;
    align-items: center;
}

.aboutText,
.aboutSlider {
    position: relative;
    z-index: 1;
}

.aboutText h1 {
    text-align: center;
    margin-bottom: 30px;
}

.aboutText p {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px
}

.aboutSlider img {
    width: 100%;
    height: fit-content;
    display: block;
    border: var(--border-heavy);
}

/* =========================
   TOUR MAP
========================= */

.tourMapSection {
    background: var(--section-bg-dark);
    border-top: var(--border-heavy);
    overflow: hidden;
}

.mapHeader {
    text-align: center;
    padding: 70px 20px 30px;
    position: relative;
    z-index: 2;
}

.mapHeader h1 {
    margin-bottom: 25px;
}

.yearFilters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.yearFilters button {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    padding: 12px 22px;
    font-family: var(--font-block);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.yearFilters button:hover,
.yearFilters button.active {
    background: var(--color-yellow);
    color: var(--color-off-black);
    transform: translateY(-2px);
}

#map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 75vh;
    min-height: 600px;
    background-color: rgba(0, 0, 0, 0.8);
}

.leaflet-marker-icon {
    transition: transform 0.2s ease;
}

.leaflet-marker-icon:hover {
    transform: scale(1.15);
}

/* =========================
   SOCIALS / SHOUTOUTS
========================= */

.socials {
    background-color: var(--color-yellow);
    position: relative;
    overflow: hidden;
    padding: 40px 80px;
    border-top: var(--border-heavy);
}

.socials::before {
    opacity: 0.4;
    background-position: left;
    mix-blend-mode: overlay;
}

.socials h1 {
    color: var(--color-off-black) !important;
}

.socialIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.socialIcons a {
    color: var(--color-off-black);
    font-size: 56px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.socialIcons a:nth-child(odd) {
    transform: rotate(-3deg);
}

.socialIcons a:nth-child(even) {
    transform: rotate(3deg);
}

.socialIcons a:hover {
    transform: translateY(-6px) scale(1.08) rotate(0deg);
    opacity: 0.8;
}

.socialIcons a,
.socialIcons i {
    color: var(--color-off-black);
}

.shoutouts {
    background: rgba(16, 23, 17, 0.75);
    backdrop-filter: blur(2px);
    padding: 80px 20px;
    border-top: var(--border-heavy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shoutoutGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.shoutoutGrid a {
    text-decoration: none;
    border: 1px solid var(--color-white);
    padding: 12px 20px;
    font-family: var(--font-block);
    transition: all 0.2s ease;
}

.shoutoutGrid a:hover {
    background: var(--color-white);
    color: var(--color-off-black);
}

/* =========================
   FOOTER
========================= */

footer {
    background: var(--color-off-black);
    border-top: var(--border-heavy);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.bookingEmail {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.bookingEmail:hover {
    opacity: 1;
}

.footerLegal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footerLegal a {
    font-size: 14px;
    opacity: 0.5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footerLegal a:hover {
    opacity: 1;
}

/* =========================
   PRODUCT PAGE
========================= */

.productPage {
    background: var(--section-bg-dark);
    padding: 80px 20px;
}

.productLayout {
    max-width: var(--content-width);
    margin: 0 auto;
    margin-top: var(--header-height);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.productGallery {
    grid-column: 1;
    max-width: 800px;
}

.productGallery img {
    width: 100%;
    height: auto;
    display: block;
    border: var(--border-heavy);
}

.productDetails {
    grid-column: 2;
}

.productPurchase h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.productPrice {
    font-size: 28px;
    margin-bottom: 30px;
}

.productPurchase select,
.productPurchase button,
.cartQty input,
.checkoutForm input {
    border: var(--border-light);
    background: var(--color-off-black);
    color: var(--color-white);
}

.productPurchase select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    font-family: var(--font-block);
    font-size: 12px;
}

.productPurchase button {
    width: 100%;
    padding: 16px;
    background: var(--color-yellow);
    color: var(--color-off-black);
    font-family: var(--font-block);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.productPurchase button:hover {
    transform: translateY(-2px);
    background: var(--color-pink);
}

.productDescription {
    margin-top: 35px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.productMeta {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.productMeta h3 {
    font-size: 42px;
    margin-bottom: 12px;
}

.productMeta ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.productMeta li {
    margin-bottom: 8px;
    opacity: 0.85;
}

.productMeta p {
    line-height: 1.6;
}

/* =========================
   SHOP PAGE
========================= */

.shopPage {
    background: var(--section-bg-dark);
    padding: 80px 0;
}

.shopContainer {
    margin-top: var(--header-height);
}

.shopCategory {
    margin-bottom: 100px;
}

.shopCategory h1 {
    text-align: center;
    font-size: 64px;
    margin-bottom: 40px;
    color: var(--color-yellow);
    font-family: var(--font-display);
    font-weight: 100;
}

.shopCategoriesNav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.shopCategoriesNav a {
    border: 1px solid var(--color-yellow);
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-yellow);
}

.shopCategoriesNav a:hover {
    background: var(--color-yellow);
    color: var(--color-off-black);
}

/* =========================
   CART PAGE
========================= */

.cartPage {
    background: var(--section-bg-dark);
    padding: 80px 20px;
}

.cartLayout {
    max-width: var(--content-width);
    margin: 0 auto;
}

.cartLayout h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 100;
    color: var(--color-yellow);
    text-align: center;
    margin-bottom: 50px;
}

.cartItems {
    border-top: 2px solid var(--color-white);
}

.cartItem {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 2px solid var(--color-white);
}

.cartItem img {
    width: 140px;
    flex-shrink: 0;
    display: block;
    border: 3px solid var(--color-white);
}

.cartItemInfo {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.cartItemDetails h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.cartItemDetails p {
    margin-bottom: 12px;
}

.cartItemDetails button {
    background: none;
    color: var(--color-pink);
    font-family: var(--font-block);
    cursor: pointer;
}

.cartItemSummary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.cartQty {
    text-align: right;
}

.cartQty label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-block);
}

.cartQty input {
    width: 70px;
    padding: 10px;
    text-align: center;
}

.cartPrice {
    font-size: 32px;
    text-align: right;
    margin: 0;
}

.cartSummary,
.orderSummary,
.policyNote {
    border: var(--border-light);
    background: var(--panel-bg-dark);
}

.cartSummary {
    width: 100%;
    margin-top: 50px;
    padding: 30px;
}

.cartSummary h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 25px;
}

.summaryRow,
.summaryTotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.summaryRow {
    font-size: 22px;
    margin-bottom: 20px;
}

.cartNote {
    opacity: 0.8;
    margin-bottom: 30px;
}

.checkoutButton {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--color-yellow);
    color: var(--color-off-black);
    text-align: center;
    text-decoration: none;
    font-family: var(--font-block);
    font-size: 18px;
}

.checkoutButton:hover {
    background: var(--color-pink);
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkoutPage {
    background: var(--section-bg-dark);
    padding: 80px 20px;
}

.checkoutLayout {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    margin-bottom: 30px;
}

.checkoutForm h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 40px;
}

.checkoutForm h2,
.orderSummary h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.checkoutForm form {
    display: grid;
    gap: 22px;
}

.checkoutForm label {
    display: grid;
    gap: 8px;
    font-family: var(--font-block);
}

.checkoutForm input {
    width: 100%;
    padding: 14px;
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkoutNote {
    opacity: 0.75;
}

.checkoutForm button {
    margin-top: 20px;
    padding: 16px;
    background: var(--color-yellow);
    color: var(--color-off-black);
    font-family: var(--font-block);
    font-size: 18px;
    cursor: pointer;
}

.checkoutForm button:hover {
    background: var(--color-pink);
}

.orderSummary {
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.summaryItem {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 18px;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summaryItem img {
    width: 80px;
    border: 2px solid var(--color-white);
}

.summaryItem h3 {
    font-size: 28px;
    font-weight: 100;
}

.summaryItem p {
    opacity: 0.75;
}

.summaryTotal {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    font-family: var(--font-block);
}

/* =========================
   ORDER CONFIRMATION PAGE
========================= */

.confirmationPage {
    background: rgba(16, 23, 17, 0.9);
    padding: 120px 20px 80px;
}

.confirmationContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confirmationEmoji {
    width: 110px;
    margin-bottom: 30px;
}

.confirmationContent h1 {
    font-family: 'Dark Twenty', sans-serif;
    font-size: 72px;
    font-weight: 100;
    color: #fae200;
    margin-bottom: 25px;
}

.confirmationIntro {
    font-size: 24px;
    margin-bottom: 40px;
}

.confirmationBox {
    border: 2px solid #fdffff;
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    margin-bottom: 40px;
}

.confirmationBox p {
    margin-bottom: 12px;
}

.confirmationButton {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 30px;
    border: 2px solid #fae200;
    color: #fae200;
    text-decoration: none;
    font-family: 'Academic M54', sans-serif;
}

.confirmationButton:hover {
    background: #fae200;
    color: #101711;
}

/* =========================
   POLICY PAGES
========================= */

.policyPage {
    background: var(--section-bg-dark);
    padding: 80px 20px;
}

.policyContent {
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--header-height);
    margin-bottom: 30px;
}

.policyContent h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 100;
    color: var(--color-yellow);
    text-align: center;
    margin-bottom: 50px;
}

.policyContent h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 100;
    color: var(--color-yellow);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policyContent p,
.policyContent li {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.policyContent ul {
    margin: 20px 0 0;
    padding-left: 24px;
}

.policyContent a {
    color: var(--color-yellow);
}

.policyNote {
    margin-top: 50px;
    padding: 30px;
}

/* =========================
   404 PAGE
========================= */

.errorPage {
    min-height: calc(100vh - var(--header-height));
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--section-bg-dark);
    padding: 120px 20px 80px;
}

.errorContent {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.errorEmoji {
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    display: block;
    margin: 0 auto 30px;
    animation: floatEmoji 3s ease-in-out infinite;
}

.errorContent h1 {
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 100;
    color: var(--color-yellow);
    line-height: 1;
}

.errorContent h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 100;
    color: var(--color-pink);
    margin-bottom: 25px;
}

.errorContent p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.errorButton {
    display: inline-block;
    padding: 16px 30px;
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    text-decoration: none;
    font-family: var(--font-block);
}

.errorButton:hover {
    background: var(--color-yellow);
    color: var(--color-off-black);
}

@keyframes floatEmoji {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.leaflet-popup-content-wrapper {
    background: #101711;
    border: 2px solid #fae200;
    border-radius: 0;
    box-shadow: none;
}

.leaflet-popup-content {
    margin: 14px 18px;
    color: #fdffff;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.leaflet-popup-content strong {
    font-family: 'Academic M54', sans-serif;
    color: #fae200;
}

.leaflet-popup-tip {
    background: #fae200;
}

.leaflet-container a.leaflet-popup-close-button {
    color: #fae200;
    font-size: 22px;
    padding: 6px 8px 0 0;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: #ff3f68;
}

/* =========================
   RESPONSIVE: TABLET
========================= */

@media (max-width: 1024px) {
    nav {
        display: none;
    }

    .menuToggle {
        display: block;
        background: none;
        font-size: 28px;
        cursor: pointer;
        flex: 1;
        text-align: left;
    }

    .logoContainer h1 {
        font-size: 34px;
    }

    .shopIconsContainer {
        flex: 1;
    }

    .productGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutInner {
        max-width: var(--content-width);
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .aboutText,
    .aboutSlider {
        max-width: 700px;
        margin: 0 auto;
    }

    .aboutText h1,
    .aboutText p {
        text-align: center;
    }

    .aboutSlider img {
        width: 100%;
        height: auto;
    }

    .productLayout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .productDetails {
        display: contents;
    }

    .productGallery {
        grid-column: 1;
    }

    .productPurchase {
        grid-column: 2;
    }

    .productDescription,
    .productMeta {
        grid-column: 1 / -1;
        max-width: 900px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cartLayout,
    .checkoutLayout {
        max-width: var(--content-width-tablet);
    }

    .checkoutLayout {
        grid-template-columns: 1fr;
    }

    .orderSummary {
        position: static;
    }
}

/* =========================
   RESPONSIVE: MOBILE
========================= */

@media (max-width: 768px) {
    body {
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;
    }

    header {
        position: relative;
    }

    main {
        padding-top: 0;
    }

    .hero {}

    .hero img {
        object-position: center center;
    }

    .menuToggle {
        display: block;
        background: none;
        border: 0;
        color: var(--color-white);
        font-size: 32px;
        cursor: pointer;
        flex: 1;
        text-align: left;
    }

    header nav {
        position: fixed;
        inset: 0;
        background: var(--color-yellow);
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    header nav.open {
        display: flex;
    }

    .menuClose {
        display: block;
        position: absolute;
        top: 25px;
        right: 30px;
        background: none;
        border: 0;
        color: var(--color-grey);
        font-size: 45px;
        cursor: pointer;
    }

    .mainNav {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        font-size: 32px;
    }

    .mainNav li {
        color: var(--color-grey);
    }

    .logoContainer h1 {
        font-size: 24px;
    }

    .homeShop {
        /* margin-top: 200px; */
        padding: 0 20px 60px;
    }

    .productGrid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 40px 20px;
    }


    .productLayout {
        max-width: var(--content-width-tablet);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .productDetails {
        display: block;
    }

    .productGallery,
    .productDetails,
    .productPurchase,
    .productDescription,
    .productMeta {
        grid-column: 1 / -1;
    }

    .productGallery {
        width: 100%;
        max-width: none;
    }

    .productGallery img {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .productPurchase h1 {
        font-size: 42px;
    }

    .cartItem {
        gap: 20px;
    }

    .cartItem img {
        width: 100px;
    }

    .cartItemInfo {
        gap: 20px;
    }

    .cartItemDetails h2 {
        font-size: 28px;
    }

    .cartPrice {
        font-size: 24px;
    }

    .checkoutForm h1 {
        font-size: 48px;
        text-align: center;
    }

    .formRow {
        grid-template-columns: 1fr;
    }

    .summaryItem {
        grid-template-columns: 70px 1fr;
    }

    .summaryItem span {
        grid-column: 2;
        text-align: right;
    }

    .policyContent {
        max-width: var(--content-width-tablet);
    }

    .policyContent h1 {
        font-size: 46px;
    }

    .policyContent h2 {
        font-size: 32px;
    }

    .errorEmoji {
        width: 90px !important;
        max-width: 90px !important;
    }

    .errorContent h1 {
        font-size: 90px;
    }

    .errorContent h2 {
        font-size: 32px;
    }

    .errorContent p {
        font-s .confirmationContent h1 {
            font-size: 48px;
        }

        .confirmationIntro {
            font-size: 20px;
        }
    }
}

.woocommerceShopPage .shopContainer>h1 {
    text-align: center;
    font-size: 64px;
    margin-bottom: 40px;
    color: #fae200;
    font-family: 'Dark Twenty', sans-serif;
    font-weight: 100;
}

.productCard h2 a {
    font-family: 'Dark Twenty', sans-serif;
    font-weight: 100;
    color: #fae200;
    text-decoration: none;
}

.woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    border: 1px solid #fae200;
    padding: 10px 14px;
    color: #fae200;
    text-decoration: none;
}

.woocommerce-pagination .current,
.woocommerce-pagination a:hover {
    background: #fae200;
    color: #101711;
}

.productCartForm form {
    display: grid;
    gap: 20px;
}

.productCartForm .quantity input {
    width: 80px;
    padding: 12px;
    background: #101711;
    border: 2px solid #fdffff;
    color: #fdffff;
}

.productCartForm button,
.productCartForm .single_add_to_cart_button {
    width: 100%;
    padding: 16px;
    background: #fae200;
    color: #101711;
    font-family: 'Academic M54', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

.productCartForm button:hover,
.productCartForm .single_add_to_cart_button:hover {
    background: #ff3f68;
}

.single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
.woocommerce button.button.alt.single_add_to_cart_button {
    background: #fae200 !important;
    color: #101711 !important;
    border: none;
    border-radius: 0;
    font-family: 'Academic M54', sans-serif;
    font-size: 18px;
    padding: 16px 24px;
    transition: 0.2s ease;
}

.single_add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover,
.woocommerce button.button.alt.single_add_to_cart_button:hover {
    background: #ff3f68 !important;
    color: #101711 !important;
}

.variations select {
    width: 100%;
    padding: 14px;
    background: #101711;
    border: 2px solid #fdffff;
    color: #fdffff;
    font-family: 'Academic M54', sans-serif;
}

.variations label {
    font-family: 'Academic M54', sans-serif;
    color: #fdffff;
}

.productCartForm .variations {
    width: 100%;
    margin-bottom: 20px;
}

.productCartForm .variations tr {
    display: grid;
    gap: 10px;
}

.productCartForm .variations th,
.productCartForm .variations td {
    display: block;
    padding: 0;
    text-align: left;
}

.productCartForm .variations label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Academic M54', sans-serif;
    color: #fdffff;
}

.productCartForm .variations select {
    width: 100%;
    padding: 14px;

    background: #101711;
    border: 2px solid #fdffff;
    color: #fdffff;

    font-family: 'Academic M54', sans-serif;
    font-size: 12px;
}

.productCartForm .single_variation_wrap {
    display: grid;
    gap: 20px;
}

.productCartForm .woocommerce-variation-price {
    margin: 10px 0;
}

.productCartForm .quantity {
    display: inline-block;
}

.productCartForm .quantity input {
    width: 70px;
    text-align: center;
}

.productCartForm .single_add_to_cart_button {
    margin-top: 0;
}

.updateCartButton {
    margin-top: 30px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #fae200;
    color: #fae200;
    font-family: 'Academic M54', sans-serif;
    cursor: pointer;
}

.updateCartButton:hover {
    background: #fae200;
    color: #101711;
}

.cartItemDetails .remove,
.woocommerce a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    background: none !important;
    color: rgba(255, 255, 255, .5) !important;

    font-size: 18px;
    line-height: 1;

    text-decoration: none;
    border-radius: 0;

    transition: color .2s ease;
}

.cartItemDetails .remove:hover,
.woocommerce a.remove:hover {
    background: none !important;
    color: #ff3f68 !important;
}

.woocommerce .cartItemDetails a.remove {
    background: transparent !important;
    color: rgba(255, 255, 255, .5) !important;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 18px;
    text-decoration: none;
    border-radius: 0;
}

.woocommerce .cartItemDetails a.remove i {
    color: rgba(255, 255, 255, .5) !important;
    transition: color .2s ease;
}

.woocommerce .cartItemDetails a.remove:hover {
    background: transparent !important;
    color: #ff3f68 !important;
}

.woocommerce .cartItemDetails a.remove:hover i {
    color: #ff3f68 !important;
}

.woocommerce button[name="update_cart"],
.woocommerce .updateCartButton {
    background: transparent !important;
    border: 2px solid #fae200 !important;
    color: #fae200 !important;

    padding: 14px 24px;
    margin-top: 10px;
    font-family: 'Academic M54', sans-serif;
    font-size: 16px;
    text-transform: uppercase;

    cursor: pointer;
    transition: .2s ease;
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce .updateCartButton:hover {
    background: #fae200 !important;
    color: #101711 !important;
}

.checkoutColumns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkoutSummary {
    padding: 30px;
    border: 2px solid #fdffff;
    background: rgba(0, 0, 0, .2);
}

@media (max-width: 1024px) {
    .checkoutColumns {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce global layout */
.woocommerce-notices-wrapper,
.woocommerce .woocommerce-notices-wrapper {
    max-width: 80%;
    margin: 0 auto 30px;
}

.checkoutPage .woocommerce-notices-wrapper,
.cartPage .woocommerce-notices-wrapper {
    max-width: 80%;
    margin: 0 auto 30px;
}

/* WooCommerce alerts */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    max-width: 80%;
    margin: 0 auto 30px !important;

    background: rgba(0, 0, 0, 0.45) !important;
    border: 2px solid #fae200 !important;
    color: #fdffff !important;

    padding: 18px 24px !important;

    font-family: sans-serif;
}

.woocommerce-error {
    border-color: #ff3f68 !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none;
}

.woocommerce-error::before {
    display: none;
}

/* WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: #fae200 !important;
    color: #101711 !important;

    border: 0 !important;
    border-radius: 0 !important;

    padding: 14px 24px !important;

    font-family: 'Academic M54', sans-serif !important;
    font-size: 16px !important;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: #ff3f68 !important;
    color: #101711 !important;
}

/* Checkout alignment */
.checkoutPage {
    background: rgba(16, 23, 17, 0.9);
    padding: 80px 20px;
}

.checkoutLayout {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
}

.checkoutForm h1 {
    text-align: center;
}

.checkoutColumns {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkoutCustomer,
.checkoutSummary {
    width: 100%;
}

.checkoutSummary {
    padding: 30px;
    border: 2px solid #fdffff;
    background: rgba(0, 0, 0, 0.4);
}

.info::before,
.woocommerce-error::before {
    color: none;
}

@media (max-width: 1024px) {

    .checkoutLayout,
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        max-width: 90%;
    }

    .checkoutColumns {
        grid-template-columns: 1fr;
    }
}

/* Place Order button */
.woocommerce #payment .place-order {
    padding: 0;
    margin-top: 10px;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    width: 100% !important;
    margin-top: 10px;
    background: #fae200 !important;
    color: #101711 !important;

    border: none;
    border-radius: 0;

    padding: 18px 24px !important;

    font-family: 'Academic M54', sans-serif;
    font-size: 18px;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
    background: #ff3f68 !important;
    color: #101711 !important;
}

.gigPopup {
    min-width: 160px;
    display: grid;
    gap: 5px;
}

.gigPopup strong {
    color: #fae200;
    font-family: 'Academic M54', sans-serif;
    font-size: 15px;
}

.gigPopup span {
    color: #fdffff;
    font-size: 14px;
}

.gigPopupLocation {
    opacity: 0.75;
}

.gigPopupButton {
    margin-top: 6px;
    display: inline-block;
    padding: 7px 10px;
    background: #fae200;
    color: #101711 !important;
    font-family: 'Academic M54', sans-serif;
    font-size: 12px;
    text-decoration: none;
}


.gigPopupButton:hover {
    background: #ff3f68;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #101711 !important;
}

.productCard h2 a {
    color: #fae200;
    text-decoration: none;
    font-family: 'Dark Twenty', sans-serif;
}

.thankyouPage {
    background: rgba(16, 23, 17, 0.9);
    padding: 80px 20px;
}

.thankyouContent {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--header-height);
    text-align: center;
}

.thankyouContent h1 {
    margin-bottom: 20px;
}

.thankyouContent>p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.orderSummary {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #fdffff;
    padding: 30px;
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orderSummary p {
    margin: 0;
    font-size: 18px;
}

.orderSummary strong {
    color: #fae200;
}

.thankyouButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thankyouButtons a {
    min-width: 220px;
}

.secondaryButton {
    background: transparent !important;
    color: #fae200 !important;
    border: 2px solid #fae200;
}

.secondaryButton:hover {
    background: #fae200 !important;
    color: #101711 !important;
}

@media (max-width: 768px) {

    .thankyouButtons {
        flex-direction: column;
    }

    .thankyouButtons a {
        width: 100%;
    }

}

.thankyouCard {
    background: rgba(0, 0, 0, .3);
    border: 2px solid #fdffff;
    padding: 30px;
    margin-bottom: 30px;
}

.shoppingCartlink {
    text-decoration: none;
}

.emptyCart {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.emptyCart img {
    width: 100px;
    margin-bottom: 30px;
}

.emptyCart h1 {
    font-family: 'Dark Twenty', sans-serif;
    font-size: 64px;
    color: #fae200;
    font-weight: 100;
    margin-bottom: 20px;
}

.emptyCart p {
    font-size: 22px;
    margin-bottom: 35px;
}

.woocommerce-notices-wrapper {
    width: 100%;
    max-width: 80%;
    margin: 0 auto 30px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;

    background: rgba(0, 0, 0, 0.45) !important;
    border: 2px solid #fae200 !important;
    color: #fdffff !important;

    padding: 18px 24px !important;
    margin: 0 0 30px !important;

    font-family: sans-serif;
}

.woocommerce-message a.button {
    float: none !important;
    margin-left: 20px;
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.accountNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accountNav li {
    margin-bottom: 10px;
}

.accountNav a {
    display: block;
    padding: 14px 18px;

    border: 2px solid #fdffff;

    text-decoration: none;
    color: #fdffff;

    transition: .2s ease;
}

.accountNav a:hover,
.accountNav .is-active a {
    background: #fae200;
    color: #101711;
    border-color: #fae200;
}

.woocommerce-MyAccount-content {
    border: 2px solid #fdffff;
    padding: 30px;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    margin-top: 0;
}

.accountPage {
    max-width: 80%;
    margin: 0 auto;
    margin-top: var(--header-height);
    padding: 60px 0;
}

.woocommerce-account main,
.woocommerce-account .site-main {
    background: rgba(16, 23, 17, 0.9);
}

.woocommerce-account .woocommerce {
    max-width: 80%;
    margin: 0 auto;
    margin-top: var(--header-height);
    padding: 80px 0;
}

.woocommerce-account h2 {
    text-align: center;
    font-family: 'Dark Twenty', sans-serif;
    font-size: 56px;
    font-weight: 100;
    color: #fae200;
    margin-bottom: 30px;
}

.woocommerce-account form.login,
.woocommerce-account form.register {
    max-width: 700px;
    margin: 0 auto !important;
    padding: 35px !important;

    background: rgba(0, 0, 0, 0.35) !important;
    border: 2px solid #fdffff !important;
    border-radius: 0 !important;
}

.woocommerce-account form.login label,
.woocommerce-account form.register label {
    color: #fdffff;
    font-family: 'Academic M54', sans-serif;
    margin-bottom: 8px;
}

.woocommerce-account form.login input,
.woocommerce-account form.register input {
    background: #101711 !important;
    border: 2px solid #fdffff !important;
    color: #fdffff !important;
    padding: 14px !important;
    border-radius: 0 !important;
}

.woocommerce-account .woocommerce-form-login__rememberme {
    color: #fdffff;
}

.woocommerce-account .lost_password a {
    color: #fae200;
    text-decoration: none;
}

.woocommerce-account .lost_password a:hover {
    color: #ff3f68;
}

.errorPage {
    min-height: 80vh;
    background: rgba(16, 23, 17, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

.errorContent {
    max-width: 700px;
    text-align: center;
}

.errorEmoji {
    width: 110px;
    margin-bottom: 30px;
}

.errorContent h1 {
    font-size: 120px;
    color: #fae200;
    line-height: 1;
}

.errorContent h2 {
    font-family: 'Dark Twenty', sans-serif;
    font-size: 48px;
    font-weight: 100;
    color: #ff3f68;
    margin-bottom: 25px;
}

.errorContent p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.errorButton {
    display: inline-block;
    padding: 16px 30px;
    border: 2px solid #fae200;
    color: #fae200;
    text-decoration: none;
    font-family: 'Academic M54', sans-serif;
}

.errorButton:hover {
    background: #fae200;
    color: #101711;
}

/* Checkout payment box */
.woocommerce-checkout #payment {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 2px solid #fdffff;
    border-radius: 0 !important;
    padding: 30px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 22px;
}

.woocommerce-checkout #payment ul.payment_methods label {
    color: #fdffff;
    font-family: 'Academic M54', sans-serif;
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(253, 255, 255, 0.08) !important;
    color: #fdffff !important;
    border-radius: 0 !important;
    padding: 24px !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(253, 255, 255, 0.08) !important;
}

.woocommerce-checkout #payment input,
.woocommerce-checkout #payment select {
    background: #101711 !important;
    border: 2px solid #fdffff !important;
    color: #fdffff !important;
    border-radius: 0 !important;
}

.woocommerce-checkout #payment a {
    color: #fae200;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: #fdffff;
    margin: 25px 0;
}

.woocommerce-checkout #place_order {
    width: 100%;
}

.woocommerce-checkout .woocommerce-shipping-methods li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.woocommerce-checkout .woocommerce-shipping-methods input {
    width: auto !important;
    margin: 0;
}

.woocommerce-checkout .woocommerce-shipping-methods label {
    color: #fdffff;
}

/* All WooCommerce radio buttons */
.woocommerce input[type="radio"] {
    accent-color: #fae200;
}

/* Checkboxes too */
.woocommerce input[type="checkbox"] {
    accent-color: #fae200;
}

/* Payment box */
.wc-ppcp-credit-card-gateway-card {
    width: 100%;
}

/* Card form wrapper */
.wc-ppcp-credit-card-gateway-card-fields {
    width: 100%;
}

/* Hosted fields */
.wc-ppcp-credit-card-gateway-card-fields iframe {
    width: 100% !important;
}

/* Payment methods */
.wc_payment_methods li {
    display: block;
    margin-bottom: 25px;
}

.wc_payment_methods li>label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Checkout payment method radios */
.woocommerce-checkout #payment input[type="radio"],
.woocommerce-checkout .ppcp-radiobutton input[type="radio"],
.woocommerce-checkout .wc-ppcp-payment-method input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;

    margin: 0 10px 0 0 !important;

    accent-color: #fae200;
    vertical-align: middle;
}

/* Payment method list item stays block so payment boxes sit underneath */
.woocommerce-checkout #payment ul.payment_methods li {
    display: block !important;
    margin-bottom: 24px;
}

/* Only align the radio + label line */
.woocommerce-checkout #payment ul.payment_methods li>input[type="radio"],
.woocommerce-checkout #payment ul.payment_methods li>label {
    display: inline-flex !important;
    vertical-align: middle;
}

/* Radio styling */
.woocommerce-checkout #payment input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
    accent-color: #fae200;
}

/* Payment box sits below method title */
.woocommerce-checkout #payment div.payment_box {
    display: block !important;
    clear: both;
    margin-top: 16px !important;
    width: 100% !important;
}

/* PayPal / Apple Pay buttons wrapper */
.woocommerce-checkout .ppc-button-wrapper,
.woocommerce-checkout .paypal-buttons,
.woocommerce-checkout .wc-ppcp-product-payment-method,
.woocommerce-checkout .wc-ppcp-checkout-container {
    display: block !important;
    width: 100% !important;
    margin-top: 16px !important;
}

/* Keep labels inline with radios */
.woocommerce-checkout #payment ul.payment_methods li>label,
.woocommerce-checkout .wc-ppcp-payment-method label,
.woocommerce-checkout .ppcp-radiobutton label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;

    margin: 0 !important;

    color: #fdffff;
    font-family: 'Academic M54', sans-serif;
}

/* Stop inputs inheriting full-width checkout styles */
.woocommerce-checkout #payment input[type="radio"] {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-notices-wrapper {
    position: fixed;
    top: calc(var(--header-height) + 20px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    width: min(90%, 900px);
    pointer-events: none;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    pointer-events: auto;

    background: rgba(16, 23, 17, 0.96) !important;
    border: 2px solid #fae200 !important;
    color: #fdffff !important;

    margin: 0 !important;
    padding: 18px 24px !important;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.woocommerce-notices-wrapper .woocommerce-error {
    border-color: #ff3f68 !important;
}

.woocommerce-notices-wrapper a.button {
    float: right !important;
    background: #fae200 !important;
    color: #101711 !important;
    border-radius: 0 !important;
    font-family: 'Academic M54', sans-serif !important;
}

@media (max-width: 768px) {
    .tourMapSection {
        padding-top: 50px;
    }

    .mapOverlay {
        position: static;
        transform: none;
        width: 100%;
        padding: 0 0 20px;
    }

    .mapOverlay h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    .yearFilters {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 20px 16px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .yearFilters::after {
        content: "→";
        flex: 0 0 auto;
        color: #fae200;
        font-size: 24px;
        align-self: center;
        padding-left: 5px;
    }

    .yearFilters button {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    #map {
        height: 70vh;
        min-height: 600px;
    }
}