@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* =========================================================
   BOANITA — GLOBAL DESIGN
   Antik / läder / mörkt trä / rött
   Fokus: hög läsbarhet och enkel navigation
   ========================================================= */

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
    --color-bg-outer: #080807;
    --color-bg-content: #0d0f0e;
    --color-card-bg: #171512;
    --color-text-main: #eee7da;
    --color-text-soft: #d2cbc0;
    --color-text-muted: #b5aea3;
    --color-text-dark: #111111;
    --color-accent-red: #c83227;
    --color-accent-red-bright: #e04437;
    --color-accent-red-dark: #711b16;
    --color-gold: #a4864d;
    --color-gold-soft: #c0a66c;
    --color-border: #302d27;
    --font-display: 'Cinzel Decorative', serif;
    --font-body: 'Cormorant Garamond', serif;
}

/* =========================================================
   2. GLOBAL RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--color-bg-outer);
    background-image: url("Images/bg_main.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent-red-bright);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

    a:hover {
        color: #ff6559;
    }

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   4. TOP NAVIGATION
   ========================================================= */

.top-nav-wrapper {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(12, 11, 10, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--color-accent-red);
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-block;
    min-height: 35px;
    padding: 0.35rem 0.2rem;
    color: #eee9df;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

    .site-nav a:hover,
    .site-nav a.active {
        color: var(--color-accent-red-bright);
    }

/* =========================================================
   5. HEADER
   ========================================================= */

.site-header-clean {
    width: 100%;
    max-width: 100%;
    background-image: url("Images/headerbg.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: clamp(4rem, 5vw, 4rem) 2rem 1.5rem;
    margin-bottom: -3rem;
}

.header-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-link {
    display: block;
}

.header-logo-img {
    width: clamp(280px, 35vw, 550px);
    height: auto;
    filter: brightness(1.05);
    position: relative;
    z-index: 30;
    margin-bottom: clamp(35px, -10vw, -40px);
}

.header-info-box {
    padding: 0rem 1.25rem;
    text-align: center;
    width: 100%;
    max-width: 600px; 
    max-height: 300px;
    position: relative;
    z-index: 20;
    margin-bottom: clamp(80px, -10vw, -40px);
}

    .header-info-box .eyebrow {
        margin: 0 0 0.1rem 0;
        color: var(--color-accent-red);
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .header-info-box .info-hours {
        color: #0a0a0a;
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.5;
    }

        .header-info-box .info-hours p {
            margin: 0;
            color: #0a0a0a;
            white-space: pre-line;
        }

/* =========================================================
   6. MAIN CONTENT
   ========================================================= */

.site-main {
    width: 100%;
    max-width: 1350px;
    margin: -50px auto 0 auto;
    position: relative;
    z-index: 15;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.05) 12%, rgba(0, 0, 0, 0.18) 25%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.04) 72%, rgba(0, 0, 0, 0.25) 100% ), linear-gradient( rgba(9, 11, 10, 0.72), rgba(7, 9, 8, 0.84) ), url("Images/leather_bg.png");
    background-size: cover;
    background-position: center;
    border: 30px solid transparent;
    border-image: url("Images/site_main_border.png") 50 round;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.9), inset 0 0 25px rgba(0, 0, 0, 0.8), 0 12px 35px rgba(0, 0, 0, 0.75);
    border-radius: 8px 8px 0 0;
    flex: 1;
}

    /* Panelens subtila patina */

    .site-main::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(255,255,255,0.015), transparent 25%, transparent 75%, rgba(255,255,255,0.01) );
        pointer-events: none;
        z-index: 0;
    }

    .site-main::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.4;
        background: radial-gradient( ellipse at 8% 48%, rgba(120, 92, 48, 0.18) 0%, transparent 8% ), radial-gradient( ellipse at 92% 73%, rgba(130, 100, 50, 0.15) 0%, transparent 7% ), radial-gradient( ellipse at 15% 86%, rgba(110, 80, 40, 0.18) 0%, transparent 6% ), radial-gradient( ellipse at 88% 25%, rgba(100, 75, 40, 0.10) 0%, transparent 8% );
        mix-blend-mode: screen;
        z-index: 0;

    }
