:root {
    --sg-red: #e4002b;
    --sg-dark: #111111;
    --sg-white: #ffffff;
    --sg-grey-light: #f8f8f8;
    --sg-grey-border: #e0e0e0;
}

.sg-bucket-page {
    background-color: var(--sg-white);
    color: var(--sg-dark);
    /* padding-bottom: 80px; */
}

.sg-stripes-header {
    background-color: var(--sg-white);
    padding: 20px;
    border-bottom: 1px solid var(--sg-grey-border);
}

.sg-stripes-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-stripes-header__brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sg-stripes-header__logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.sg-stripes-header__meta {
    display: flex;
    flex-direction: column;
}

.sg-stripes-header__sub {
    color: var(--sg-red);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
}

.sg-stripes-header__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: var(--sg-dark);
}

.sg-stripes-pattern {
    display: flex;
    gap: 6px;
}

.sg-stripe {
    width: 6px;
    height: 40px;
    background-color: var(--sg-red);
    display: block;
}

.sg-crispy-hero {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.sg-crispy-hero__grid {
    background-color: var(--sg-grey-light);
    border-radius: 0px;
    border: 1px solid var(--sg-grey-border);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    overflow: hidden;
}

.sg-crispy-hero__info {
    padding: 60px;
}

.sg-crispy-hero__tag {
    color: var(--sg-red);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sg-crispy-hero__main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--sg-dark);
}

.sg-crispy-hero__sub-title {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sg-crispy-hero__badges {
    display: flex;
    gap: 15px;
}

.sg-crispy-hero__badge-item {
    background-color: var(--sg-white);
    color: var(--sg-dark);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--sg-dark);
}

.sg-crispy-hero__badge-item i {
    color: var(--sg-red);
    margin-right: 4px;
}

.sg-crispy-hero__media {
    height: 100%;
    min-height: 400px;
}

.sg-crispy-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-menu-heading-area {
    text-align: center;
    margin: 50px 0 30px;
}

.sg-menu-heading-area__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sg-dark);
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.sg-menu-heading-area__bar {
    width: 80px;
    height: 5px;
    background-color: var(--sg-red);
    margin: 0 auto;
}

.sg-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sg-filter-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--sg-dark);
    padding-bottom: 0px;
    margin-bottom: 40px;
}

.sg-filter-navigation__dropdown-wrapper {
    display: none;
    width: 100%;
}

.sg-filter-navigation__select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    color: var(--sg-dark);
    background-color: var(--sg-white);
    border: 2px solid var(--sg-red);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e4002b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.sg-filter-navigation__scroll {
    overflow-x: auto;
}

.sg-filter-navigation__list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.sg-filter-navigation__item {
    flex-shrink: 0;
}

.sg-filter-navigation__link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sg-filter-navigation__link:hover {
    color: var(--sg-red);
}

.sg-filter-navigation__link--active {
    background-color: #fcfcfc;
    color: var(--sg-red) !important;
    border-bottom: 4px solid var(--sg-red) !important;
}

.sg-menu-counter__text {
    font-size: 1rem;
    color: #666666;
}

.sg-menu-counter__text strong {
    color: var(--sg-red);
    font-size: 1.2rem;
}

.sg-food-cards-layout {
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .sg-crispy-hero__grid {
        grid-template-columns: 1fr;
    }
    .sg-crispy-hero__media {
        min-height: 300px;
        order: -1;
    }
    .sg-crispy-hero__info {
        padding: 30px;
    }
    .sg-crispy-hero__main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .sg-filter-navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .sg-filter-navigation__scroll {
        width: 100%;
    }
    .sg-menu-counter {
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sg-stripes-header {
        padding: 15px;
    }

    .sg-stripes-header__inner {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .sg-stripes-header__brand {
        flex-direction: column;
        gap: 8px;
    }

    .sg-stripes-header__logo {
        width: 60px;
        height: 60px;
    }

    .sg-stripes-header__sub {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .sg-stripes-header__title {
        font-size: 1.5rem;
    }

    .sg-stripes-pattern {
        display: none;
    }

    .sg-filter-navigation {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        border-bottom: none;
        margin-bottom: 25px;
    }

    .sg-filter-navigation__scroll {
        display: none;
    }

    .sg-filter-navigation__dropdown-wrapper {
        display: block;
    }

    .sg-menu-counter {
        padding-bottom: 0px;
        text-align: center;
        width: 100%;
    }

    .sg-menu-counter__text {
        font-size: 13px;
    }

    .sg-menu-counter__text strong {
        font-size: 14px;
    }
}