@font-face {
    font-family: "Futura";
    src: url("FuturaPT-Medium.ttf");
}

* {
    margin: 0;
    padding: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.space-between {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

hr {
    margin: 10px 5px;
    border: none;
    height: 0px;
    border-top: 1px solid #888888;
}

button {
    font-family: "Futura", sans-serif;
}

html {
    overflow: hidden;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: "Futura", sans-serif;
    overflow-x: hidden;
    position: relative;
    height: 100dvh;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    width: 0;
}

.no-scroll {
    overflow: hidden;
}

header {
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #dddddd;
}

a {
    margin-left: 5px;
}

h1 {
    font-size: calc(32px * var(--ui-scale));
}

h2 {
    font-size: calc(24px * var(--ui-scale));
}

h3 {
    font-size: calc(19px * var(--ui-scale));
}

#modal-content-privacy h3 {
    margin-top: 10px;
}

p,
select,
input,
a {
    font-size: calc(16px * var(--ui-scale));
}

section {
    padding: 5px;
}

ul {
    list-style: none;
}

.wrapper section:last-child {
    margin-bottom: 60px;
}

.content {
    margin-top: 10px;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 10px;
}

.card {
    width: calc(200px * var(--ui-scale));
    border-radius: calc(15px * var(--ui-scale));
    background-color: #dddddd;
    overflow: hidden;
}

.card:first-child {
    margin: 0;
}

.img-container {
    width: 100%;
    background-color: #eeeeee;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-price {
    margin-left: calc(10px * var(--ui-scale));
    font-size: calc(16px * var(--ui-scale));
}

.inner-container {
    display: flex;
    flex-direction: column;
    padding: calc(10px * var(--ui-scale));
}

.container-title {
    font-size: calc(17px * var(--ui-scale));
    text-align: center;
}

.qty-btn {
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    aspect-ratio: 1 / 1;
    margin: calc(10px * var(--ui-scale));
}

.button-inner {
    margin: calc(5px * var(--ui-scale));
    width: calc(16px * var(--ui-scale));
    height: calc(2px * var(--ui-scale));
    background-color: #000000;
}

.overlay {
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    background-color: #000000aa;
    display: none;
    opacity: 0;
    z-index: 10;
}

.modal-box {
    background-color: #ffffff;
    max-width: calc(500px * var(--ui-scale));
    width: calc(100% - (20px * var(--ui-scale)));
    max-height: 80%;
    border-radius: calc(20px * var(--ui-scale));
    overflow-y: scroll;
}

.modal-box .inner-container {
    overflow-y: hidden;
}

.modal-box::-webkit-scrollbar {
    width: 0;
}

.modal-active {
    display: flex;
    opacity: 1;
    animation: opacityFade 0.3s ease;
}

.modal-disabled {
    animation: opacityFadeOut 0.3s ease;
}

@keyframes opacityFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacityFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.modal-active .modal-box {
    animation: fadeIn 0.3s ease;
}

.modal-disabled .modal-box {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
    0% {
        translate: 0 100%;
    }

    100% {
        translate: 0 0;
    }
}

@keyframes fadeOut {
    0% {
        translate: 0 0;
    }

    100% {
        translate: 0 100%;
    }
}

.info-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #dddddd;
    mask-image: linear-gradient(to bottom, #000000 0%, #000000 90%, #000000c0 93%, #00000030 98%, transparent 100%);
}

.modal-box .inner-container {
    padding-top: 0px;
}

.info-title {
    padding: calc(5px * var(--ui-scale));
}

.info-prize {
    font-size: calc(22px * var(--ui-scale));
    padding: 0 calc(5px * var(--ui-scale));
}

.description {
    padding: calc(5px * var(--ui-scale));
}

th,
td {
    text-align: left;
    padding: calc(5px * var(--ui-scale));
}

table {
    border-collapse: collapse;
}

tr+tr td {
    border-top: 1px solid #888888;
}

td,
th {
    border-left: 1px solid #888888;
}

td:first-child,
th:first-child {
    border-left: none;
}

.cart-bar {
    position: fixed;
    background-color: #ffffff;
    inset: auto auto -1px 50%;
    translate: -50% 0;
    width: calc(100% - (40px * var(--ui-scale)));
    max-width: calc(500px * var(--ui-scale));
    height: calc(50px * var(--ui-scale));
    border-radius: calc(20px * var(--ui-scale)) calc(20px * var(--ui-scale)) 0 0;
    box-shadow: 0 calc(-6px * var(--ui-scale)) calc(20px * var(--ui-scale)) #00000033;
    overflow: hidden;
    transition: ease 0.3s;
}

.modal-active+.cart-bar {
    inset: auto auto -100px 50%;
}

.cart-bar-active {
    height: 70%;
    inset: auto auto -1px 50% !important;
    z-index: 10;
}

.cart-total-badge {
    display: none;
    margin-left: calc(10px * var(--ui-scale));
    border-radius: calc(20px * var(--ui-scale));
    background: #dddddd;
    font-size: calc(14px * var(--ui-scale));
    font-weight: 600;
    color: #000;
    padding: calc(5px * var(--ui-scale)) calc(10px * var(--ui-scale));
    box-shadow: 0 calc(6px * var(--ui-scale)) calc(18px * var(--ui-scale)) #00000014;
}

.cart-title {
    padding: calc(15px * var(--ui-scale));
    cursor: pointer;
    display: flex;
    align-items: center;
    width: calc(100% - (30px * var(--ui-scale)));
}

.close-btn {
    border-radius: 50%;
    background-color: #ffffff;
    border: 0;
    transform: scaleY(-1);
    cursor: pointer;
    transition: transform ease 0.5s;
}

.cart-bar-active .close-btn {
    transform: scaleY(1);
}

.cart-slider {
    height: calc(100% - (100px * var(--ui-scale)));
    display: flex;
    transition: transform 0.5s ease;
}

.cart-slider .inner-container {
    min-width: calc(100% - (20px * var(--ui-scale)));
    height: 100%;
    margin: 0 calc(10px * var(--ui-scale));
    padding: 0;
}

.order-list,
.gross-list {
    background-color: #dddddd;
    padding: calc(10px * var(--ui-scale));
    border-radius: calc(10px * var(--ui-scale));
    max-height: calc(100% - (100px * var(--ui-scale)));
    overflow-y: auto;
}

.order-list hr,
.gross-list hr {
    margin: 10px 0;
}

.confirm-btn,
.back-btn {
    width: 100%;
    border-radius: calc(10px * var(--ui-scale));
    padding: calc(10px * var(--ui-scale));
    font-size: calc(18px * var(--ui-scale));
    margin-top: calc(10px * var(--ui-scale));
    border: none;
    background-color: #dddddd;
    color: #555555;
    cursor: pointer;
}

.confirm-active {
    color: #000000;
}

.back-btn {
    background-color: #ffffff;
    border: 2px solid #dddddd;
    color: #000000;
}

.flex-row .confirm-btn {
    width: calc(50% - (5px * var(--ui-scale)));
    margin-left: calc(10px * var(--ui-scale));
}

.flex-row .back-btn {
    width: calc(50% - (5px * var(--ui-scale)));
}

.form-name {
    width: calc(50% - (5px * var(--ui-scale)));
}

label {
    display: block;
    font-size: calc(16px * var(--ui-scale));
    font-weight: 500;
}

input,
select {
    width: 100%;
    padding: calc(10px * var(--ui-scale));
    border-radius: calc(10px * var(--ui-scale));
    margin-bottom: calc(5px * var(--ui-scale));
    border: calc(2px * var(--ui-scale)) solid #aaaaaa;
    outline: none;
    box-sizing: border-box;
    background-color: #ffffff;
}

select {
    cursor: pointer;
    appearance: none;
}

.delivery-date-container {
    max-height: calc(100% - 30px * var(--ui-scale));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.delivery-day {
    padding: 8px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #e5e7eb;
}

.select-disabled {
    background: #f3f4f6;
    color: #777777;
    pointer-events: none;
}

.select-enabled {
    background-color: #f5f5f5;
    color: #282828;
}

.selected {
    background: #ffffff;
    border-color: #bababa;
    color: #000000;
}

#paypal-button-container {
    margin-top: calc(10px * var(--ui-scale));
    border-radius: 10px;
    overflow: hidden;
    height: fit-content;
}



.flying-img {
    position: fixed;
    pointer-events: none;
    opacity: 0.8;
    z-index: 10;
    transition: transform 0.6s ease, opacity 0.6s ease;
    border-radius: calc(10px * var(--ui-scale));
}

@media (max-width: 600px) {
    .content {
        justify-content: space-between;
        gap: calc(10px * var(--ui-scale)) 0;
    }

    .card {
        width: calc(50% - (5px * var(--ui-scale)));
    }
}

@media (min-width: 600px) and (max-width: 850px) {
    .content {
        gap: 10px 0;
    }

    .content:has(> :nth-child(3)) {
        justify-content: space-between;
    }

    .card {
        width: calc(33.33% - (6.67px * var(--ui-scale)));
    }
}

@media (min-width: 850px) and (max-width: 1100px) {
    .content {
        gap: 10px 0;
    }

    .content:has(> :nth-child(4)) {
        justify-content: space-between;
    }

    .card {
        width: calc(25% - (7.5px * var(--ui-scale)));
    }
}

@media (min-width: 2000px) and (max-width: 3000px) {}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.3s ease;
}



