/* =============================================================
   Ready Kitchen — Styles
   ============================================================= */

/* ---- Stories Bar ---- */
.stories-bar {
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
}

.stories-bar__list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
}

.stories-bar__list::-webkit-scrollbar {
    display: none;
}

.stories-bar__item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    scroll-snap-align: start;
    transition: transform var(--transition-fast);
}

.stories-bar__item:hover {
    transform: scale(1.05);
}

.stories-bar__ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-bar__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--color-bg-white);
}

.stories-bar__label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

/* ---- Story Viewer (Fullscreen) ---- */
.story-viewer {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.story-viewer.active {
    display: flex;
}

.story-viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    animation: storyFadeIn 0.25s ease;
}

.story-viewer__container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.story-viewer__card {
    position: relative;
    width: 375px;
    height: 667px;
    max-width: 95vw;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
}

.story-viewer__progress {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.story-viewer__progress-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.story-viewer__progress-fill {
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 2px;
    transition: none;
}

.story-viewer__progress-fill.complete {
    width: 100%;
}

.story-viewer__progress-fill.animating {
    transition: width linear;
}

.story-viewer__close {
    position: absolute;
    top: 24px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.story-viewer__close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.story-viewer__media {
    position: absolute;
    inset: 0;
}

.story-viewer__media img,
.story-viewer__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-viewer__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 5;
}

.story-viewer__title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-bottom: 6px;
}

.story-viewer__desc {
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: var(--line-height-normal);
}

.story-viewer__cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-primary);
    color: #fff;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.story-viewer__cta:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.story-viewer__touch-zones {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 4;
}

.story-viewer__touch-prev,
.story-viewer__touch-next {
    flex: 1;
    cursor: pointer;
}

.story-viewer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.story-viewer__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes storyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---- Banners in Ready Kitchen ---- */
.rk-banners {
    margin-bottom: var(--spacing-xl);
}

/* ---- Bento Category Grid (2x2, col-7/col-5 zigzag) ---- */
.bento-section {
    margin-bottom: var(--spacing-2xl);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 200px 200px;
    gap: 12px;
}

.bento-card--pos0 { grid-column: span 7; }
.bento-card--pos1 { grid-column: span 5; }
.bento-card--pos2 { grid-column: span 5; }
.bento-card--pos3 { grid-column: span 7; }

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card-hover);
    color: #fff;
}

.bento-card__bg {
    position: absolute;
    inset: 0;
    background: var(--bento-bg) center / cover no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-card__bg {
    transform: scale(1.08);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.bento-card__name {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ---- Category Tabs: cards (inline) ---- */
.category-tabs {
    background: var(--color-bg-white);
    padding: 16px 0;
    margin-bottom: var(--spacing-xl);
}

.category-tabs__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 4px;
}

.category-tabs__list::-webkit-scrollbar {
    display: none;
}

.category-tabs__card {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    scroll-snap-align: start;
    transition: transform var(--transition-fast);
    font-family: var(--font-family-primary);
}

.category-tabs__card:hover {
    transform: translateY(-2px);
}

.category-tabs__img {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border-light);
    background: var(--color-bg-secondary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.category-tabs__card:hover .category-tabs__img {
    border-color: var(--color-primary-light);
}

.category-tabs__card.active .category-tabs__img {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary-lighter);
}

.category-tabs__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tabs__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    font-size: var(--font-size-body-sm);
    font-weight: var(--font-weight-semibold);
    color: #fff;
    text-align: center;
    line-height: var(--line-height-tight);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px);
}

/* Hidden in inline mode */
.category-tabs__label {
    display: none;
}

/* ---- Sticky Chips Bar (fixed under header) ---- */
.category-chips {
    position: fixed;
    top: calc(var(--header-height) + var(--promo-bar-height));
    left: 0;
    right: 0;
    z-index: calc(var(--z-sticky) + 1);
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.category-chips.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.category-chips__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--content-padding) 0 calc(var(--sidebar-width) - 140px);
}

.category-chips__inner::-webkit-scrollbar {
    display: none;
}

.category-chips__stories {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    padding-right: 8px;
    border-right: 1px solid var(--color-border-light);
    margin-right: 8px;
}

.category-chips__story {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.category-chips__story:hover {
    transform: scale(1.1);
}

.category-chips__story img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #fff;
}

.category-chips__list {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.category-chips__list::-webkit-scrollbar {
    display: none;
}

.category-chips__pill {
    flex: 0 0 auto;
    padding: 8px 18px;
    background: var(--color-bg-white);
    color: var(--color-text-primary);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-family-primary);
    transition: all var(--transition-fast);
}

.category-chips__pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-chips__pill.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* ---- Combo Carousel ---- */
.combo-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.combo-carousel::-webkit-scrollbar {
    display: none;
}

.combo-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
    scroll-snap-align: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    aspect-ratio: 1.1;
}

.combo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.combo-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.combo-card:hover .combo-card__bg {
    transform: scale(1.08);
}

