.search-bar {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border-radius: 4px;
    background-color: #1c1c1e;
}
.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
}
.search-bar input::placeholder {
    color: #8e8e93;
}
.menu-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}
.menu-bar a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
}
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.carousel-item img {
    width: 100%;
    display: block;
}
.carousel-item .new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fd0252;
    color: #fff;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}
.carousel-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-size: 12px;
}
.section-title {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px;
}
.grid-item {
    width: 33.3333%;
    padding: 5px;
    box-sizing: border-box;
}
.grid-item img {
    width: 100%;
    border-radius: 6px;
    min-height:11.375rem;
}
.grid-item .category-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 12px;
}
.grid-item .title {
    font-size: 14px;
    margin-top: 5px;
    color: #fff;
    text-align: center;
}
.grid-item .stars {
    text-align: center;
    margin-top: 2px;
    color: #ffd700;
}
.featured-masonry {
    column-count: 2;
    column-gap: 10px;
    padding: 0 10px;
}
.featured-item {
    break-inside: avoid;
    margin-bottom: 10px;
}
.featured-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
}
.featured-item .category-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 12px;
}
.tab-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background-color: #1c1c1e;
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
}
.tab-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8e8e93;
    text-decoration: none;
    font-size: 12px;
    flex: 1;
}
.tab-bar a.active {
    color: #fd0252;
}
.tab-bar svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}
.content {
    padding-bottom: 60px;
}


