/* font-family: 'Nanum Gothic', sans-serif; */
html {
    scroll-behavior: smooth;
    font-size: 14px;
}
body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}

#desktop-nav {
    white-space: nowrap;
    top: 65px;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #f1f5f9;
}
#menu-list::-webkit-scrollbar {
    display: none;
}

/* Track */
#menu-list::-webkit-scrollbar-track {
    display: none;
}

/* Handle */
#menu-list::-webkit-scrollbar-thumb {
    display: none;
}

/* Handle on hover */
#menu-list::-webkit-scrollbar-thumb:hover {
    display: none;
}
.nav-item {
    margin-right: 5px;
}
.nav-item:hover {
    background-color: #f5f5f5;
    border-radius: 8px;
}
.nav-item.active {
    background-color: #fff;
    border-radius: 8px;
}
.nav-item.active a {
    color: #131313;
}

.increase-decrease input {
    width: 20px;
    text-align: center;
}
.increase-decrease input::-webkit-outer-spin-button,
.increase-decrease input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.button-color {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
}
/* Firefox */
.increase-decrease input[type="number"] {
    -moz-appearance: textfield;
}
button:focus {
    outline: none;
}
.cart-items-wrapper {
    max-height: 200px;
    padding: 8px 2px;
    overflow-y: auto;
}
#variant-modal {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    overflow-y: auto;
}
.modal-here {
    background-color: #fff;
    max-width: 1100px;
    width: 1100px;
    height: auto;
    display: flex;
    border-radius: 16px;
}
#variant-modal .content-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%;
}
.variant-label {
    border: 1px solid #131313;
}
.variant-label.selected {
    background-color: #131313;
    color: #fefefe;
}
.variant-label:hover {
    cursor: pointer;
}
#close-variant {
    background-color: #131313;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    top: -10px;
    right: -10px;
    color: #fefefe;
}
#close-variant:hover {
    cursor: pointer;
}
.item-card .card-info {
    padding-top: 10px;
    padding: 12px 15px 12px 15px;
    width: 100%;
    text-align: start;
}
.item-name .remove-item {
    margin-left: 4px;
    font-size: 8px;
    background-color: #cb5933;
    border-radius: 50%;
    color: #fff;
    padding: 2px 3px;
}
.item-card .product-title {
    font-size: 16px;
    font-weight: 600;
}
.item-card .action-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.item-card .action-box .product-price {
    line-height: 1.25;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}
.item-card .action-box a {
    margin-bottom: 0;
    border-radius: 6px;
}
.item-card .action-box .product-price del {
    font-size: 13px;
    display: block;
}
#place-order {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.place-order-wrapper {
    background-color: #fefefe;
    width: 450px;
    border-radius: 12px;
}
.cart-items-wrapper::-webkit-scrollbar {
    width: 4px;
}
.hidden-details {
    display: none;
}
.del-icon {
    font-size: 48px;
}
#place-order {
    display: none;
    transition: all 0.4s ease-in-out;
}
#place-order.flex-show {
    display: flex;
}
#be-delivery,
#be-pickup {
    width: 49%;
    border: 2px solid #000;
    padding: 4px 0;
    opacity: 0.4;
    border-radius: 12px;
}
#be-delivery:hover,
#be-pickup:hover {
    cursor: pointer;
}
#be-delivery.active,
#be-pickup.active {
    opacity: 0.9;
}
#pickup-form {
    display: none;
}
.offer-codes {
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.offer-codes.show {
    transform: translateX(0);
}
.head-banner {
    height: 60vh;
}
.head-banner img {
    object-fit: cover;
    object-position: center;
}
#fixed-social {
    position: fixed;
    bottom: 130px;
    z-index: 999999;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
}
#fixed-social a:hover > span {
    visibility: visible;
    left: 41px;
    opacity: 1;
}
#fixed-social a span {
    line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 200px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}
.fixed-call {
    background-color: #131313;
}
.fixed-email {
    background-color: #665cac;
}
.fixed-whatsapp {
    background: #25d366;
}
.fixed-call span {
    background-color: #131313;
}
.fixed-email span {
    background-color: #665cac;
}
.fixed-whatsapp span {
    background: #25d366;
}
.main-logo {
    height: 45px;
}
del {
    display: inline-block;
    margin-right: 5px;
    opacity: 0.7;
}
.modal-image {
    width: 50%;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    overflow: hidden;
}
.modal-image img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.modal-body {
    width: 50%;
}
.cart-wrapper {
    border-radius: 12px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col--wide {
    grid-column: span 2;
}

/* Optional styling helpers */
.main-footer {
    padding: 3rem 2rem;
    background-color: #111;
}

.footer-col p {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}
.main-footer .footer-contact {
    justify-content: flex-start;
}
/* Responsive behavior */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col--wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col--wide {
        grid-column: span 1;
    }
}

