<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@700&amp;display=swap";
@import url('https://fonts.googleapis.com/css2?family=Aboreto&amp;display=swap');

h1,h2,h3,h4 {
    font-family:Aboreto;
}
:root {
    --brown: #f5cbbe;
    --light-brown: #ffe7e0;
    --header-brown: #ffd1c4;
    --foreground: #3a0d0d;
    --foreground-dark: #fff;
    --darker-foreground: #ad6666;
    --secondary-text: #d9d9d9;
    --brown-highlight: #d89f8e;
    --gallery-bar: rgb(235 179 163 / 79%);
}

body {
    color: var(--foreground);
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

hr {
    border-top: var(--darker-foreground)
}

.buy {
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    border-radius: 5px;
    color: white;
    background: var(--brown-highlight);
    border-style: none;
    height: 40px;
    min-width: 150px;
    transition: all 0.2s;
}

.buy:hover {
    cursor: hand;
    filter: brightness(1.1);

}

.checkout-button-img {
    margin: 0 5px 0 0;
    height: 15px;
}

.footer-nav {
    min-height: 50px;
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

#burger-menu {
    backdrop-filter: blur(5px);
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    width: 100%;
    margin-bottom: -50px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background: #000000bd;
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

i {
    font-weight: bold;
    font-style: normal;
    color: var(--brown-highlight);
}

h1 {
    text-align: center;
    font-size: 48px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-weight: normal;
}

h2, h3, h1 {
    color: white;
}

.content-a {
    color: var(--foreground)
}

h2, h3 {

    text-align: center;
    margin: 10px;
    max-width: 600px;
}

.closed {
    display: none;
}

.intro-p {
    color: var(--darker-foreground);
}

main {
    min-height: 100%;
}

p {
    font-size: 18px;
    text-align: justify;
}

#preview-img {
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    pointer-events: none
}

.nav-btn {
    transition: all 0.1s;
    min-width: 150px;
    padding: 0 10px 0 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 49px;
}

.header-btn:hover {
    background: rgba(143, 92, 92, 0.16);
    cursor: hand;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--brown);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--brown-highlight);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--foreground);
}
.img-li {
    display: flex;
    cursor: pointer;
    padding: 5px;
    min-width: 20px;
    margin: 5px;
    justify-content: center;
}

.bottom-nav {
    color: var(--darker-foreground);
}

.icon {
    color: white;
}

.trash-icon,.icon{
    margin: 10px;
    pointer-events: none;
}
#preview {
    backdrop-filter: blur(10px);
    opacity: 0%;
    justify-content: center;
    transition: all 0.2s;
    align-items: center;
    display: flex;
    position: fixed;
    z-index: 3;
    height: 100%;
    width: 100%;
    background: #0000008c;
}

.circle {
    transition: all 0.1s;
    pointer-events: none;
    width: 14px;
    border: solid rgb(255 255 255 / 46%) 2px;
    box-sizing: border-box;
    height: 14px;
    border-radius: 100%;
}

.img-li:hover &gt; .circle {
    background: rgb(255 255 255 / 46%) !important;
}

#main-header {
    width: 100%;
    min-height: 50px;
    z-index: 2;
    position: absolute;
    justify-content: space-between;
    max-height: 50px;
    display: flex;
    align-items: center;
}

#selected &gt; .circle {
    width: 12px;
    height: 12px;
    background: rgb(255 255 255 / 27%);
}

.img-ul {
    align-items: center;
    backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--gallery-bar);
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.gallery {
    overflow: hidden;
    border-radius: 5px;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vw;
    max-height: 600px;
    background-size: cover;
    max-width: 900px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../assets/gallerydefault.png');
}

#header-content {
    overflow: hidden;
}

.header-btn {
    transition: all 0.1s;
    letter-spacing: normal !important;
    padding: 10px;
    min-width: 100px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    border: var(--brown-highlight) solid 2px;
    background: #8f5c5c47;
}

.image-gallery {
    display: flex;
    background-size: cover;
}

.img-gallery {
    padding-bottom: 50px;
}

@media (max-width: 691px) {
        #preview-img {
        max-width: 100%;
    }

    .wide-screen {
        display: none !important;
    }

    #location {
        padding: 0;
    }

    main {
        padding-bottom: 10px !important;
    }
}

#header-logo {
    max-height: 40px;
    height: 50px
}

.nav-shopping-cart {
    color: var(--darker-foreground);
}

#header-nav {
    display: flex;
    padding-left: 90px;
}

@media (min-width: 691px) {
    .img-gallery {
        margin: 20px;
    }

    .product {
        margin: 14px;
    }

    .footer-nav {
        grid-auto-flow: column;
    }

    footer {
        display: flex;
    }

    .image-gallery {
        margin: 50px 50px 0 50px;
    }

    article {
        padding-right: 100px;
        padding-left: 100px
    }

    .small-screen {
        display: none;
    }
}

.img-gallery {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-holder {
    width: 100%;
}

.gallery-holder {
    display: flex;
    flex-direction: column;
}

.gallery-main, .gallery-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1249px) {
    .gallery-holder {
        display: grid !important;
        grid-template-columns: 50% 50%;
    }

    .offer {
        height: 450px !important;
    }
}

@media(max-width: 1249px) {
    .footer-nav {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .max-screen {
        display: none;
    }
}

::selection {
    background-color: var(--brown-highlight) !important;
}

.product-intro {
    text-align: left;
    min-height: 50px;
    font-size: 16px !important;
}

h3 {
    font-size: 26px;
}

.preview {
    max-width: 100%;
    border-radius: 5px;
}

.product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-image-container {
    position: relative;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
}
.product-price-tag {
    position: absolute;
    border: 0px;
    background: #00000012;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    bottom: 0;
    right: 0;
    margin: 10px;
    color: var(--darker-foreground);
}

#footer-logo {
    position: relative;
    height: 80px;
    padding: 10px;
}

.product {
    min-width: 360px;
    width: 41%;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header-content  {
    text-shadow: 0 0 15px black;
}

@media (max-width: 1440px) {
    .product {
        min-width: 332px !important;
    }
}

@media (max-width: 1090px) {
    .product {
        margin: 14px 10px;
    }

    .gallery {
        border-radius: 0;
    }

    .image-gallery {
        margin: 10px 10px 0 10px;
    }

    article {
        padding-right: 30px;
        padding-left: 30px
    }
}

#header-outer {
    padding-top: 50px;
    background-image: url('/assets/banner.jpg');
    background-size: cover;
}

@media (max-width: 1250px) {
    main {
        width: 100% !important;
    }

    .nav-shopping-cart {
        color: var(--foreground-dark);
    }
}

main {
    width: 60%;
}

@media (max-width: 820px) {
    main {
        max-width: 100% !important;
        min-width: 100% !important;
    }
}

.nav-btn:hover {
    font-weight: bold;
}

a, button {
    text-decoration: none;
    color: var(--foreground-dark);
}</pre></body></html>