.categories-layout-web {
    display: none !important;
}
:root {
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --status-bar-height: 24px;
}
.categories-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    height: 32px;
}
.edit-categories-btn {
    background: none;
    border: none;
    color: #ff3f6c;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.category-card.draggable {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: element;
}

.category-card.draggable:active {
    cursor: grabbing;
}

.category-card.dragging {
    opacity: 0.6;
    transform: scale(0.98);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.edit-categories-btn svg {
    width: 16px;
    height: 16px;
    stroke: #ff3f6c;
}

.edit-categories-btn.done {
    color: #28a745;
}

.edit-categories-btn.done svg {
    stroke: #28a745;
}

.category-card.draggable {
    position: relative;
}

.category-card.draggable::after {
    content: '⋮⋮';
    position: absolute;
    top: 8px;
    right: 8px;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.5;
}

.category-card.draggable:hover::after {
    opacity: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding-top: max(12px, var(--safe-area-inset-top));
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    min-height: 56px;
}

.logo-search-container {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
    background: #f5f5f6;
    border-radius: 30px;
    padding: 4px 4px 4px 10px;
    border: 1px solid #e0e0e0;
    min-width: 0;
}

.header-logo {
    flex-shrink: 0;
    margin-right: 2px;
}

.site-logo {
    height: 30px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.search-wrapper input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 13px;
    padding: 6px 0;
    min-width: 0;
    width: 100%;
}

.search-wrapper input::placeholder {
    color: #999;
}

.search-icon {
    color: #666;
    font-size: 16px;
    padding: 6px 8px;
    border-left: 1px solid #e0e0e0;
    cursor: pointer;
    flex-shrink: 0;
}

.header-icons {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    color: #333;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn-header {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.back-btn-header:hover {
    background: #f5f5f5;
}

.page-content {
    padding-bottom: calc(65px + var(--safe-area-inset-bottom) + 16px);
    min-height: 100vh;
}

.all-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
}