.site-header {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 0;
}

.site-header>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(14px * var(--ui-scale));
    background-color: #f4f4f4;
    border-bottom: 1px solid #d9d9d9;
    transition: padding 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.header-large>div {
    padding: calc(18px * var(--ui-scale)) calc(18px * var(--ui-scale));
    background: #f4f4f4cc;
}

.header-small>div {
    padding: calc(8px * var(--ui-scale)) calc(14px * var(--ui-scale));
    background: #f4f4f4cc;
    backdrop-filter: blur(8px);
    box-shadow: 0 calc(6px * var(--ui-scale)) calc(18px * var(--ui-scale)) rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    min-width: 0;
}

.site-logo {
    height: calc(50px * var(--ui-scale));
    width: calc(50px * var(--ui-scale));
    flex: 0 0 auto;
    display: block;
    transition: height 250ms ease, width 250ms ease;
}

.header-small .site-logo {
    height: calc(30px * var(--ui-scale));
    width: calc(30px * var(--ui-scale));
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.brand-title {
    font-size: calc(26px * var(--ui-scale));
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: font-size 250ms ease;
}

.brand-subtitle {
    font-size: calc(14px * var(--ui-scale));
    color: #676767;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 200ms ease, transform 250ms ease;
}

.header-small .brand-title {
    font-size: calc(18px * var(--ui-scale));
}

.header-small .brand-subtitle {
    opacity: 0;
    transform: translateY(calc(-6px * var(--ui-scale)));
    height: 0;
    overflow: hidden;
}


.header-actions {
    position: relative;
    flex: 0 0 auto;
}

.header-menu-btn {
    border: 0;
    background: #dddddd;
    padding: calc(12px * var(--ui-scale)) calc(14px * var(--ui-scale));
    border-radius: calc(14px * var(--ui-scale));
    cursor: pointer;

    font-size: calc(14px * var(--ui-scale));
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: calc(8px * var(--ui-scale));
}

.header-small .header-menu-btn {
    padding: calc(10px * var(--ui-scale)) calc(12px * var(--ui-scale));
    border-radius: calc(12px * var(--ui-scale));
}

@media (hover: hover) {
    .header-menu-btn:hover {
        filter: brightness(0.97);
    }
}

.chev {
    display: inline-block;
    transition: transform 200ms ease;
    transform: rotate(-90deg)
}

.open.chev {
    transform: rotate(0deg)
}

.info-menu {
    position: absolute;
    right: 0;
    top: calc(100% + (10px * var(--ui-scale)));

    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    box-shadow: 0 18px 40px #0000001f;

    overflow: hidden;
    min-width: 180px;

    display: none;
}

.info-menu.open {
    display: block;
    animation: menuPop 140ms ease;
}

@keyframes menuPop {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-item {
    width: 100%;
    text-align: left;
    padding: calc(12px * var(--ui-scale)) calc(14px * var(--ui-scale));
    border: 0;
    background-color: #ffffff;
    cursor: pointer;
    font-size: calc(14px * var(--ui-scale));
    font-weight: 600;
}

.menu-item:hover {
    background: #f4f4f4;
}

.categories {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: calc(5px * var(--ui-scale));
    scroll-margin-top: calc(150px * var(--ui-scale));
}

.categories button {
    padding: calc(5px * var(--ui-scale));
    white-space: nowrap;
    border: calc(2px * var(--ui-scale)) solid #f4f4f4;
    background-color: #f4f4f4;
    font-size: calc(16px * var(--ui-scale));
    border-radius: calc(10px * var(--ui-scale));
    cursor: pointer;
    transition: 0.2s ease;
}

.categories button.active {
    border: calc(2px * var(--ui-scale)) solid #00000040;
}

.filter-btn svg {
    height: calc(20px * var(--ui-scale));
    aspect-ratio: 1 / 1;
}


@media (max-width: 600px) {
    .header-large>div {
        padding: calc(14px * var(--ui-scale)) calc(12px * var(--ui-scale));
    }

    .site-logo {
        height: calc(40px * var(--ui-scale));
        width: calc(40px * var(--ui-scale));
    }

    .brand-title {
        font-size: calc(20px * var(--ui-scale));
    }

    .brand-subtitle {
        font-size: calc(12px * var(--ui-scale));
    }
}

:root {
    --ui-scale: 1;
}

@media (min-width: 2000px) and (max-width: 2499px) {
    :root {
        --ui-scale: 1.2;
    }
}

@media (min-width: 2500px) and (max-width: 3799px) {
    :root {
        --ui-scale: 1.6;
    }
}

@media (min-width: 3800px) {
    :root {
        --ui-scale: 2.5;
    }
}
