* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* outline: 1px solid red; */
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.fullscreen {
    width: 100vw;
    height: 100dvh;
}

.notis {
    margin: 1rem 2rem;
}

.notification {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #e0f3ff; /* Main blue info color */
    color: #004a77; /* Text color */
    border-left: 4px solid #004a77; /* Darker blue inset border */
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.notification-icon {
  margin-right: 15px;
  font-size: 24px;
  color: #004a77;
}

.notification-text {
  font-size: 16px;
  line-height: 1.4;
}

.contentCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 15px 20px;
    background-color: #fdfdfd; /* Main blue info color */
    color: #3d3d3d; /* Text color */
    border: 4px solid #dddddd; /* Darker blue inset border */
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    cursor: pointer;
}

.gradients {
    overflow: hidden; /* Hides the scrollbars */
    position: absolute; /* Ensures it's positioned relative to the nearest positioned ancestor */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -1; /* Places it behind other content */
    display: flex;
}

.gradient {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.5) 50%, rgba(0, 128, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
    background-size: 400% 400%;
    position: absolute;
    border-radius: 50%;
    /* animation: gradient 5s ease infinite; */
    box-shadow: 3rem 3rem 3rem inset rgba(0, 0, 0, 0.00);
}


#o {
    left: 20vw;
    bottom: 10vh;
    width: 50rem;
    height: 50rem;
}
#o.anim {
    animation: goUp 3s ease;
}

#t {
    left: -61vw;
    bottom: 93vh;
    width: 20rem;
    height: 20rem;
}
#t.anim {
    animation: goUp 3s ease;
}

#th {
    left: 10vw;
    bottom: 10vh;
    width: 5rem;
    height: 5rem;
}
#th.anim {
    animation: goUp 3s ease;
}

.move {
    margin-left: 5.5rem;
    position: absolute;
}
.move:hover {
    animation: move 1s ease-in-out infinite;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-between;
    width: 20rem;
    height: 40rem;
    background-color: #ebebeb;
    margin: 4rem;
    padding: 2rem;
    border-radius: 2rem;
    gap: 3rem;
}

.item>div {
    margin: 0.5rem
}

.price {
    margin-right: .2rem;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

@keyframes move {
    0% {
        margin-left: 5.5rem
    }
    50% {
        margin-left: 5.7rem;
    }
    100% {
        margin-left: 5.5rem;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 50% 0%;
    }
}


@keyframes goUp {
    from {
        transform: translateY(0%)
    }
    to {
        transform:translateY(-1000%)
    }
}

/* Chip button styles */
.chip {
    display: inline-block; /* Makes the button behave like a chip */
    background-color: #e0e0e0; /* Light gray background */
    color: #333; /* Text color */
    border: none; /* Removes the border */
    border-radius: 16px; /* Gives the chip its rounded shape */
    padding: 8px 16px; /* Adds spacing inside the chip */
    font-size: 14px; /* Adjust font size */
    font-weight: 500; /* Medium font weight */
    cursor: pointer; /* Pointer cursor for interactivity */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.chip:hover {
    background-color: #d6d6d6; /* Slightly darker on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.chip.active {
    background-color: #888888; /* Even darker when pressed */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Less shadow on press */
}

#list {
    display: none;
    visibility: hidden;
}