<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial;
    margin: 0px;
}
h1 {
    color: green;
}

#top {
    background-color: green;
    height: 48px;
}

#banner {
    background-color: #FFF;
    height: 200px;
}

#menu {
    background-color: green;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#container {
    height: auto;
}
#footer {
    background-color: #4CAF50;
    color: white;
    padding: 40px 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
    clear: both;
    height: auto;
}
#content {
    width: 80%;
    margin: auto;
    height: 1500px;
    background-color: #FFF;
}
.cate {
    clear: both;
}
.cate-title {
    background-color: green;
    color: #FFF;
    border-radius: 15px;
    font-size: 16pt;
    line-height: 48px;
    width: 300px;
    padding-left: 15px;
    text-transform: uppercase;
}
* {
    box-sizing: border-box;
}
.product {
    padding: 15px;
    border: 1px solid #CCC;
    border-radius: 15px;
    text-align: center;
    height: 300px;
    width: 100%;
}
.photo {
    width: 180px;
    height: 180px;
}
.name {
    color: green;
    font-size: 16pt;
    font-weight: bold;
}
.price {
    color: orange;
    font-size: 16pt;
    font-weight: bold;
}
.btnBuy {
    border: none;
    background-color: orange;
    color: #FFF;
    height: 40px;
    width: 120px;
    cursor: pointer;
}
#chatbot {
    background-color: orange;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    text-align: center;
}

.hidden-checkbox {
    display: none;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
}

.hamburger-icon .bar {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#menu-toggle:checked + .hamburger-icon .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .hamburger-icon .bar:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked + .hamburger-icon .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


#menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#menu ul li {
    position: relative;
}
#menu li a {
    text-decoration: none;
    color: #FFF;
    display: block;
    line-height: 48px;
    padding: 0px 15px;
    white-space: nowrap;
}
#menu-content {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#menu a:hover {
    background-color: orange;
    color: #FFF;
}

#menu ul ul {
    display: none;
    position: absolute;
    top: 48px;
    left: 0px;
    background-color: #DDD;
    border: 1px solid #CCC;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    min-width: 200px;
    padding: 0;
    margin: 0;
}
#menu li:hover ul {
    display: block;
}
#menu li li {
    float: none;
    width: 100%;
    line-height: 40px;
    border-bottom: 1px solid #EEE;
}
#menu li li:last-child {
    border-bottom: none;
}
#menu li li a {
    color: #000;
    padding: 0px 15px;
}
#menu li li a:hover {
    background-color: #CCC;
    color: #000;
}


.col-1 {width:8.33%;}
.col-2 {width:16.66%;}
.col-3 {width:25%;}
.col-4 {width:33.33%;}
.col-5 {width:41.66%;}
.col-6 {width:50%;}
.col-7 {width:58.33%;}
.col-8 {width:66.66%;}
.col-9 {width:75%;}
.col-10 {width:83.33%;}
.col-11 {width:91.66%;}
.col-12 {width:100%;}

[class*="col-"] {
    float: left;
    height: auto;
    padding: 15px;
    margin-bottom: 30px;
}

