body {
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
}

a {
    text-decoration: none;
}

.product-modal {
    border: none;
    border-radius: 0;
    padding: 20px;
    background: #f7f4ef;
    position: relative;
}

.product-modal-image {
    background: #e9d9bb;
    padding: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    /* max-width: 40/0px; */
    object-fit: contain;
}

.product-modal-image img {
    width: 100%;
    max-width: 550px;
    object-fit: contain;
}

.product-modal-body {
    padding: 40px;
}

.product-modal-body h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.product-price {
    font-size: 42px;
    margin-bottom: 25px;
}

.btn-add-cart {
    padding: 14px 30px;
    border: 1px solid #000;
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
    margin-bottom: 40px;
}

.btn-add-cart:hover {
    background: #000;
    color: #fff;
}

.product-description {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.product-weight {
    font-size: 22px;
    font-weight: 500;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
}

.top-switch {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 600;
    color: #191919;

    padding: 8px 12px;
    border-radius: 10px;

    transition: 0.3s;
}

.top-switch:hover {
    background: rgba(0, 0, 0, 0.05);
}

.top-switch img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.custom-dropdown {
    border: none;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 8px;
    padding: 10px 12px;

    font-weight: 500;
}

.custom-dropdown .dropdown-item img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* ========= HELPERS ========= */

.w100 {
    width: 100%;
}

.relative {
    position: relative;
}

/* ========= LAYOUT ========= */

.background-grey {
    margin-top: 32px;
    padding: 16px 28px 440px;
    background: #f3eee2;
    border-radius: 16px;
}

/* ========= NAVIGATION ========= */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 22px;
    font-family: "Boldonse", system-ui;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 0;
}

/* ========= BANNER ========= */

.banner {
    width: 100%;
    padding: 28px;
    border-radius: 16px;
    background: #eeebe27f;
}

/* TITLE */
.banner .title {
    font-size: clamp(32px, 6vw, 46px);
    font-weight: 700;
    color: #191919;
    letter-spacing: .7px;
    text-transform: uppercase;
    line-height: 1;
}

/* SUBTITLE */
.banner .undertitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    color: #191919;
    text-transform: uppercase;
    margin-top: 10px;
}

/* GRAPHIC */
.banner .graphic {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.banner .graphic .item {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    color: #fbc607;
}

/* MENU */
.banner .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.banner .menu .item,
a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 8px;
    border: 1px solid #191919;

    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;

    color: #191919;
    text-decoration: none;

    transition: .2s ease;
}

.banner .menu .item:hover {
    background: #191919;
    color: white;
}

.banner .menu .item.active,
a.button.active {
    background: #fbc607;
    border-color: #fbc607;
}

.waiter-modal {
    background: #191919;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: white;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.waiter-modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.waiter-modal .cart-label {
    color: #d0d0d0;
    font-weight: 600;
    margin-bottom: 10px;
}

.waiter-modal .cart-input {
    background: #2a2a2a;
    border: 1px solid #333;
    color: white;
    border-radius: 12px;
    padding: 14px 16px;
}

.waiter-modal .cart-input:focus {
    background: #2a2a2a;
    color: white;
    border-color: #fbc607;
    box-shadow: 0 0 0 0.2rem rgba(251, 198, 7, .2);
}

.waiter-modal .cart-input::placeholder {
    color: #888;
}

.waiter-submit {
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: 12px;
}

/* WAITER BUTTON */
.waiter-btn {
    margin-left: auto;
}

/* MOBILE */
@media (max-width: 992px) {
    .waiter-btn {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 20px;
    }

    .banner .menu .item {
        width: 100%;
    }

    .banner .graphic {
        flex-direction: column;
        gap: 6px;
    }
}

/* ========= TITLES ========= */

.title-row {
    padding: 16px 28px;
    font-size: 28px;
    font-weight: 700;
    border-radius: 16px;
    background: #eeebe27f;
    text-transform: uppercase;
}

/* ========= SHOP ITEM ========= */

.shop-item {
    margin-top: 16px;
}

.shop-item .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.product-actions {
    margin-top: auto;
}

.shop-item .body {
    display: flex;
    flex-direction: column;
    padding: 16px 28px 24px;
    background: #eeebe27f;
    border-radius: 0 0 16px 16px;
    min-height: 240px;
}

.shop-item .body .title {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    text-transform: uppercase;
}

.shop-item .body .price {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
}

/* ========= BUTTONS ========= */

a.button {
    padding: 8px 16px;
    font-size: 14px;
}

.black-button {
    width: 240px;
    padding: 12px 0 !important;
    background: #191919;
    border-color: #191919;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.yellow-button {
    padding: 10px 0;
    background: #fbc607;
    border-color: #fbc607;
    color: #191919;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 12px;
    height: 36px;
    text-transform: uppercase;
    margin-right: 12px;
}

.yellow-button-outline {
    padding: 10px 0;
    color: #fbc607;
    border: 1px solid #fbc607;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 12px;
    height: 36px;
    text-transform: uppercase;
    margin-right: 12px;
}

.background-grey {
    margin-top: 32px;
    padding: 24px;
    background: #f3eee2;
    border-radius: 20px;
}

/* TOP SEGMENT */
.first-segment {
    padding: 32px;
    background: #fbc607;
    border-radius: 20px 20px 0 0;
}

.first-segment .title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #191919;
}

.row-information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.undertitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #191919;
}

.undertitle span {
    display: block;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.icon img {
    width: 50px;
    height: 50px;
}

/* BOTTOM SEGMENT */
.second-segment {
    padding: 48px 32px 32px;
    background: #191919;
    border-radius: 0 0 20px 20px;
}

.item-big {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.item-big a,
.item-small a {
    color: #fff;
    text-decoration: none;
}

.item-small {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
}

.item-mutted {
    font-size: 13px;
    line-height: 1.6;
    color: #bbbbbb;
}


.floating-cart {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 72px;
    height: 72px;

    border-radius: 50%;
    border: 2px solid white;

    background: #191919;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    z-index: 1050;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;

    width: 26px;
    height: 26px;

    border-radius: 50%;
    background: #fbc607;

    color: #191919;
    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal {
    background: #191919;
    color: white;
    border-radius: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-info {
    flex: 1;
}

.cart-name {
    font-weight: 700;
    font-size: 18px;
}

.cart-price {
    color: #fbc607;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 34px;
    height: 34px;

    border: none;
    border-radius: 8px;

    background: #2a2a2a;
    color: white;

    font-size: 20px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .2s ease;
}

.qty-btn:hover {
    background: #fbc607;
    color: #191919;
}

.cart-qty {
    min-width: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.remove-btn {
    width: 34px;
    height: 34px;

    border: none;
    border-radius: 8px;

    background: #3a1f1f;
    color: #ff6b6b;

    font-size: 16px;
    font-weight: 700;

    margin-left: 8px;

    transition: .2s ease;
}

.remove-btn:hover {
    background: #ff4d4d;
    color: white;
}