.note-page ::after {
    content: "";
    position: absolute;
    
}

    .site-main > * {
        position: relative;
        z-index: 1;
    }

/* =========================================================
   7. GENERIC HEADINGS
   ========================================================= */

.eyebrow {
    margin: 0 0 0.5rem;
    color: var(--color-accent-red);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px 2px #000;
}

.section-heading {
    margin-bottom: 1rem;
    color: #eee6d5;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.2;
    text-shadow: 0 2px 2px #000, 0 0 12px rgba(0, 0, 0, 0.8);
}

.page-intro {
    color: var(--color-text-soft);
    font-size: 1.15rem;
    text-align: center;
}

.title-black {
    color: black;
    text-shadow: none;
}

/* =========================================================
   8. HOME INTRO
   ========================================================= */

.home-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.2rem 2rem 2.5rem;
    text-align: center;
}

    .home-intro .eyebrow {
        font-size: 0.9rem;
    }

    .home-intro .section-heading {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 3vw, 2.7rem);
    }

    .home-intro > p:last-child {
        max-width: 720px;
        margin: 0 auto;
        color: #d0c9bd;
        font-family: var(--font-body);
        font-size: 1.2rem;
        line-height: 1.65;
        text-shadow: 0 1px 2px #000;
    }

/* =========================================================
   9. FEATURE BAND
   ========================================================= */

.feature-band {
    padding: 1rem 2.5rem 3rem;
    background: transparent;
    border-top: 1px solid rgba(177, 143, 83, 0.22);
    border-bottom: 1px solid rgba(177, 143, 83, 0.22);
    position: relative;
}

    .feature-band::before {
        content: "";
        position: absolute;
        left: 15%;
        right: 15%;
        top: 0;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(164, 130, 74, 0.35), transparent );
    }

    .feature-band::after {
        content: "";
        display: block;
        max-width: 850px;
        height: 1px;
        margin: 2.4rem auto 0;
        background: linear-gradient( 90deg, transparent, rgba(165, 132, 75, 0.38), rgba(165, 132, 75, 0.15), transparent );
    }

.feature-band-inner {
    max-width: 1030px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    position: relative;
}

/* =========================================================
   10. FEATURE CARDS
   ========================================================= */

.feature-card {
    min-height: 390px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    background: linear-gradient( rgba(18, 16, 13, 0.88), rgba(8, 8, 7, 0.97) );
    border: 20px solid transparent;
    border-image: url("/Images/featureband_border.png") 115 33 114 33 stretch;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.9), 0 0 2px rgba(190, 160, 100, 0.25);
    transition: transform 0.25s ease, filter 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        filter: brightness(1.08);
    }

    .feature-card img {
        width: 100%;
        height: 185px;
        object-fit: cover;
        margin: 0;
        filter: sepia(0.16) contrast(1.08) brightness(0.88);
    }

    .feature-card::after {
        content: "";
        position: absolute;
        left: 0px;
        right: 0px;
        top: 175px;
        height: 20px;
        background: linear-gradient( transparent, rgba(8, 8, 7, 0.75) );
        pointer-events: none;
    }

.feature-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem 1rem 1.3rem;
}

    .feature-card-body h3 {
        margin: 0 0 0.6rem;
        color: #eee5d4;
        font-family: var(--font-display);
        font-size: 1.3rem;
        line-height: 1.25;
        text-shadow: 0 2px 2px #000;
    }

    .feature-card-body p {
        max-width: 260px;
        margin: 0 auto 0.8rem;
        color: #c1b9ad;
        font-family: var(--font-body);
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .feature-card-body a {
        display: inline-block;
        align-self: center;
        min-height: 44px;
        padding: 0.45rem 0.8rem;
        color: #d04438;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 700;
        text-shadow: 0 1px 2px #000;
    }

        .feature-card-body a:hover {
            color: #ff6559;
        }

/* =========================================================
   11. LATEST PRODUCTS
   ========================================================= */

.latest-band {
    padding: 2.5rem 2rem 2rem;
    background: transparent;
    position: relative;
}

    .latest-band::before {
        content: "";
        position: absolute;
        left: 15%;
        right: 15%;
        top: 0;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(164, 130, 74, 0.35), transparent );
    }

