<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans';
    font-size:20px;
    cursor: crosshair;
    overflow-x: hidden;
}
.desktop-only {
    display:block;
}
.mobile-only {
    display:none;
}
.main-content {
    margin-left: 25%;
}
.roboto {
    font-family: 'Roboto';
}
a {
    color:#000000;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color:#000000;
}
.menu {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    text-align: center;
}
.content {
    height: 100vh;
    overflow-y: auto;
    margin-left: 20%;
    padding: 30px;
    padding:20px;
    margin-top: 60px;
    padding-right: 100px;
}
#logo {
    width:60%;
}
#logoTitle {
    font-family: 'Roboto';
    font-size:24px;
    font-weight:bolder;
}
.menu-item {
    text-align: left;
}
.menu-item.active {
    font-weight:900;
    color:#8a8a8a;
}
.menu-item-sub {
    text-align: left;
    font-size:0.75em;
}
.menu-container {
    margin:25%;
}
.menu-icon {
    font-size:1.5em;
    margin-right:10px;
}
.luc-btn {
    text-center;
    width: 70%;
    border:1px solid #000000;
    font-family: 'Roboto';
    margin:0px auto;
    margin-top:20px;
    font-size:0.8em;
    padding-top:10px;
    padding-bottom:10px;
    transition: opacity 0.3s ease-in-out;
    text-transform: uppercase;
}
.luc-btn:hover {
    border:1px solid #000000;
    color:#ffffff;
    background-color:#000000;
    cursor:default;
    transition: 0.3s ease-in-out;
}

.product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-image {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product-image-container:hover .product-image {
    opacity: 0;
}

.product-image-container:hover .product-image-hover {
    opacity: 1;
}

.product-title {
    font-family: 'Roboto';
    font-weight: bold;
    font-size:1.5em;
}
.product-price {
    font-family: 'Roboto';
    font-weight: bold;
    font-size:1.25em;
}
.separator {
    margin-top:10px;
    margin-bottom:10px;
    width:100px;
    height:4px;
    background-color:#000000;
}
.product-description {
    font-size:0.75em;
}
.product-option {
    display:inline-block;
    text-transform: uppercase;
    text-align: center;
    border:1px solid #000000;
    font-family: 'Roboto';
    font-size:0.8em;
    padding:20px;
    padding-top:10px;
    padding-bottom:10px;
    margin-right: 20px;
    transition: opacity 0.3s ease-in-out;
}
.product-option:hover {
    border:1px solid #000000;
    color:#ffffff;
    background-color:#000000;
    cursor:default;
    transition: 0.3s ease-in-out;    
}
.product-option.selected {
    background-color:#000000;
    color:#ffffff;
}
.product-option.inactive {
    opacity:0.3;
}
.view-cart-button {
    text-align: center;
    max-width: 300px;
    border:1px solid #000000;
    font-family: 'Roboto';
    margin-top:30px;
    font-size:0.8em;
    padding-top:10px;
    padding-bottom:10px;
    transition: opacity 0.3s ease-in-out;
    text-transform: uppercase;
}
.view-cart-button:hover {
    border:1px solid #000000;
    color:#ffffff;
    background-color:#000000;
    cursor:default;
    transition: 0.3s ease-in-out;
}
.add-to-cart-button {
    text-align: center;
    max-width: 300px;
    border:1px solid #000000;
    font-family: 'Roboto';
    margin-top:30px;
    font-size:0.8em;
    padding-top:10px;
    padding-bottom:10px;
    transition: opacity 0.3s ease-in-out;
    text-transform: uppercase;
}
.add-to-cart-button:hover {
    border:1px solid #000000;
    color:#ffffff;
    background-color:#000000;
    cursor:default;
    transition: 0.3s ease-in-out;
}
.add-to-cart-button.active {
    border:1px solid #000000;
    color:#ffffff;
    background-color:#000000;
    cursor:default;
    transition: 0.3s ease-in-out;
}
.add-to-cart-button.inactive {
    opacity:0.3;
}
.cart-link {
    display:none;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75); /* Semi-transparent black */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    padding: 10px;
    font-size:48px;
    color:#000000;
}
.sticky-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 25%; /* Adjust this value based on your layout */
    z-index: 1000; /* Ensure it is above other elements */
    background-color: white; /* Optional: To ensure background color remains consistent */
}
#backToTop {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000000;
    color: white;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
}

#backToTop:hover {
    background-color: #333333;
}
#menu-icon {
    color:#ffffff;
    font-size:2.5em;
    z-index: 9999999;
}
#menu-icon i {
    cursor: pointer;
}

#close-menu-icon {
    display:none;
    position:absolute;
    right:35px;
    top:20px;
    color:#ffffff;
    font-size:2.5em;
    z-index: 9999999;
}
#close-menu-icon i {
    cursor: pointer;
}
#mobile-menu {
    width:100%;    
    height:100vh;    
    position: absolute;
    top:0;
    left:0;
    background-color:#000000;
    color:#ffffff;
    z-index: 9999; /* Ensure it is above other elements */
}
#mobile-menu a {
    color:#ffffff !important;
}
.mobile-menu-item {
    font-size:24px;
    margin-bottom:24px;
}
.mobile-menu-icon {
    font-size:48px;
    margin-right:10px;
    margin-left:10px;
}</pre></body></html>