@media only screen and (max-width: 1300px) {
    .cart-items-wrapper {
        max-height: 100px;
        padding: 4px 2px;
        overflow-y: auto;
    }
}
@media only screen and (max-width: 1024px) {
    /* .menu-right:before{
    
  } */
    #shopping-cart {
        display: none;
    }
    #shopping-cart.show {
        display: block;
    }
    .cart-wrapper {
        opacity: 0;
        visibility: hidden;
    }
    .cart-wrapper.show {
        opacity: 1;
        visibility: visible;
        background-color: #fff;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        z-index: 999;
    }
    body.show-mobile-cart:before {
        content: "";
        z-index: 99;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        opacity: 0.6;
    }
    #desktop-nav {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90% !important;
        text-align: center;
        display: none;
        z-index: 999;
    }
    #desktop-nav .arrow {
        display: none !important;
    }
    #menu-list {
        overflow-x: visible;
    }
    #menu-list li {
        display: block;
    }
    #desktop-nav.show {
        display: block;
    }
    .cart-wrapper.mobile-hide {
        display: none;
    }
}
.mobile-only {
    display: none;
}
.item-card {
    position: relative;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
        rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.item-card .full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.item-card .img-holder {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.title-header p {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
}
#navbar {
    background-color: #131313;
    color: #fff;
}
.menu-right a {
    border-color: #3a3a3a;
}
#search-form {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 75%;
    background-color: #f5f5f5;
    background-color: #000;
}
#search-form .search-box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem; /* space between columns */
    align-items: center;
}

/* Input spans 8 columns */
#search-form .search-input {
    grid-column: span 9;
    width: 100%;
    padding: 0.5rem;
    color: #000;
    padding: 8px 15px;
}

/* Search button spans 3 columns */
#search-form .search-btn {
    grid-column: span 2;
    white-space: nowrap;
}

/* Close button spans 1 column */
#search-form .close-btn {
    grid-column: span 1;
    padding-left: 0;
    padding-right: 0;
}
@media (max-width: 640px) {
    #search-form {
        width: 100%;
        background-color: #f5f5f5;
        background-color: #000;
    }
}
#search-form {
    display: none;
}

#search-form.is-open {
    display: block;
}
#main-banner .swiper-button-next,
#main-banner .swiper-button-prev,
.product-banner-slider .swiper-button-next,
.product-banner-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    background-color: #131313;
    padding: 10px;
}
#main-banner .swiper-button-next:after,
#main-banner .swiper-button-prev:after,
.product-banner-slider .swiper-button-next:after,
.product-banner-slider .swiper-button-prev:after {
    font-size: 20px;
}
@media only screen and (max-width: 600px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .modal-image {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #variant-modal .content-wrapper {
        padding: 30px 15px;
    }
    #close-variant {
        background-color: #131313;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        top: 10px;
        right: 10px;
        color: #fefefe;
    }
    .modal-here,
    .place-order-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: scroll;
        margin-bottom: 20px;
    }
    .cart-items .increase-decrease {
        width: 60px;
    }
    .order-detail-form input,
    .order-detail-form textarea {
        padding-left: 25px;
    }
    .modal-image,
    .modal-body {
        width: 100%;
    }
    .button-color {
        padding: 6px 12px;
        font-size: 13px;
    }
    .card-info .text-lg {
        font-size: 13px;
        line-height: 17px;
    }
    .item-card .card-info {
        padding: 10px 5px 10px 5px;
    }
    .card-info .text-base {
        font-size: 12px;
        margin: 10px 0;
        font-weight: 600;
        line-height: 15px;
    }
    .head-banner {
        height: 225px;
    }

    #mobile-cart-button p {
        margin-left: 45px;
    }
    #fixed-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-bottom: -1px;
    }
    #fixed-social a span {
        line-height: 35px;
    }
    .main-logo {
        height: 32px;
    }
    #cart-message {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    .item-card .action-box {
        display: block;
    }
    .item-card .action-box .product-price {
        margin-bottom: 10px;
    }
    .item-card .action-box .product-price del {
        display: inline-block;
    }
    .menu-right {
        background-color: #fff;
        color: #000;
        border-radius: 12px;
    }
    .modal-here {
        display: block;
    }
}