.latest-band-inner {
    position: relative;
}

.latest-band-header {
    margin-bottom: 2rem;
    text-align: center;
}

    .latest-band-header .section-heading {
        margin-bottom: 0.45rem;
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    .latest-band-header a {
        display: inline-block;
        min-height: 44px;
        padding: 0.4rem 0.7rem;
        color: #d04438;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

/* =========================================================
   12. PRODUCT GRID
   ========================================================= */

.product-grid,
.product-grid-mini {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    padding: 0;
}

/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.shelf-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0.55rem;
    text-align: center;
    background: linear-gradient( rgba(25, 21, 17, 0.96), rgba(11, 10, 9, 0.98) );
    border: 12px solid transparent;
    border-image: url("/Images/featureband_border.png") 115 33 114 33 stretch;
    border-radius: 0;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.8), inset 0 0 12px rgba(0, 0, 0, 0.8);
    transition: transform 0.2s ease, filter 0.2s ease;
    min-height: 390px;
}


    .shelf-card:hover {
        transform: translateY(-4px);
        filter: brightness(1.08);
    }


    /* Produktbild */

    .shelf-card .framed-photo {
        position: relative;
        overflow: hidden;
        background: #080807;
    }

        .shelf-card img,
        .shelf-card .framed-photo img {
            width: 100%;
            height: 145px;
            object-fit: cover;
            margin: 0;
            border-radius: 0;
            filter: sepia(0.13) contrast(1.08) brightness(0.9);
        }

/* =========================================================
   PRODUCT CARD BODY
   ========================================================= */

.shelf-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.7rem 0.2rem 0.2rem;
   
}


    .shelf-card-body h3 {
        margin: 0;
        color: #e5ddcd;
        font-family: var(--font-display);
        font-size: 1rem;
        line-height: 1.3;
        text-shadow: 0 2px 2px #000;
        color: red;
        margin-bottom: 0.3rem;
    }

/* =========================================================
   HANDMADE ANTIQUE PRICE TAG
   ========================================================= */