.col-s-hide, .col-m-hide {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .col-s-1 {width:8.33%;}
    .col-s-2 {width:16.66%;}
    .col-s-3 {width:25%;}
    .col-s-4 {width:33.33%;}
    .col-s-5 {width:41.66%;}
    .col-s-6 {width:50%;}
    .col-s-7 {width:58.33%;}
    .col-s-8 {width:66.66%;}
    .col-s-9 {width:75%;}
    .col-s-10 {width:83.33%;}
    .col-s-11 {width:91.66%;}
    .col-s-12 {width:100%;}

    #banner {
        height: 120px;
    }

    #menu {
        height: 48px;
        justify-content: flex-end;
    }

    #menu-content {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        background-color: green;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        z-index: 99;
        height: auto;
        margin: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #menu-toggle:checked ~ #menu-content {
        display: flex;
    }

    #menu ul {
        flex-direction: column;
        width: 100%;
    }
    #menu ul li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    #menu ul li:last-child {
        border-bottom: none;
    }
    #menu li a {
        padding: 10px 20px;
        line-height: normal;
    }
    #menu ul ul {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        background-color: rgba(221, 221, 221, 0.8);
    }
    #menu li li a {
        padding-left: 40px;
    }

    .hamburger-icon {
        display: flex;
    }

    .footer-column {
        display: none !important;
    }
    .col-s-12.footer-column {
        display: block !important;
    }
    .footer-content {
        width: 90%;
        text-align: center;
    }
    #footer iframe {
        margin: auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .col-m-1 {width:8.33%;}
    .col-m-2 {width:16.66%;}
    .col-m-3 {width:25%;}
    .col-m-4 {width:33.33%;}
    .col-m-5 {width:41.66%;}
    .col-m-6 {width:50%;}
    .col-m-7 {width:58.33%;}
    .col-m-8 {width:66.66%;}
    .col-m-9 {width:75%;}
    .col-m-10 {width:83.33%;}
    .col-m-11 {width:91.66%;}
    .col-m-12 {width:100%;}

    #menu {
        height: 48px;
        justify-content: center;
    }
    #menu-content {
        width: 95%;
        display: flex;
        flex-direction: row;
        position: static;
        margin: auto;
        height: 100%;
    }
    #menu ul {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
    }
    #menu ul li {
        margin: 0 5px;
        float: none;
    }
    #menu li a {
        padding: 0px 10px;
    }

    .hamburger-icon {
        display: none;
    }

    #menu ul ul {
        display: none;
        position: absolute;
        top: 48px;
        left: 0px;
        background-color: #DDD;
        border: 1px solid #CCC;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
        min-width: 200px;
        padding: 0;
        margin: 0;
    }

    .footer-column {
        display: none !important;
    }
    .col-m-6.footer-column {
        display: block !important;
    }
    .footer-content {
        width: 90%;
    }
}

@media screen and (min-width: 1024px){
    .col-x-1 {width:8.33%;}
    .col-x-2 {width:16.66%;}
    .col-x-3 {width:25%;}
    .col-x-4 {width:33.33%;}
    .col-x-5 {width:41.66%;}
    .col-x-6 {width:50%;}
    .col-x-7 {width:58.33%;}
    .col-x-8 {width:66.66%;}
    .col-x-9 {width:75%;}
    .col-x-10 {width:83.33%;}
    .col-x-11 {width:91.66%;}
    .col-x-12 {width:100%;}

    #menu {
        height: 48px;
        justify-content: center;
    }
    #menu-content {
        width: 80%;
        display: flex;
        flex-direction: row;
        position: static;
        margin: auto;
        height: 100%;
    }
    #menu ul {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    #menu ul li {
        float: left;
    }

    .hamburger-icon {
        display: none;
    }

    #menu ul ul {
        display: none;
        position: absolute;
        top: 48px;
        left: 0px;
        background-color: #DDD;
        border: 1px solid #CCC;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
        min-width: 200px;
        padding: 0;
        margin: 0;
    }

    .footer-column {
        display: block !important;
    }
    .footer-content {
        width: 80%;
    }
}

.footer-content {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.footer-column {
    height: auto;
    margin-bottom: 0;
}

#footer iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
    max-width: 100%;
}

#footer h3 {
    margin-bottom: 15px;
    font-size: 1em;
    color: inherit;
}

#footer p {
    margin-bottom: 8px;
    line-height: 1.5;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    margin-bottom: 8px;
}

#footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #ffd700;
}

#Slideshow {
    width: 100%;
    height: 400px; 
    position: relative;
    overflow: hidden;
}

#slide {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

#btnNext, #btnBack {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

#btnBack {
    left: 10px;
}

#btnNext {
    right: 10px;
}

#btnNext:hover, #btnBack:hover {
    background-color: rgba(0, 0, 0, 0.8);
}</pre></body></html>