/* 基础样式 */
.alihubsf-simple-fashion-wrapper {
    margin: 20px 0;
}

.alihubsf-simple-fashion-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* 分类样式 */
.alihubsf-simple-fashion-categories {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.alihubsf-category-title {
    font-weight: 600;
    margin-right: 15px;
    white-space: nowrap;
}

.alihubsf-category-list {
    display: flex;
    gap: 10px;
}

.alihubsf-category-item {
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.alihubsf-category-item:hover,
.alihubsf-category-item.active {
    background-color: #333;
    color: #fff;
}

/* 产品网格样式 */
.alihubsf-simple-fashion-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .alihubsf-simple-fashion-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .alihubsf-simple-fashion-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alihubsf-simple-fashion-product {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.alihubsf-simple-fashion-product:hover {
    transform: translateY(-5px);
}

.alihubsf-product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.alihubsf-product-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.alihubsf-product-thumbnail:hover {
    transform: scale(1.05);
}

.alihubsf-product-info {
    padding: 10px 0;
}

.alihubsf-product-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.alihubsf-product-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.alihubsf-no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #888;
}

/* 加载器样式 */
.alihubsf-simple-fashion-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    display: none;
}

.alihubsf-loader-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #333;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 灯箱样式 */
.alihubsf-simple-fashion-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.alihubsf-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.alihubsf-lightbox-content {
    position: absolute;
    top: 10%;
    left: 5%;
    max-width: 90%;
    max-height: 90%;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
}

.alihubsf-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.alihubsf-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}