.category-card {
    border-radius: 18px;
    padding: 14px;
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.category-card:active {
    transform: scale(0.98);
}

/* .category-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
} */

.category-info {
    padding: 0;
    text-align: left;
    border: none;
}

.category-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(65px + var(--safe-area-inset-bottom));
    background: white;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    z-index: 1000;
    padding-bottom: var(--safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

.nav-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    flex: 1;
    min-height: 48px;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-item-figma.active {
    color: #ff3f6c;
}

.nav-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-box svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-item-figma.active svg {
    stroke: #ff3f6c;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.popup-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.popup-body {
    padding: 16px;
    overflow-y: auto;
    max-height: 60vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.subcategory-card {
    cursor: pointer;
    text-align: center;
}

.subcategory-card:active {
    opacity: 0.7;
}

.subcategory-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.subcategory-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.popup-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 15px;
}

.popup-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.popup-item:active {
    background: #f8f8f8;
}

.popup-item-image {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.popup-item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.popup-item-arrow {
    color: #ff3f6c;
    font-size: 18px;
    font-weight: 500;
}

.subcategory-container {
    padding: 16px;
}

.subcategory-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.back-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.back-button:active {
    background: #e8e8e8;
}

.subcategory-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.subcategory-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.subcategory-card:active {
    transform: scale(0.98);
}

.subcategory-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.subcategory-info {
    padding: 14px 12px 16px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.subcategory-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
}

.subcategory-info p {
    font-size: 12px;
    color: #ff3f6c;
    font-weight: 500;
    margin: 0;
}

.loading, .no-subcategories {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
}

.site-footer {
    background: #f8f8f8;
    padding: 40px 0 80px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .site-footer {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}


@media (max-width: 480px) {
    .nav-icon-box {
        width: 22px;
        height: 22px;
    }
    
    .nav-item-figma span {
        font-size: 10px;
    }
    
    .site-logo {
        height: 25px;
        max-width: 70px;
    }
    
    .search-wrapper input {
        font-size: 12px;
    }
    
    .search-icon {
        font-size: 14px;
        padding: 4px 6px;
    }
    
    .header-icon-btn {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
    
    .back-btn-header {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    .header-logo {
        display: none;
    }
}

@media (min-width: 390px) and (max-width: 428px) {
    .mobile-bottom-nav {
        height: calc(70px + var(--safe-area-inset-bottom));
    }
    
    .page-content {
        padding-bottom: calc(70px + var(--safe-area-inset-bottom) + 16px);
    }
}

@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
    
    .mobile-bottom-nav {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}


@media (display-mode: standalone) {
    .site-header {
        padding-top: max(12px, var(--status-bar-height));
    }
}
.all-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
}

.category-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.popup-overlay.active .popup-content {
    transform: scale(1);
}
.popup-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.popup-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.popup-body {
    padding: 16px;
    overflow-y: auto;
    max-height: 60vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.subcategory-card {
    cursor: pointer;
    text-align: center;
}
.subcategory-card:active {
    opacity: 0.7;
}
.subcategory-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subcategory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.subcategory-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
.popup-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 15px;
}
@media (max-width: 768px) {
    .site-footer {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}
.subcategory-container {
    padding: 16px;
}
.subcategory-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.back-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}
.back-button:active {
    background: #e8e8e8;
}
.subcategory-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.subcategory-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}
.subcategory-card:active {
    transform: scale(0.98);
}
.subcategory-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subcategory-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.subcategory-info {
    padding: 14px 12px 16px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}
.subcategory-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
}
.subcategory-info p {
    font-size: 12px;
    color: #ff3f6c;
    font-weight: 500;
    margin: 0;
}
.loading, .no-subcategories {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
}
@media (max-width: 768px) {
    .site-footer {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}
.popup-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
}
.popup-item:active {
    background: #f8f8f8;
}
.popup-item-image {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.popup-item-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}
.popup-item-arrow {
    color: #ff3f6c;
    font-size: 18px;
    font-weight: 500;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
}

.logo-search-container {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    background: #f5f5f6;
    border-radius: 30px;
    padding: 4px 4px 4px 12px;
    border: 1px solid #e0e0e0;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
}

.search-wrapper input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
    min-width: 0;
}

.search-wrapper input::placeholder {
    color: #999;
}

.search-icon {
    color: #666;
    font-size: 18px;
    padding: 8px 12px;
    background: transparent;
    border-left: 1px solid #e0e0e0;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    color: #333;
}

@media (max-width: 768px) {
    .logo-search-container {
        padding: 4px 4px 4px 10px;
    }
    
    .site-logo {
        height: 30px;
        max-width: 80px;
    }
    
    .search-wrapper input {
        font-size: 13px;
    }
    
    .search-icon {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icon-btn {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-search-container {
        gap: 6px;
    }
    
    .site-logo {
        height: 25px;
        max-width: 70px;
    }
    
    .search-wrapper input {
        font-size: 12px;
    }
    
    .search-icon {
        font-size: 14px;
        padding: 4px 8px;
    }
}
.nav-item-figma {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    flex: 1;
    transition: color 0.2s;
}

.nav-item-figma.active {
    color: #ff3f6c;
}

.nav-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-box svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.nav-item-figma.active svg {
    stroke: #ff3f6c;
}
.category-image-box {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.category-image-box {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
}

@media screen and (min-width: 1024px) {
    .categories-layout-web {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 24px;
        display: flex !important;
        gap: 30px;
        align-items: flex-start;
    }
    
    .categories-web-sidebar {
        width: 280px;
        flex-shrink: 0;
        background: white;
        border-radius: 16px;
        padding: 24px;
        border: 1px solid #eaeaea;
        position: sticky;
        top: 100px;
        height: fit-content;
        display: block !important;
    }
    
    .categories-web-sidebar-title {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #ff3f6c;
        display: inline-block;
    }
    
    .categories-web-sidebar-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .categories-web-sidebar-list li {
        margin-bottom: 12px;
    }
    
    .categories-web-sidebar-list a {
        text-decoration: none;
        color: #666;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
        display: block;
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .categories-web-sidebar-list a:hover {
        color: #ff3f6c;
        background: #fff5f7;
    }
    
    .all-categories-grid {
        flex: 1 !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .all-categories-grid .category-card {
        background: white !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        transition: all 0.3s ease !important;
        display: block !important;
        padding: 0 !important;
        height: auto !important;
        border: 1px solid #f0f0f0 !important;
    }
    
    .all-categories-grid .category-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        border-color: #ff3f6c !important;
    }
    
    .all-categories-grid .category-image-box {
        width: 100% !important;
        height: 180px !important;
        background: #fafafa !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 30px !important;
    }
    
    .all-categories-grid .category-image-box img {
        width: 100px !important;
        height: 100px !important;
        object-fit: contain !important;
        transition: transform 0.3s ease !important;
    }
    
    .all-categories-grid .category-card:hover .category-image-box img {
        transform: scale(1.05) !important;
    }
    
    .all-categories-grid .category-info {
        padding: 16px !important;
        text-align: center !important;
        border-top: 1px solid #f0f0f0 !important;
    }
    
    .all-categories-grid .category-info h3 {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #282c3f !important;
        margin: 0 !important;
    }
    
    .categories-header {
        display: none !important;
    }
}

    @media screen and (min-width: 768px) and (max-width: 1023px) {
        .categories-web-sidebar {
            display: none !important;
        }
        .categories-layout-web {
            display: block !important;
        }
    }

    @media screen and (max-width: 767px) {
        .categories-web-sidebar {
            display: none !important;
        }
        .categories-layout-web {
            display: block !important;
        }
    }
    .nav-icon-box {
        position: relative;
    }

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

        background: #ff3f6c;
        color: white;

        font-size: 10px;
        font-weight: 600;

        min-width: 16px;
        height: 16px;

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

        border-radius: 50%;
        padding: 0 4px;
    }

.skeleton-card {
    border-radius: 18px;
    padding: 14px;
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f2f2;
    overflow: hidden;
    position: relative;
}

.skeleton-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e0e0e0;
}

.skeleton-text {
    width: 80px;
    height: 14px;
    border-radius: 6px;
    background: #e0e0e0;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading {
    0% {
        left: -150px;
    }
    100% {
        left: 100%;
    }
}