/* 有名人の他のファッションアイテムセクション */
.celebrity-other-items-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.celebrity-other-items-section .section-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color, #FF6B9D);
    color: #333;
}

.celebrity-other-items-section .view-more {
    text-align: center;
    margin-top: 1.5rem;
}

.view-more-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color, #FF6B9D);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-button:hover {
    background-color: var(--accent-color, #C44569);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .celebrity-other-items-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .celebrity-other-items-section .section-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .celebrity-other-items-section {
        padding: 1rem;
    }
    
    .view-more-button {
        display: block;
        width: 100%;
    }
}
