/* :root{
--bg:#0b0f14;--text:#eef2f7;--muted:#9fb0c3;--brand:#7c5cff;--brand-2:#65e5a2;--danger:#ff6b6b;--line:#202a35;
} */
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    background: linear-gradient(#f6f6f6 100%);
    color: var(--text);
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
        Noto Sans, "Helvetica Neue", Arial;
}
a {
    color: inherit;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

/* Header */
header {
    position: sticky;
    z-index: 50;
    background: #000000;
    backdrop-filter: saturate(120%) blur(10px);
    margin: 0;
}
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 14px 14px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo svg {
    width: 36px;
    height: 36px;
}
.tag {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #d4af37;
}
.spacer {
    flex: 1;
}

.search {
    --padding: 24px;
    width: max-content;
    height: 50px;
    display: flex;
    align-items: center;
    padding: var(--padding);
    border-radius: 28px;
    background: #f6f6f6;
    transition: background 0.25s;
    margin-top: 15px;
}

.search:focus-within {
    box-shadow: none;
}

.search-input {
    font-size: 16px;
    color: #333333;
    outline: none;
    border: none !important;
    background: transparent;
    width: 360px;
    margin-top: var(--padding);
    margin-bottom: var(--padding);
    box-shadow: none;
}

.search-icon {
    color: rgba(0, 0, 0, 0.5);
}

.cs-ul-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cs-ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.cs-li-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.cs-li-link:hover {
    color: #ffc000;
}

/* Hero */
.hero {
    margin-top: 0;
    padding: 36px 24px;
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero p {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    margin: 0 0 10px;
    font-size: clamp(24px, 4vw, 36px);
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero button {
    background: #ff9800;
    margin-top: 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: medium;
}

.hero button:hover {
    background: #e68900;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}
.product {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product img {
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.product h3 {
    margin: 0.5rem 0;
}
.product p {
    margin: 0.5rem 0;
    font-weight: bold;
    color: #000000;
}
.product button {
    background: #ff9800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.product button:hover {
    background: #e68900;
}

.category {
    display: block;
    color: #ffc000;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.footer {
    background: #000;
    color: #fff;
    padding: 20px 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer p {
    margin: 10px;
    font-size: 14px;
    color: #aaa;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffc000;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffc000;
}

.login-button {
    background: #ff9800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: medium;
}
.login-button:hover {
    background: #de8806;
}

.seasonal-header {
    text-align: left;
    padding: 20px;
    margin: 20px 0;
}

* {
    box-sizing: border-box;
}
.mySlides {
    display: none;
}
img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.snack-slide img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.nav .cs-ul-wrapper .cs-dropdown.dropdown-menu {
    background-color: #060607 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    min-width: 200px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.nav .cs-ul-wrapper .cs-dropdown .cs-dropdown-item {
    color: #ececec !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.nav .cs-ul-wrapper .cs-dropdown .cs-dropdown-item:hover {
    color: #f39c12 !important;
    transform: translateX(5px) !important;
}

.cs-li.dropdown-toggle {
    color: #ffffff !important;
    font-weight: bold !important;
    font-size: 18px !important;
}

.cs-li.dropdown-toggle:hover {
    color: #f39c12 !important;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    list-style: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item,
.cs-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.dropdown-item:hover,
.cs-dropdown-item:hover {
    color: #1e2125;
    background-color: #f8f9fa;
}
