.color-title .textDesc
{
    font-size: 15px;
    font-weight: 500;
    line-height: 45px;
    font-family: Roboto;
    width: 1000px;
    margin: 0 auto;
}

.color-title .textDesc .h2
{
    font-size: 15px;
    font-family: Roboto;
}

header .logo1 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    margin: 0;
}

/* æ ‡ç­¾å®¹å™¨å¸ƒå±€ */
.product-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* æ ¸å¿ƒï¼šæ°´å¹³å±…ä¸­ */
    gap: 10px;
    margin-bottom: 15px; /* ä¸Žä¸‹æ–¹ "BAPE Product More" çš„é—´è· */
    font-family: "Arial", sans-serif;
}

/* åŸºç¡€æ ‡ç­¾æ ·å¼ */
.p-tag {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px; /* BAPE é£Žæ ¼é€šå¸¸åå‘ç¡¬æœ—ï¼Œåœ†è§’è¾ƒå° */
    display: inline-block;
}

/* ä¸åŒç±»åž‹çš„æ ‡ç­¾é¢œè‰²é…ç½® */
.tag-new {
    background-color: #541e1e;
    color: #ffffff;
}

.tag-hot {
    background-color: #d0021b; /* ç»å…¸çº¢è‰² */
    color: #ffffff;
}

.tag-street {
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #ddd;
}

.tag-limited {
    background-color: #ffd700; /* é‡‘è‰²è±¡å¾é™é‡ */
    color: #000000;
}

.tag-cotton {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.tag-blue {
    background-color: #e8f5e9;
    color: #1a147a;
    border: 1px solid #0fa1e7;
}

/* é¼ æ ‡æ‚¬åœæ•ˆæžœ */
.p-tag:hover {
    opacity: 0.8;
    cursor: default;
}
/** ç²¾å“æŽ¨è */
.premium-container {
    max-width: 1200px;
    margin: 30px auto;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 20px; /* å¢žåŠ å†…è¾¹è·ï¼Œè®©å†…å®¹ç¦»è¾¹æ¡†æœ‰å‘¼å¸æ„Ÿ */
    border: 1px solid #e5e7eb; /* æµ…ç°è¾¹æ¡† */
    border-radius: 16px;       /* å¤§åœ†è§’å¢žå¼ºçŽ°ä»£æ„Ÿ */
    background-color: #fafafa; /* ç»™æ•´ä¸ªæ¨¡å—ä¸€ä¸ªæžæµ…çš„åº•è‰²ï¼Œä¸Žä¸»åˆ—è¡¨åŒºåˆ† */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* æžè½»å¾®çš„æŠ•å½± */
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.premium-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* æ ¸å¿ƒç½‘æ ¼å¸ƒå±€ */
.premium-grid {
    display: grid;
    /* PCç«¯é»˜è®¤4åˆ— */
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.premium-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.2s;
    position: relative;
    text-decoration: none;
    display: block;
}

.premium-item:hover {
    transform: translateY(-3px);
    border-color: #000;
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    margin-top: 10px;
}

.item-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.item-title {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

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

.item-price {
    font-size: 15px;
    font-weight: 800;
    color: #ff4d4f;
}

/* ç§»åŠ¨ç«¯é€‚é…ï¼šä¸€è¡Œ 2 ä¸ª */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .premium-header h2 { font-size: 1rem; }
    .item-title { font-size: 12px; }
}
/** pagination */
.pagination-container {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif; /* å»ºè®®ä½¿ç”¨çŽ°ä»£æ— è¡¬çº¿å­—ä½“ */
    letter-spacing: -0.01em;
    justify-content: center;
    margin-top: 40px;
}

.pagination-status {
    color: #fff;
    font-size: 13px;
}

.pagination-status strong {
    color: #111; /* å…³é”®æ•°å­—ç”¨æ·±è‰² */
    margin: 0 2px;
}

.pagination-nav a {
    text-decoration: none;
    color: #111;
    padding: 8px 12px;
    margin-left: 10px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.pagination-nav a.active {
    background-color: #f5f5f7; /* æžæµ…ç°èƒŒæ™¯ï¼Œä¸æŠ¢çœ¼ä½†æ¸…æ™° */
    font-weight: 600;
}