.price-tag-wrap {
    position: relative;
    margin-top: auto;
    align-self: center;
    padding: 0.45rem 1.15rem 0.5rem;
    background: linear-gradient( 135deg, #d1b986 0%, #b79a67 45%, #c9ad79 100% );
    border: 1px solid #80683e;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.7), inset 0 0 4px rgba(255, 245, 210, 0.35);
    transform: rotate(-2deg);
    clip-path: polygon( 0 4%, 96% 0, 100% 50%, 97% 96%, 3% 100%, 0 50% );
}

    /* Litet hål i prislappen */

    .price-tag-wrap::before {
        content: "";
        position: absolute;
        left: 0.45rem;
        top: 50%;
        width: 6px;
        height: 6px;
        transform: translateY(-50%);
        border-radius: 50%;
        background: #241b10;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 235, 190, 0.4);
    }

    /* Liten "snöre"-linje från hålet */

    .price-tag-wrap::after {
        content: "";
        position: absolute;
        left: 0.05rem;
        top: 50%;
        width: 0.55rem;
        height: 1px;
        background: #80683e;
        transform: rotate(-18deg);
    }

/* Priset */

.price-amount {
    position: relative;
    color: #24170f;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 0 rgba(255, 240, 200, 0.35);
}

/* Gammalt pris */

.price-old {
    margin-right: 0.35rem;
    color: #594936;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: line-through;
}

/* =========================================================
   14. SOLD STAMP
   ========================================================= */

.stamp-sold {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid #6d1712;
    background: rgba(100, 20, 15, 0.94);
    color: #eadfd0;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   15. HOME NOTE
   ========================================================= */

.home-note {
    padding: 1.5rem 2rem 3rem;
}

.note-card {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: linear-gradient( rgba(45, 19, 15, 0.82), rgba(18, 10, 8, 0.95) ), url("Images/leather_bg.png");
    background-size: cover;
    border: 2px solid #691a15;
    border-radius: 5px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.75), inset 0 0 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

    .note-card::before {
        content: "";
        position: absolute;
        inset: 5px;
        border: 1px dashed rgba(160, 35, 27, 0.8);
        border-radius: 3px;
        box-shadow: 0 0 3px rgba(255, 50, 40, 0.15), inset 0 0 3px rgba(255, 50, 40, 0.15);
        pointer-events: none;
    }

    .note-card .eyebrow {
        position: relative;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }

    .note-card > p:last-child {
        position: relative;
        margin: 0;
        color: #d8d0c4;
        font-family: var(--font-body);
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center;
    }

/* =========================================================
   16. HITTA HIT — PAGE HEADER
   ========================================================= */

.page-header {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

    .page-header .eyebrow {
        font-size: 0.9rem;
    }

    .page-header .section-heading {
        margin-bottom: 0.5rem;
        font-size: clamp(2.1rem, 4vw, 3rem);
    }

/* =========================================================
   17. MAP SECTION
   ========================================================= */

.map-section {
    width: 100%;
    padding: 1rem 2rem 3rem;
}

.map-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* =========================================================
   18. MAP
   ========================================================= */

.map-frame-custom {
    width: 100%;
    max-width: 850px;
    height: 460px;
    overflow: hidden;
    margin: 0 auto 2rem;
    background: #111;
    border: 12px solid transparent;
    border-image: url("/Images/featureband_border.png") 115 33 114 33 stretch;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 0, 0, 0.8);
}

    .map-frame-custom iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

/* =========================================================
   19. ADDRESS CARD
   ========================================================= */

.map-note {
    width: 100%;
    max-width: 600px;
    padding: 1.8rem 2rem 2rem;
}

    .map-note .eyebrow {
        margin-bottom: 0.6rem;
        font-size: 0.8rem;
    }

    .map-note .title-black {
        margin-bottom: 0.4rem;
        font-size: clamp(1.5rem, 3vw, 2rem);
        line-height: 1.25;
    }

    .map-note .address {
        position: relative;
        margin: 0;
        color: #e4dbce;
        font-family: var(--font-body);
        font-size: 1.25rem;
        font-weight: 600;
    }

.note-divider {
    width: 60%;
    height: 1px;
    margin: 1.3rem auto;
    background: linear-gradient( 90deg, transparent, rgba(190, 160, 100, 0.45), transparent );
}

.map-tip {
    position: relative;
    margin: 0 auto;
    color: #d7cec1;
    font-size: 1.1rem;
    line-height: 1.65;
}

/* =========================================================
   20. MAP ACTION BUTTONS
   ========================================================= */

.map-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.map-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.65rem 1.2rem;
    background: rgba(20, 15, 12, 0.9);
    border: 1px solid #772018;
    color: #eee3d3;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .map-action:hover {
        background: rgba(110, 28, 22, 0.9);
        border-color: var(--color-accent-red-bright);
        color: white;
        transform: translateY(-2px);
    }

/* =========================================================
   21. CONTACT PAGE
   ========================================================= */

.note-page {
    width: 100%;
    padding: 3rem 2rem 4rem;
}

    .note-page .note-card {
        max-width: 650px;
        padding: 2.2rem 2.5rem 2.5rem;
    }

    .note-page .section-heading {
        margin-bottom: 1.3rem;
        font-size: clamp(2rem, 4vw, 2.7rem);
        line-height: 1.2;
    }

    .note-page .note-card > p:not(.eyebrow) {
        position: relative;
        max-width: 540px;
        margin: 0 auto 2rem;
        color: #ddd5c8;
        font-size: 1.2rem;
        line-height: 1.65;
        text-align: center;
    }
 
/* =========================================================
   22. CONTACT DETAILS
   ========================================================= */

.contact-list {
    position: relative;
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(164, 130, 74, 0.3);
}

    .contact-list > div {
        margin-bottom: 1.5rem;
    }

        .contact-list > div:last-child {
            margin-bottom: 0;
        }

    .contact-list dt {
        margin-bottom: 0.25rem;
        color: #d04438;
        font-family: var(--font-display);
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .contact-list dd {
        margin: 0;
    }

    .contact-list a {
        display: inline-block;
        min-height: 50px;
        padding: 0.35rem 0.5rem;
        color: #f0e5d7;
        font-family: var(--font-body);
        font-size: 1.35rem;
        font-weight: 700;
        text-decoration: underline;
        text-decoration-color: rgba(208, 68, 56, 0.55);
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }

        .contact-list a:hover {
            color: #ff6659;
            text-decoration-color: #ff6659;
        }

/* =========================================================
   23. FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    max-width: 100%;
    background-color: var(--color-bg-outer);
    text-align: center;
    padding: 2.5rem 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 1rem;
    color: var(--color-text-muted);
    position: relative;
}

    .site-footer p {
        margin: 0;
        line-height: 1.5;
    }

/* =========================================================
   24. DECORATION
   ========================================================= */

.feature-band-inner::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 42%;
    width: 70px;
    height: 70px;
    background-image: url("Images/stamp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-12deg);
    pointer-events: none;
}

.latest-band-inner::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 12%;
    width: 70px;
    height: 70px;
    background-image: url("Images/stamp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(8deg);
    pointer-events: none;
}

/* =========================================================
   25. DESKTOP
   ========================================================= */

@media (min-width: 901px) {

    .feature-band-inner {
        grid-template-columns: repeat(3, minmax(0, 285px));
        justify-content: center;
    }

    .product-grid-mini {
        grid-template-columns: repeat(4, minmax(0, 215px));
        justify-content: center;
    }
}

/* =========================================================
   26. TABLET
   ========================================================= */

@media (max-width: 900px) {

    body {
        background-attachment: scroll;
    }

    .site-nav ul {
        gap: 1rem;
    }

    .site-nav a {
        font-size: 0.82rem;
    }

    .site-header-clean {
        padding-top: 4.5rem;
    }

    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .header-logo-img {
        width: 100%;
        max-width: 340px;
        margin-bottom: 0;
    }

    .header-info-box {
        margin-bottom: 4rem;
    }

        .header-info-box .info-hours {
            font-size: 1.15rem;
        }

    .site-main {
        margin-top: -20px;
        border-width: 20px;
        font-size: 17px;
    }

    .home-intro {
        padding: 2.5rem 1.5rem 2rem;
    }

        .home-intro > p:last-child {
            font-size: 1.15rem;
        }

    .feature-band {
        padding: 1.5rem 1rem 2.5rem;
    }

    .feature-band-inner {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 1.5rem;
    }

    .feature-card {
        min-height: 0;
    }

        .feature-card img {
            height: 220px;
        }

        .feature-card::after {
            left: 0px;
            right: 0px;
            top: 175px;
            height: 40px;
            
        }
    .feature-card-body {
        padding: 1.2rem 1.3rem 1.4rem;
    }

        .feature-card-body h3 {
            font-size: 1.35rem;
        }

        .feature-card-body p {
            max-width: 400px;
            font-size: 1.1rem;
        }

        .feature-card-body a {
            font-size: 1.05rem;
        }

    .latest-band {
        padding: 2.5rem 1rem 2rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-grid-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 650px;
        gap: 1rem;
    }

    .shelf-card {
        border-width: 12px;
    }

        .shelf-card img,
        .shelf-card .framed-photo img {
            height: 180px;
        }

    .shelf-card-body h3 {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    .map-section {
        padding: 1rem 1rem 2.5rem;
    }

    .map-frame-custom {
        height: 430px;
    }

    .note-page {
        padding: 2.5rem 1rem 3rem;
    }
}

/* =========================================================
   27. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 17px;
    }

    .site-nav ul {
        gap: 0.4rem 0.8rem;
        padding: 0.55rem 0.5rem;
    }

    .site-nav a {
        min-height: 40px;
        padding: 0.25rem;
        font-size: 0.7rem;
        letter-spacing: 0.07em;
    }

    .site-header-clean {
        padding: 8rem 1rem 1rem;
    }

    .header-logo-img {
        max-width: 330px;
    }

    .header-info-box {
        padding: 0 0.5rem;
    }

        .header-info-box .info-hours {
            font-size: 1.05rem;
            line-height: 1.45;
        }

    .site-main {
        border-width: 12px;
    }

    .home-intro {
        padding: 2rem 0.8rem 1.8rem;
    }

        .home-intro .section-heading {
            font-size: 1.8rem;
        }

        .home-intro > p:last-child {
            font-size: 1.1rem;
            line-height: 1.6;
        }

    .feature-band {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .feature-card {
        border-width: 15px;
    }

        .feature-card img {
            height: 190px;
        }

    .feature-card-body {
        padding: 1rem 0.8rem 1.2rem;
    }

        .feature-card-body h3 {
            font-size: 1.25rem;
        }

        .feature-card-body p {
            font-size: 1.05rem;
        }

        .feature-card-body a {
            font-size: 1rem;
        }

    .latest-band {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .latest-band-header .section-heading {
        font-size: 1.8rem;
    }

    .latest-band-header a {
        font-size: 0.95rem;
    }

    .product-grid-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .shelf-card {
        border-width: 9px;
        padding: 0.4rem;
    }

        .shelf-card img,
        .shelf-card .framed-photo img {
            height: 135px;
        }

    .shelf-card-body {
        padding: 0.65rem 0.1rem 0.15rem;
    }

        .shelf-card-body h3 {
            font-size: 0.95rem;
        }

    .price-amount {
        font-size: 1.1rem;
    }

    .home-note {
        padding: 1rem 0.5rem 2rem;
    }

    .note-card {
        padding: 1.4rem 1rem;
    }

        .note-card > p:last-child {
            font-size: 1.05rem;
        }

    .page-header {
        padding: 2rem 0.8rem 1rem;
    }

        .page-header .section-heading {
            font-size: 1.9rem;
        }

    .map-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .map-frame-custom {
        height: 360px;
        border-width: 9px;
        margin-bottom: 1.5rem;
    }

    .map-note {
        padding: 1.5rem 1rem 1.7rem;
    }

        .map-note .title-black {
            font-size: 1.5rem;
        }

        .map-note .address {
            font-size: 1.15rem;
        }

    .map-tip {
        font-size: 1.05rem;
    }

    .map-actions {
        flex-direction: column;
        width: 100%;
    }

    .map-action {
        width: 100%;
        max-width: 320px;
    }

    .note-page {
        padding: 2rem 0.5rem 2.5rem;
    }

        .note-page .note-card {
            padding: 1.8rem 1rem 2rem;
        }

        .note-page .section-heading {
            font-size: 1.8rem;
        }

        .note-page .note-card > p:not(.eyebrow) {
            font-size: 1.1rem;
            line-height: 1.6;
        }

    .contact-list a {
        font-size: 1.2rem;
        min-height: 48px;
    }

    .site-footer {
        padding: 2rem 1rem;
    }

        .site-footer p {
            font-size: 0.95rem;
        }
}

/* =========================================================
   28. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 400px) {

    .site-nav ul {
        gap: 0.2rem 0.55rem;
    }

    .site-nav a {
        font-size: 0.65rem;
    }

    .header-logo-img {
        max-width: 290px;
    }

    .feature-card img {
        height: 165px;
    }

    .product-grid-mini {
        gap: 0.5rem;
    }

    .shelf-card img,
    .shelf-card .framed-photo img {
        height: 115px;
    }

    .shelf-card-body h3 {
        font-size: 0.88rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    .map-frame-custom {
        height: 310px;
    }
}

/* =========================================================
   29. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
@media (max-width: 900px) {

    .site-main {
        border-width: 20px;
    }

    .feature-band {
        padding:
            1.5rem
            1rem
            2rem;
    }

    .feature-band-inner {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .feature-card img {
        height: 200px;
    }

    .product-grid-mini {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0.8rem;
    }

    .shelf-card {
        border-width: 12px;
    }

    .shelf-card img,
    .shelf-card .framed-photo img {
        height: 140px;
    }

    .latest-band {
        padding:
            2.5rem
            1rem
            1.5rem;
    }
}


@media (max-width: 500px) {

    .site-main {
        border-width: 12px;
    }

    .home-intro {
        padding:
            2rem
            1rem
            1.5rem;
    }

    .home-intro .section-heading {
        font-size: 1.5rem;
    }

    .product-grid-mini {
        grid-template-columns: 1fr 1fr;
    }

    .shelf-card {
        padding: 0.45rem;
        border-width: 9px;
    }

    .shelf-card img,
    .shelf-card .framed-photo img {
        height: 115px;
    }

    .shelf-card-body h3 {
        font-size: 0.7rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    .note-card {
        padding:
            1.2rem
            1rem;
    }
}