.combo-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.combo-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent-red);
    color: #fff;
    font-size: var(--font-size-body-sm);
    font-weight: var(--font-weight-bold);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.combo-card__name {
    font-size: var(--font-size-label-lg);
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.combo-card__desc {
    font-size: var(--font-size-body-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.combo-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.combo-card__price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.combo-card__price {
    font-size: var(--font-size-label);
    font-weight: var(--font-weight-bold);
    color: #fff;
}

.combo-card__old-price {
    font-size: var(--font-size-body-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.combo-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.combo-card:hover .combo-card__arrow {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* ---- Combo Modal ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    width: 660px;
    max-width: 95vw;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s;
    box-shadow: var(--shadow-modal);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #666;
    z-index: 10;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: #fff;
    color: #333;
}

.combo-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.combo-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.combo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 32px;
}

.combo-hero__title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-bottom: 4px;
}

.combo-hero__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.combo-hero__tag {
    font-size: var(--font-size-body-sm);
    font-weight: var(--font-weight-semibold);
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
}

.combo-modal-body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.combo-modal-body::-webkit-scrollbar {
    width: 5px;
}

.combo-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Combo product items in modal */
.combo-products-list {
    padding: 16px 32px;
}

.combo-products-list__title {
    font-size: var(--font-size-label);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.combo-products-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.combo-products-grid::-webkit-scrollbar {
    display: none;
}

.combo-product-item {
    flex: 0 0 130px;
    min-width: 130px;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    background: #fff;
}

.combo-product-item:hover {
    border-color: #ddd;
    background: var(--color-bg-secondary);
}

.combo-product-item.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-lighter);
}

.combo-product-item__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 6px;
    background: var(--color-bg-secondary);
}

.combo-product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-product-item__name {
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-tight);
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 28px;
}

.combo-product-item__price {
    font-size: var(--font-size-body-sm);
    font-weight: var(--font-weight-bold);
}

.combo-product-item__check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 4px auto 0;
}

.combo-product-item.selected .combo-product-item__check {
    display: flex;
}

/* Combo modal footer */
.combo-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-top: 1px solid var(--color-border-light);
    background: #fff;
    flex-shrink: 0;
}

.combo-footer-total__label {
    font-size: var(--font-size-body-sm);
    color: var(--color-text-muted);
}

.combo-footer-total__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.combo-footer-total__price {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
}

.combo-footer-total__old {
    font-size: var(--font-size-body-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.combo-footer-btn {
    background: var(--color-primary);
    color: #fff;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    font-family: var(--font-family-primary);
}

.combo-footer-btn:hover {
    background: var(--color-primary-dark);
}

.combo-footer-btn:disabled {
    background: var(--color-bg-tertiary);
    color: var(--color-text-muted);
    cursor: not-allowed;
}

/* Combo success overlay */
.combo-success {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    z-index: 20;
    padding: 40px;
}

.combo-success.show {
    display: flex;
    animation: comboPopIn 0.3s ease;
}

.combo-success__icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.combo-success__title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
}

.combo-success__text {
    font-size: var(--font-size-body);
    color: var(--color-text-secondary);
}

@keyframes comboPopIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-rows: 170px 170px;
    }
}

@media (max-width: 768px) {
    .stories-bar__ring {
        width: 100px;
        height: 100px;
    }

    .stories-bar__label {
        max-width: 100px;
        font-size: var(--font-size-body-sm);
    }

    .stories-bar__list {
        gap: 12px;
    }

    .story-viewer__card {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }

    .story-viewer__nav {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 140px 140px;
        gap: 8px;
    }

    .bento-card--pos0,
    .bento-card--pos1,
    .bento-card--pos2,
    .bento-card--pos3 {
        grid-column: span 1;
    }

    .bento-card__name {
        font-size: var(--font-size-label);
    }

    .category-tabs {
        padding: 10px 0;
        top: 60px;
    }

    .category-tabs__list {
        gap: 10px;
    }

    .category-tabs__card {
        width: 110px;
        gap: 0;
    }

    .category-tabs__img {
        width: 110px;
        height: 110px;
    }

    .category-tabs__overlay {
        font-size: var(--font-size-caption);
        padding: 20px 8px 8px;
    }

    .category-chips {
        top: calc(60px + var(--promo-bar-height));
    }

    .category-chips__inner {
        padding: 0 16px;
    }

    .category-chips__story {
        width: 32px;
        height: 32px;
    }

    .category-chips__pill {
        font-size: var(--font-size-body-sm);
        padding: 6px 14px;
    }

    .combo-card {
        flex: 0 0 80%;
        min-width: 260px;
        aspect-ratio: 1.05;
    }

    .modal-container {
        max-width: 100vw;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto;
    }

    .modal-overlay {
        align-items: flex-end;
    }

    .combo-hero {
        height: 160px;
    }

    .combo-hero__overlay {
        padding: 16px 20px;
    }

    .combo-products-list {
        padding: 12px 20px;
    }

    .combo-modal-footer {
        padding: 14px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .combo-footer-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-rows: 120px 120px;
    }
}
